From 1799370540cf4fcc2af6a5dcd6a6e9a2e702f35f Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 12 Nov 2025 17:15:18 -0600 Subject: [PATCH 01/15] adding overview and contributor's guide --- README.md | 113 +++++++++++++++--------------------------------------- 1 file changed, 31 insertions(+), 82 deletions(-) diff --git a/README.md b/README.md index be05da9f..b01c98db 100644 --- a/README.md +++ b/README.md @@ -1,112 +1,61 @@ -# System Intelligence Benchmark: A Benchmark Suite for Evaluating LLM's System Capabilities +# ArtEvalBench -It is a comprehensive benchmarking framework for evaluating the performance of Large Language Models (LLMs) and AI systems across critical system capabilities. It features example benchmarks for system course exams, course projects, and cache algorithm design, and offers both CLI tools and an SDK for further development. +`ArtEvalBench` is a benchmark for evaluating AI agents that support the Artifact Evaluation (AE) process by auditing research prototypes (artifacts) that accompany research papers, as part of the peer-review process. Artifact evaluation involves reconstructing a reference environment from (partial) specifications, building and configuring complex codebases with often implicit assumptions, preparing datasets and third-party benchmarks whose availability may change over time, orchestrating multi-stage experiments under controlled resource and time budgets, and validating that observed results fall within acceptable tolerance bounds relative to those reported in the paper. Despite the intricacy of the process, we believe AI agents can be trained to support reviewers in evaluating artifacts that accompany research papers by automating most of these stages. -## Benchmark Overview -### Benchmark Concept -A benchmark is a standard or point of reference against which things may be compared or assessed. In the context of AI and LLMs, benchmarks are essential for evaluating model capabilities, guiding research directions, and measuring progress. The following figure illustrates the main components of a AI benchmark. We abstract the benchmark into 4 components: the taskset, the environment, the executor, and the evaluator. This abstraction ensures a clear flow from tasks to metrics. You can see [benchmark_abstraction.md](doc/benchmark_abstract.md) for details. +Want to find out more or contribute? Jump to the [contributor's guide](#contributors-guide). -Dashboard Screenshot +## Goals and Objectives -### Benchmarks +Artifact evaluation has become a standard component of the peer-review process across a wide range of conferences in Computer Science, especially in Systems and related areas. Despite this progress however, the practical work of provisioning operational environments, resolving dependencies, building artifacts, preparing benchmarks, running experiments, and checking results remains brittle and time-consuming. To alleviate this burden, we envision an automated artifact evaluation AI assistant that executes repeatable steps under (human) reviewer supervision. This "AE assistant" would target artifact mechanics (e.g., code compilation, dataset/benchmark preparation, experiment orchestration, and output validation) alongside code auditing (e.g., does the artifact implementation match the paper prose? are results closely matching those in the paper?). The agent's output can then inform more a complex methodological assessment, design trade-off analysis, and results interpretation that reviewers need to perform to complete the AE process. -System Intelligence Benchmark currently includes the following example benchmarks. Some examples are still under development — we're actively updating them. Stay tuned! -- **Course Exam Benchmark** (`benchmarks/course_exam_bench/`) - Tests LLM understanding of system concepts through university course exams (54 questions across 4 exams) -- **Course Project Benchmark** (`benchmarks/course_project_bench/`) - Assesses AI capability on practical system course projects -- **Cache Benchmark** (`benchmarks/cache_bench/`) - Evaluates AI performance on cache algorithm design tasks -- **Example Benchmark** (`benchmarks/example_bench/`) - Template and reference implementation for creating new benchmarks +Concretely, given an artifact (code, documentation, experiment framework), a complete installation & operation guide, and the paper itself, the AE assistant: -## Quick Start -### Repo Structure +1. provisions the reference environment; -- **Benchmarks** (`benchmarks/`) - Contains individual benchmark implementations, each with its own source code, tests, and configuration -- **CLI Tools** (`cli/`) - Command-line interface for running benchmarks and managing evaluations -- **SDK** (`sdk/`) - Software development kit providing evaluators, LLM interfaces, and utility functions -- **Documentation** (`doc/`) - Guides and documentation for using and contributing to SysCapBench +2. builds/installs a particular version of the artifact using the specified toolchain; -### Prerequisites +3. retrieves and prepares datasets or other third-party targets; -- Python 3.9+ -- Docker (optional, for containerized execution) +4. orchestrates experiments with explicit configuration, time and resource budgets; and -### Installation +5. generates a human-readable report that summarizes the outcome of each step, indicating any blockers (e.g., install missing dependencies) and how it managed to overcome them. -1. Clone the repository: +The goal is to reduce reviewer effort on mechanical tasks so attention can shift to scientific auditing. - ```bash - git clone https://github.com/systemintelligence/system_intelligence_benchmark.git - cd system_intelligence_benchmark - ``` +## Background -2. Install dependencies for a specific benchmark: +#### » The artifact evaluation process - ```bash - cd cli - ./install.sh - ``` -3. Each benchmark includes an `env.toml` file for configuration. You should add your own llm endpoint url and key there. +Most conferences award badges to incentivize high-quality artifacts that support the paper's claims by asking authors to participate in a multi-stage evaluation process where reviewers attempt to download, install, and operate the artifacts themselves. The following summarizes the widely used criteria for each badge: -### Running Benchmarks +* Artifact Available. This badge indicates that the artifact itself (code, documentation, scripts, benchmarks, etc.) is publicly accessible with a persistent identifier (e.g., DOI, commit ID) on an (ideally, long-term) archival repository (e.g., Zenodo, Github). Availability does not imply the artifact can compile, build, or is functionally correct. It only confirms that the materials needed to verify key claims, reproduce experimental results, and reuse the tool itself are open-sourced. -#### Using CLI +* Artifact Functional. This badge indicates that the artifact installs/builds in a reference environment and runs at least a subset of the documented experiments. It confirms that dependencies and configurations are explicitly recorded, and outputs, at least for said subset of experiments, are consistent with the paper's prose. -```bash -cd cli -./run_all_local.sh -``` +* Results Reproduced. This badge indicates that a third party can re-execute all necessary experiments to obtain results consistent with the paper, with a reasonable degree of tolerance (e.g., within relative error bounds, confidence intervals, or rank-ordering equivalence). On top of re-obtaining results that support the paper's claims, reproducibility further requires verifiable provenance (e.g., SW/HW environment characteristics, configuration parameters, experiment logs) and principled handling of non-determinism (e.g., repeated trials, fixed initial states, or variance analysis). -#### Output Format +Further reading and a detailed description of criteria for each badge can be found [here](https://sysartifacts.github.io/eurosys2026/badges) and [here](https://sysartifacts.github.io/evaluator-guide.html). -Benchmarks generate standardized outputs in `cli/outputs/{benchmark_name}__{model_name}__{agent}_{timestamp}/`: +#### » What makes AE challenging in practice? -- `result.jsonl`: Detailed evaluation results -- `summary.json`: Aggregated performance metrics -- Test-specific breakdowns and comparisons +Reproducibility and reusability can be obstructed by multiple factors including, but not limited to: (i) environment drift (e.g., legacy libraries no longer available, drivers mismatch in newer OS versions); (ii) undocumented or implicit build assumptions (e.g., hard-coded compiler flags, directory paths, IPs, or reliance on OS-wide libraries that differ across distributions); (iii) brittle preprocessing of third-party benchmarks or datasets (e.g., broken download URL, non-deterministic compilation steps that silently invalidate subsequent stages); and (iv) unspecified results tolerance bounds that complicate validation for non-deterministic experiments (e.g., performance claims without clarifying what constitutes an acceptable deviation when running within a similar SW/HW setup). -You can find more detailed usage guides in the CLI [README.md](cli/README.md). +Overcoming such challenges require persistence and careful bookkeeping, precisely where an automated AE assistant can provide leverage. -## Adding Benchmarks +## Contributor's guide -> [!NOTE] -> We suggest getting starting by walking through the basic concept of a AI benchmark: [Benchmark Abstraction](doc/benchmark_abstract.md). +#### » Overview and structure -After understanding the basic concept, you can decide whether to add more tasks for existing benchmarks or create new benchmarks that map to different levels of system capabilities. +To train and improve AE agents in a principled way we introduce ArtEvalBench, a curated collection of artifacts accompanying peer-reviewed papers. To ensure a fair comparison we include artifacts that have been already evaluated in an official AE process and awarded all three badges by the committee. Each entry includes the original artifact (instructions, code, scripts, datasets/benchmarks, etc.), the original paper, and a collection of "checker" scripts that define objective checkpoints at four canonical stages: environment setup, build/install, benchmark preparation, and experiment execution. -### Contribute to existing Benchmarks -The easiest way to contribute is to add more tasks to existing benchmarks. For example, you can add more questions to the course exam benchmark or more projects to the course project benchmark. You can add more system algorithm design problems into algorithm design benchmark. Please follow the existing format and structure for adding new tasks. You can also improve the existing benchmarks by adding more advanced evaluators with improved metrics. +ArtEvalBench is designed to evaluate agents on capability (which stages they complete), efficiency (wall-clock time and intervention count), and fidelity (how closely reproduced results match those reported). -### Creating New Benchmarks -> [!NOTE] -> See [custom_benchmark.md](doc/custom_benchmark.md) for step-by-step guidelines. +To check capability, each artifact includes checker scripts that encode minimal, verifiable success criteria for the four stages. Checkers are invoked non-interactively and must be idempotent. A checker returns exit status 0 on success and non-zero on failure. Conceptually, these for stages correspond to: -To create a new benchmark, follow these steps: -1. Create a new benchmark directory in `benchmarks/` - 1. Based on your specific requirements, copy an example benchmark as a starting point - 2. Update the `src/main.py` file with your specific evaluation logic - 3. Update the README.md with benchmark-specific details - 4. Add test cases in the `tests/` directory -2. Add an `env.toml` configuration file -3. Implement `install.sh` and `run.sh` scripts -4. Update the benchmark list in `run_all_local.sh` and `run_docker.sh` if needed +1. Environment Setup: verifies presence and versions of required tools, libraries, or other dependencies; confirms hardware availability when applicable; and checks that configurations are portable rather than hardcoded or tied to a specific machine. -## Contributing +2. Build/Install: confirms a complete build (or install) operation from a specified version, with expected binaries/modules present; running tests, when available, or simple validation commands like invoking `--help` or equivalent. -This project welcomes contributions and suggestions. Most contributions require you to agree to a -Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us -the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com. +3. Benchmark Preparation: asserts that datasets/benchmarks are present and checksums match; verifies that necessary third-party tools compile and the artifact's instrumentation/monitoring hooks are enabled, if applicable. -When you submit a pull request, a CLA bot will automatically determine whether you need to provide -a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions -provided by the bot. You will only need to do this once across all repos using our CLA. - -This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). -For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or -contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. - -## Trademarks - -This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft -trademarks or logos is subject to and must follow -[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general). -Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. -Any use of third-party trademarks or logos are subject to those third-party's policies. +4. Experiment Runs: executes each experiment according to the authors' guidelines; checks that the artifact produces the expected metrics, logs, files, figures, etc.; provides an initial assessment relative to specified tolerance bounds. \ No newline at end of file From 20543147550072d81d1b6a4404ad9e39c1c21222 Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 12 Nov 2025 17:16:01 -0600 Subject: [PATCH 02/15] skeleton ArtEval agent implementation --- .../data/benchmark/artifact_tasks.jsonl | 4 +- benchmarks/arteval_bench/src/main.py | 252 +++++++++++++----- 2 files changed, 193 insertions(+), 63 deletions(-) diff --git a/benchmarks/arteval_bench/data/benchmark/artifact_tasks.jsonl b/benchmarks/arteval_bench/data/benchmark/artifact_tasks.jsonl index c4b375f5..b3806aef 100644 --- a/benchmarks/arteval_bench/data/benchmark/artifact_tasks.jsonl +++ b/benchmarks/arteval_bench/data/benchmark/artifact_tasks.jsonl @@ -1,3 +1 @@ -{"id": "platform_1", "sys_prompt": "You are an expert on Kusto. Help me write kusto query based on the user requirement. DO NOT explain anything, DO give KQL directly. You should strictly use the following format:\n##### KQL\n```\ncluster(#CLUSTER_NAME#).database(#DATABASE_NAME#).#TABLE_NAME# | where #COLUMN_NAME# xxx\n```", "user_prompt": "Query the nodes are stuck in Linux MOS under cluster IAD02PrdGPC01", "thinking": "chain of thought", "response": "let targetCluster = \"IAD02PrdGPC01\";\ncluster(\"azuredcm\").database(\"AzureDCMDb\").dcmInventoryMachines \n| where AzureClusterName == targetCluster\n| join kind=inner \n( \n cluster('Oneboot').database('OneDhcp').OneDhcpApi\n | where PreciseTimeStamp > ago(7d)\n | where ApiName has 'SetDeviceOsType' \n | parse ApiParams with \"name=\" MachineName \",osType=\" OSType \",osPath=\" OSPath\n) on MachineName\n| project PreciseTimeStamp, AzureClusterName, AzureNodeId, MachineName, OSType, OSPath\n| summarize arg_max(PreciseTimeStamp, *) by AzureNodeId, MachineName\n| where OSPath == \"LinuxMOS\" ", "metadata": {"scenario": "Example", "subtask": "Example", "data_quality":"high", "XXX": "XXX"}} -{"id": "platform_2", "sys_prompt": "You are an expert on Kusto. Help me write kusto query based on the user requirement. DO NOT explain anything, DO give KQL directly. You should strictly use the following format:\n##### KQL\n```\ncluster(#CLUSTER_NAME#).database(#DATABASE_NAME#).#TABLE_NAME# | where #COLUMN_NAME# xxx\n```", "user_prompt": "Check the capacity of cluster SIN22PrdApp22, which is a non-GPU cluster", "thinking": "chain of thought", "response": "cluster(\"azcore.centralus\").database(\"AzureCP\").MycroftNodeHealthSnapshot\n| where PreciseTimeStamp >= ago(1d)\n| where ClusterName == \"SIN22PrdApp22\"\n| summarize arg_max(PreciseTimeStamp, *) by ClusterName, NodeId\n| project PreciseTimeStamp, ClusterName, NodeId, NsdState, AvailabilityState, ContainerCount\n| summarize NodeCount = count() by NsdState, AvailabilityState, ContainerCount", "metadata": {"scenario": "Example", "subtask": "Example", "data_quality":"high", "XXX": "XXX"}} -{"id": "platform_3", "sys_prompt": "You are an expert on Kusto. Help me write kusto query based on the user requirement. DO NOT explain anything, DO give KQL directly. You should strictly use the following format:\n##### KQL\n```\ncluster(#CLUSTER_NAME#).database(#DATABASE_NAME#).#TABLE_NAME# | where #COLUMN_NAME# xxx\n```", "user_prompt": "Check the capacity of cluster IAD02PrdGPC01, which is a GPU cluster", "thinking": "chain of thought", "response": "let cluster = \"IAD02PrdGPC01\";\ncluster(\"azcore.centralus\").database(\"AzureCP\").MycroftNodeSnapshot\n| where PreciseTimeStamp >= ago(1d)\n| where ClusterName == cluster\n| summarize arg_max(PreciseTimeStamp, *) by ClusterName, NodeId\n| where MachinePoolName contains \"MP2\"\n| project PreciseTimeStamp, ClusterName, NodeId, MachinePoolName\n| join (\ncluster(\"azcore.centralus\").database(\"AzureCP\").MycroftNodeHealthSnapshot\n| where PreciseTimeStamp >= ago(1d)\n| where ClusterName == cluster\n| summarize arg_max(PreciseTimeStamp, *) by ClusterName, NodeId\n| project PreciseTimeStamp, ClusterName, NodeId, NsdState, AvailabilityState, ContainerCount\n) on NodeId\n| summarize NodeCount = count() by NsdState, AvailabilityState, ContainerCount", "metadata": {"scenario": "Example", "subtask": "Example", "data_quality":"high", "XXX": "XXX"}} +{"task_id": "sosp24_wasabi", "task_file": "sosp24/wasabi/README.md", "test_method": "wasabi/_agent_eval/main.py", "expected_score": 4, "test_results": "", "difficulty": "easy", "docker_env": "xuafeng/swe-go-python:latest", "repo_url": "https://github.com/bastoica/wasabi/tree/sosp24-ae", "local_path": "sosp24/"} \ No newline at end of file diff --git a/benchmarks/arteval_bench/src/main.py b/benchmarks/arteval_bench/src/main.py index b078c17f..ce3afdd4 100644 --- a/benchmarks/arteval_bench/src/main.py +++ b/benchmarks/arteval_bench/src/main.py @@ -1,10 +1,22 @@ -"""Example for benchmarking the performance of a model on a specific task.""" +""" +Artifact Evaluation Benchmark + +This script drives an agent to perform artifact evaluation, +namely succesfully setup, install, and run experiments +for a series of software prototypes that accompany peer-reviewed +papers published at various CS conferences. + +Author: Bogdan 'Bo' Stoica (bastoica@illinois.edu) +""" import argparse import json import os import sys from datetime import datetime +from statistics import median +from statistics import mean +from loguru import logger sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '../../../'))) @@ -12,74 +24,196 @@ set_llm_endpoint_from_config('env.toml') -from sdk.evaluator import BasicEvaluator # noqa: E402 -from sdk.executor import SimpleExecutor # noqa: E402 +from sdk.evaluator import Evaluator +from sdk.executor import Executor + + +ARTIFACT_STAGES = ("prep_environment", "build_code", "prep_benchmarks", "run_experiments") + +class BasicExecutor(Executor): + """Example class for one simple LLM module.""" + + def __init__(self, _model_name, _sys_prompt) -> None: + """Initialize the BasicExecutor class.""" + self.system_prompt = _sys_prompt + self.model_name = _model_name + self.LLM = LLM(engine=self.model_name, system_prompt=self.system_prompt, temperature=0.1) + + def run(self, nl, lang=''): + """Run the model.""" + ans = self.LLM.query(nl) + return ans + + +class ArtifactValidator(Evaluator): + """Validation class for evaluating the model's ability to install, run, and test a given artifact.""" + + def __init__(self) -> None: + """Initialize the Evaluator class.""" + super().__init__() + + def run(cmd: Iterable[str]) -> Tuple[int, str, str]: + """Run a command and return a (rc, stdout, stderr) tuple.""" + try: + cp = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + return cp.returncode, cp.stdout or "", cp.stderr or "" + except FileNotFoundError: + return 127, "", "" + + def eval(self, cmd): + """Run the artifact evaluation stage validator.""" + rc, stdout, stderr = self.run(cmd) + if rc != 0: + raise ValueError(f"Validation script failed with error code {rc}.") + + try: + data = json.loads(stdout) + except json.JSONDecodeError: + return 0 + + score_breakdown = {} + for k in ARTIFACT_STAGES: + if k not in data: + raise KeyError(f"Missing required field: {k}") + + val = data[k] + try: + rc = int(val) + except (TypeError, ValueError) as e: + raise ValueError(f"Field '{k}' is not an integer error code: {val!r}") from e + + if not (0 <= rc <= 255): + raise ValueError(f"Field '{k}' must be in range 0-255, got {rc}.") + + if rc == 0: + success += 1 + + score_breakdown[k] = 1 if rc == 0 else 0 + + result = { + "score_total": sum(score_breakdown.values()), + "score_breakdown": score_breakdown, + } + return result + + + +def main(input_file, output_dir, model_name, agent_name): + """Main function for running the benchmark.""" + + with open(input_file, encoding='utf-8') as f: + data = [json.loads(line) for line in f] + results = [] + for artifact in data: + try: + logger.info(f"============ {artifact['task_id']} ============") + + system_prompt = ( + f"You are an expert software engineer with experience with artifact evaluation tasks for computer science conferences.\n" + + f"You are asked to setup, install, and run experiments following instructions provided in the artifact's README.md file.\n" + ) -def main(_input_file, output_dir, _model_name, agent_name): - """Main function for running the benchmark.""" - total_score = [] - with ( - open(_input_file, encoding='utf-8') as data, - open(os.path.join(output_dir, 'result.jsonl'), 'w', encoding='utf-8') as output_file, - ): - for line in data: - item = json.loads(line) - print('============ ' + item['id'] + ' ============') + task_file = artifact['task_file'] + with open(task_file, encoding='utf-8') as f: + lines = f.readlines() + task = "\n".join(lines) + user_prompt = 'Below is the README of the artifact:\n\n' + task + + + prompt = f"{system_prompt}\n {user_prompt}" if agent_name == 'llm': - executor = SimpleExecutor(_model_name, item['sys_prompt']) + executor = BasicExecutor(model_name, prompt) else: - # You can add more agents here raise ValueError(f'Unknown agent name: {agent_name}') - response = executor.run(item['user_prompt']) - - evaluator = BasicEvaluator(_model_name) - offline_metrics = evaluator.eval(question=item['user_prompt'], answer=response, groundtruth=item) - - total_score.append( - ( - offline_metrics['syntax_acc'], - offline_metrics['exact_match'], - offline_metrics['jaccard_similarity'], - offline_metrics['cosine_similarity'], - offline_metrics['embeddings_similarity'], - offline_metrics['llmjudger_rating'], - ) - ) # drop llmjudger_answer + + response = executor.run(user_prompt, lang='json') + response = json.loads(response) + + answer = str(response.get('answer', '')) + explanation = response.get('explanation', '') + logger.info(f'Model Answer: {answer}') + logger.info(f'Model Explanation: {explanation}') + + test_method = artifact['test_method'] + + evaluator = ArtifactValidator() + metrics = evaluator.eval(cmd=test_method) + + result = { + 'id': artifact['instance_id'], + 'system_prompt': system_prompt, + 'user_prompt': user_prompt, + 'score_expected': artifact['expected_score'], + 'llm_answer': answer, + 'llm_explanation': explanation, + 'llm_score_final': metrics['score_total'], + 'llm_score_breakdown': metrics['score_breakdown'], + 'error': None, + } + results.append(result) + + logger.info('Evaluation Result:') + logger.info(result) + except Exception as e: + logger.error(f"Error processing instance {artifact['task_id']}: {e}") result = { - 'id': item['id'], - 'sys_prompt': item['sys_prompt'], - 'user_prompt': item['user_prompt'], - 'groundtruth': item['response'], - 'response': response, - 'syntax_acc': offline_metrics['syntax_acc'], - 'exact_match': offline_metrics['exact_match'], - 'jaccard_similarity': offline_metrics['jaccard_similarity'], - 'cosine_similarity': offline_metrics['cosine_similarity'], - 'embeddings_similarity': offline_metrics['embeddings_similarity'], - 'llmjudger_rating': offline_metrics['llmjudger_rating'], - 'llmjudger_answer': offline_metrics['llmjudger_answer'], + 'id': artifact['instance_id'], + 'system_prompt': locals().get('system_prompt'), + 'user_prompt': locals().get('user_prompt'), + 'llm_answer': None, + 'llm_explanation': None, + 'llm_score_final': None, + 'llm_score_breakdown': None, + 'error': str(e), } - print('Evaluation Result:') - print(result) + results.append(result) + + with open(os.path.join(output_dir, 'result.jsonl'), 'a+', encoding='utf-8') as output_file: output_file.write(json.dumps(result)) output_file.write('\n') - avg_score = [sum(values) / len(values) for values in list(zip(*total_score))] - avg_score_dict = { - 'syntax_acc': avg_score[0], - 'exact_match': avg_score[1], - 'jaccard_similarity': avg_score[2], - 'cosine_similarity': avg_score[3], - 'embeddings_similarity': avg_score[4], - 'llmjudger_rating': avg_score[5], - 'final_score': sum(avg_score[:5]) / 5, # Average of the first five metrics + scored = [ + r for r in results + if r.get('error') in (None, '', 'null') # only include successful artifact runs + and isinstance(r.get('llm_score_final'), (int, float)) + ] + + overall_scores = [r['llm_score_final'] for r in scored] + avg_overall = mean(overall_scores) if overall_scores else 0.0 + med_overall = median(overall_scores) if overall_scores else 0.0 + + per_stage_values = {k: [] for k in ARTIFACT_STAGES} + for r in scored: + sb = r.get('llm_score_breakdown') or {} + for k in ARTIFACT_STAGES: + v = sb.get(k) + if isinstance(v, (int)): + per_stage_values[k].append(int(v)) + + avg_by_stage = { + k: (sum(vals) / len(vals)) if vals else 0.0 + for k, vals in per_stage_values.items() } - with open(os.path.join(output_dir, 'avg_score.json'), 'w', encoding='utf-8') as avg_score_file: - json.dump(avg_score_dict, avg_score_file, indent=4) - print('************ Final average score ************') - print(avg_score_dict) + + med_by_stage = { + k: (median(vals) if vals else 0.0) + for k, vals in per_stage_values.items() + } + + summary_data = { + 'artifact_count': len(scored), + 'average_overall_score': avg_overall, + 'median_overall_score': med_overall, + 'average_by_stage': avg_by_stage, + 'median_by_stage': med_by_stage, + } + + with open(os.path.join(output_dir, 'avg_score.json'), 'w', encoding='utf-8') as summary_file: + json.dump(summary_data, summary_file, indent=4) + + logger.info('************ Final average score ************') if __name__ == '__main__': @@ -91,7 +225,6 @@ def main(_input_file, output_dir, _model_name, agent_name): default='./data/benchmark/example_bench_benchmark_timestamp.jsonl', ) parser.add_argument('-o', '--save_path', help='Result save path', default=None) - # Add a parameter for agent parser.add_argument('-a', '--agent', help='Agent Name', default='llm') parser.add_argument( @@ -99,8 +232,7 @@ def main(_input_file, output_dir, _model_name, agent_name): '--model_name', help='Model Name', ) - # Note that if your benchmark has multiple tasks, you need to add --task - # in your code to enable task selection. + parser.add_argument('-t', '--task', help='specify task in scenarios', default=None) args = parser.parse_args() From 6303aa51616daa4d18889edd41c8edf010ee80e1 Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 12 Nov 2025 17:26:17 -0600 Subject: [PATCH 03/15] adding sosp24 wasabi --- .../benchmark/sosp24_wasabi/wasabi/LICENSE | 202 + .../benchmark/sosp24_wasabi/wasabi/README.md | 550 + .../wasabi/_agent_eval/check_env.py | 71 + .../wasabi/_agent_eval/check_hadoop_bug.py | 140 + .../_agent_eval/check_hadoop_weaving.py | 105 + .../wasabi/_agent_eval/check_wasabi_build.py | 169 + .../wasabi/_agent_eval/checker.log | 305 + .../_agent_eval/oracle_benchmark_prep.py | 162 + .../wasabi/_agent_eval/oracle_env_setup.py | 197 + .../wasabi/bugs_ground_truth.txt | 42 + .../cassandra/casandra_retry_locations.data | 22 + .../elasticsearch_retry_locations.data | 50 + .../wasabi/config/example_hdfs.conf | 3 + .../wasabi/config/example_hdfs.data | 3 + .../wasabi/config/hadoop/example.conf | 3 + .../wasabi/config/hadoop/example.data | 3 + .../wasabi/config/hadoop/hadoop.conf | 3 + .../config/hadoop/hadoop_retry_bounds.data | 195 + .../config/hadoop/hadoop_retry_locations.data | 202 + .../config/hadoop/hadoop_timeout_bounds.data | 221 + .../wasabi/config/hadoop/pom-hadoop.xml | 963 ++ ...ons-org.apache.hadoop.cli.TestHDFSCLI.conf | 3 + ...ons-org.apache.hadoop.cli.TestHDFSCLI.data | 2 + ...adoop.fs.http.server.TestHttpFSServer.conf | 3 + ...adoop.fs.http.server.TestHttpFSServer.data | 2 + ...t.staging.TestDirectoryCommitterScale.conf | 3 + ...t.staging.TestDirectoryCommitterScale.data | 2 + ...pache.hadoop.fs.shell.TestCopyToLocal.conf | 3 + ...pache.hadoop.fs.shell.TestCopyToLocal.data | 2 + ...fs.viewfs.TestViewFileSystemLinkRegex.conf | 3 + ...fs.viewfs.TestViewFileSystemLinkRegex.data | 2 + ....apache.hadoop.hdfs.TestDatanodeDeath.conf | 3 + ....apache.hadoop.hdfs.TestDatanodeDeath.data | 2 + ...doop.hdfs.TestDecommissionWithStriped.conf | 3 + ...doop.hdfs.TestDecommissionWithStriped.data | 2 + ...ons-org.apache.hadoop.hdfs.TestHFlush.conf | 3 + ...ons-org.apache.hadoop.hdfs.TestHFlush.data | 2 + ....apache.hadoop.hdfs.TestLeaseRecovery.conf | 3 + ....apache.hadoop.hdfs.TestLeaseRecovery.data | 2 + ...oop.hdfs.TestReplaceDatanodeOnFailure.conf | 3 + ...oop.hdfs.TestReplaceDatanodeOnFailure.data | 2 + ...oop.hdfs.client.impl.TestLeaseRenewer.conf | 3 + ...oop.hdfs.client.impl.TestLeaseRenewer.data | 2 + ...org.apache.hadoop.hdfs.nfs.TestMountd.conf | 3 + ...org.apache.hadoop.hdfs.nfs.TestMountd.data | 2 + ...oop.hdfs.server.datanode.TestBatchIbr.conf | 3 + ...oop.hdfs.server.datanode.TestBatchIbr.data | 2 + ...anode.fsdataset.impl.TestFsVolumeList.conf | 3 + ...anode.fsdataset.impl.TestFsVolumeList.data | 2 + ...e.fsdataset.impl.TestSpaceReservation.conf | 3 + ...e.fsdataset.impl.TestSpaceReservation.data | 2 + ...ion.metrics.TestNameserviceRPCMetrics.conf | 3 + ...ion.metrics.TestNameserviceRPCMetrics.data | 2 + ...deration.router.TestRouterAllResolver.conf | 3 + ...deration.router.TestRouterAllResolver.data | 2 + ...rver.federation.router.TestRouterFsck.conf | 3 + ...rver.federation.router.TestRouterFsck.data | 2 + ...p.hdfs.server.namenode.TestCheckpoint.conf | 3 + ...p.hdfs.server.namenode.TestCheckpoint.data | 2 + ...s.server.namenode.TestFSEditLogLoader.conf | 3 + ...s.server.namenode.TestFSEditLogLoader.data | 2 + ...hdfs.server.namenode.TestReencryption.conf | 3 + ...hdfs.server.namenode.TestReencryption.data | 2 + ...e.snapshot.TestRandomOpsWithSnapshots.conf | 3 + ...e.snapshot.TestRandomOpsWithSnapshots.data | 2 + ...StoragePolicySatisfierWithStripedFile.conf | 3 + ...StoragePolicySatisfierWithStripedFile.data | 2 + ...ce.hadoop.TestFileSystemAccessService.conf | 3 + ...ce.hadoop.TestFileSystemAccessService.data | 2 + ....apache.hadoop.mapred.TestComparators.conf | 3 + ....apache.hadoop.mapred.TestComparators.data | 2 + ...hadoop.mapred.TestFileOutputCommitter.conf | 3 + ...hadoop.mapred.TestFileOutputCommitter.data | 2 + ...adoop.mapred.TestLineRecordReaderJobs.conf | 3 + ...adoop.mapred.TestLineRecordReaderJobs.data | 2 + ...s-org.apache.hadoop.mapred.TestMapRed.conf | 3 + ...s-org.apache.hadoop.mapred.TestMapRed.data | 2 + ...gridmix.TestCompressionEmulationUtils.conf | 3 + ...gridmix.TestCompressionEmulationUtils.data | 2 + ...apred.lib.TestKeyFieldBasedComparator.conf | 3 + ...apred.lib.TestKeyFieldBasedComparator.data | 2 + ...apache.hadoop.mapreduce.TestMapReduce.conf | 3 + ...apache.hadoop.mapreduce.TestMapReduce.data | 2 + ...ce.lib.db.TestDataDrivenDBInputFormat.conf | 3 + ...ce.lib.db.TestDataDrivenDBInputFormat.data | 2 + ...rtition.TestMRKeyFieldBasedComparator.conf | 3 + ...rtition.TestMRKeyFieldBasedComparator.data | 2 + ...he.hadoop.security.TestUGIWithMiniKdc.conf | 3 + ...he.hadoop.security.TestUGIWithMiniKdc.data | 2 + ...e.hadoop.streaming.TestDumpTypedBytes.conf | 3 + ...e.hadoop.streaming.TestDumpTypedBytes.data | 2 + ...doop.streaming.TestMultipleCachefiles.conf | 3 + ...doop.streaming.TestMultipleCachefiles.data | 2 + ....hadoop.streaming.TestStreamAggregate.conf | 3 + ....hadoop.streaming.TestStreamAggregate.data | 2 + ...apache.hadoop.streaming.TestStreaming.conf | 3 + ...apache.hadoop.streaming.TestStreaming.data | 2 + ...g.mapreduce.TestStreamXmlRecordReader.conf | 3 + ...g.mapreduce.TestStreamXmlRecordReader.data | 2 + ...rg.apache.hadoop.test.TestHFSTestCase.conf | 3 + ...rg.apache.hadoop.test.TestHFSTestCase.data | 2 + ...ns-org.apache.hadoop.tools.TestDistCh.conf | 3 + ...ns-org.apache.hadoop.tools.TestDistCh.data | 2 + ...pache.hadoop.tools.TestHadoopArchives.conf | 3 + ...pache.hadoop.tools.TestHadoopArchives.data | 2 + ....tools.fedbalance.TestDistCpProcedure.conf | 3 + ....tools.fedbalance.TestDistCpProcedure.data | 2 + ...che.hadoop.yarn.client.TestRMFailover.conf | 3 + ...che.hadoop.yarn.client.TestRMFailover.data | 2 + .../wasabi/config/hbase/hbase.conf | 3 + .../config/hbase/hbase_retry_bounds.data | 158 + .../config/hbase/hbase_retry_locations.data | 137 + .../config/hbase/hbase_timeout_bounds.data | 81 + .../wasabi/config/hbase/pom-hbase.xml | 4721 +++++ ...apache.hadoop.hbase.TestMultiVersions.conf | 3 + ...apache.hadoop.hbase.TestMultiVersions.data | 2 + ...se.TestRegionReplicationLagEvaluation.conf | 3 + ...se.TestRegionReplicationLagEvaluation.data | 2 + ....hbase.backup.TestBackupDeleteRestore.conf | 3 + ....hbase.backup.TestBackupDeleteRestore.data | 2 + ...he.hadoop.hbase.client.TestAsyncTable.conf | 3 + ...he.hadoop.hbase.client.TestAsyncTable.data | 2 + ...se.client.TestClientSideRegionScanner.conf | 3 + ...se.client.TestClientSideRegionScanner.data | 2 + ...adoop.hbase.client.TestClientTimeouts.conf | 3 + ...adoop.hbase.client.TestClientTimeouts.data | 2 + ...e.hadoop.hbase.client.TestEnableTable.conf | 3 + ...e.hadoop.hbase.client.TestEnableTable.data | 2 + ....TestMetaWithReplicasShutdownHandling.conf | 3 + ....TestMetaWithReplicasShutdownHandling.data | 2 + ...op.hbase.coprocessor.TestClassLoading.conf | 3 + ...op.hbase.coprocessor.TestClassLoading.data | 2 + ...sor.TestRegionObserverScannerOpenHook.conf | 3 + ...sor.TestRegionObserverScannerOpenHook.data | 2 + ...sor.example.TestRefreshHFilesEndpoint.conf | 0 ...sor.example.TestRefreshHFilesEndpoint.data | 2 + ...ample.TestZooKeeperScanPolicyObserver.conf | 3 + ...ample.TestZooKeeperScanPolicyObserver.data | 2 + ...ncfs.TestFanOutOneBlockAsyncDFSOutput.conf | 3 + ...ncfs.TestFanOutOneBlockAsyncDFSOutput.data | 2 + ...base.mapreduce.TestTableMapReduceUtil.conf | 3 + ...base.mapreduce.TestTableMapReduceUtil.data | 2 + ...tainAssignmentOnRestartSplitWithoutZk.conf | 3 + ...tainAssignmentOnRestartSplitWithoutZk.data | 2 + ...RegionAssignedToMultipleRegionServers.conf | 3 + ...RegionAssignedToMultipleRegionServers.data | 2 + ...ter.assignment.TestRegionReplicaSplit.conf | 3 + ...ter.assignment.TestRegionReplicaSplit.data | 2 + ...e.TestSnapshotProcedureMasterRestarts.conf | 3 + ...e.TestSnapshotProcedureMasterRestarts.data | 2 + ...cedure.TestSnapshotProcedureRSCrashes.conf | 3 + ...cedure.TestSnapshotProcedureRSCrashes.data | 2 + ....hbase.procedure2.TestChildProcedures.conf | 3 + ....hbase.procedure2.TestChildProcedures.data | 2 + ....quotas.TestSuperUserQuotaPermissions.conf | 3 + ....quotas.TestSuperUserQuotaPermissions.data | 2 + ...regionserver.TestBootstrapNodeManager.conf | 3 + ...regionserver.TestBootstrapNodeManager.data | 2 + ...rver.TestBulkLoadReplicationHFileRefs.conf | 3 + ...rver.TestBulkLoadReplicationHFileRefs.data | 2 + ....TestCompactionArchiveConcurrentClose.conf | 3 + ....TestCompactionArchiveConcurrentClose.data | 2 + ...erver.TestRegionServerCrashDisableWAL.conf | 3 + ...erver.TestRegionServerCrashDisableWAL.data | 2 + ...oop.hbase.regionserver.wal.TestFSHLog.conf | 3 + ...oop.hbase.regionserver.wal.TestFSHLog.data | 2 + ...ication.TestSerialReplicationFailover.conf | 3 + ...ication.TestSerialReplicationFailover.data | 2 + ...nserver.TestBasicWALEntryStreamFSHLog.conf | 3 + ...nserver.TestBasicWALEntryStreamFSHLog.data | 2 + ....TestDrainReplicationQueuesForStandBy.conf | 3 + ....TestDrainReplicationQueuesForStandBy.data | 2 + ...erver.TestRefreshRecoveredReplication.conf | 3 + ...erver.TestRefreshRecoveredReplication.data | 2 + ...plication.regionserver.TestReplicator.conf | 3 + ...plication.regionserver.TestReplicator.data | 2 + ...pache.hadoop.hbase.rest.TestDeleteRow.conf | 3 + ...pache.hadoop.hbase.rest.TestDeleteRow.data | 2 + ....hbase.rest.TestSecurityHeadersFilter.conf | 3 + ....hbase.rest.TestSecurityHeadersFilter.data | 2 + ...base.rsgroup.TestRSGroupsBalance.java.conf | 3 + ...base.rsgroup.TestRSGroupsBalance.java.data | 2 + ...apshot.TestMobFlushSnapshotFromClient.conf | 3 + ...apshot.TestMobFlushSnapshotFromClient.data | 2 + ...util.TestRegionMoverWithRSGroupEnable.conf | 3 + ...util.TestRegionMoverWithRSGroupEnable.data | 2 + ...se.wal.TestSyncReplicationWALProvider.conf | 3 + ...se.wal.TestSyncReplicationWALProvider.data | 2 + ...types.exemplars.client.TestHelloHBase.conf | 3 + ...types.exemplars.client.TestHelloHBase.data | 2 + .../wasabi/config/hive/hive.conf | 3 + .../wasabi/config/hive/hive_retry_bounds.data | 32 + .../config/hive/hive_retry_locations.data | 74 + .../config/hive/hive_timeout_bounds.data | 424 + .../hive/pom-hive-standalone-metastore.xml | 719 + .../wasabi/config/hive/pom-hive.xml | 2115 +++ ...op.hive.druid.TestDruidStorageHandler.conf | 3 + ...op.hive.druid.TestDruidStorageHandler.data | 2 + ...ry.impl.TestLlapZookeeperRegistryImpl.conf | 3 + ...ry.impl.TestLlapZookeeperRegistryImpl.data | 2 + ....TestListPartitionsWithXIncludeParams.conf | 3 + ....TestListPartitionsWithXIncludeParams.data | 2 + ....metastore.TestMetaStoreEventListener.conf | 3 + ....metastore.TestMetaStoreEventListener.data | 2 + ...hadoop.hive.metastore.TestObjectStore.conf | 3 + ...hadoop.hive.metastore.TestObjectStore.data | 2 + ...apache.hadoop.hive.ql.TestTxnCommands.conf | 3 + ...apache.hadoop.hive.ql.TestTxnCommands.data | 2 + ...oop.hive.ql.TestTxnCommandsForMmTable.conf | 3 + ...oop.hive.ql.TestTxnCommandsForMmTable.data | 2 + ...ve.ql.exec.tez.TestTezOutputCommitter.conf | 3 + ...ve.ql.exec.tez.TestTezOutputCommitter.data | 2 + ...adoop.hive.ql.exec.util.TestRetryable.conf | 3 + ...adoop.hive.ql.exec.util.TestRetryable.data | 2 + ...ive.ql.hooks.TestHiveProtoLoggingHook.conf | 3 + ...ive.ql.hooks.TestHiveProtoLoggingHook.data | 2 + ...ve.ql.plan.mapping.TestCounterMapping.conf | 3 + ...ve.ql.plan.mapping.TestCounterMapping.data | 2 + ....hive.ql.plan.mapping.TestOperatorCmp.conf | 3 + ....hive.ql.plan.mapping.TestOperatorCmp.data | 2 + ...ve.ql.plan.mapping.TestReOptimization.conf | 3 + ...ve.ql.plan.mapping.TestReOptimization.data | 2 + ...ive.ql.schq.TestScheduledQueryService.conf | 3 + ...ive.ql.schq.TestScheduledQueryService.data | 2 + ...atalog.api.repl.commands.TestCommands.conf | 3 + ...atalog.api.repl.commands.TestCommands.data | 2 + ...g.mapreduce.TestHCatMultiOutputFormat.conf | 3 + ...g.mapreduce.TestHCatMultiOutputFormat.data | 2 + ...e.hive.testutils.TestHiveTestEnvSetup.conf | 3 + ...e.hive.testutils.TestHiveTestEnvSetup.data | 2 + .../sosp24_wasabi/wasabi/pom-java11.xml | 535 + .../sosp24_wasabi/wasabi/pom-java8.xml | 530 + .../benchmark/sosp24_wasabi/wasabi/pom.xml | 530 + .../cs/systems/wasabi/InterceptCassandra.aj | 779 + .../systems/wasabi/InterceptElasticSearch.aj | 372 + .../cs/systems/wasabi/InterceptHBase.aj | 1077 ++ .../cs/systems/wasabi/InterceptHadoop.aj | 988 ++ .../cs/systems/wasabi/InterceptHive.aj | 384 + .../cs/systems/wasabi/ConfigParser.java | 163 + .../cs/systems/wasabi/ExecutionTrace.java | 243 + .../cs/systems/wasabi/HashingPrimitives.java | 46 + .../cs/systems/wasabi/InjectionPoint.java | 35 + .../cs/systems/wasabi/InjectionPolicies.java | 38 + .../cs/systems/wasabi/StackSnapshot.java | 107 + .../cs/systems/wasabi/WasabiContext.java | 120 + .../systems/wasabi/WasabiContextHolder.java | 7 + .../cs/systems/wasabi/WasabiLogger.java | 33 + .../cs/systems/wasabi/TestExecutionTrace.java | 261 + .../systems/wasabi/TestInjectionPolicies.java | 32 + .../cs/systems/wasabi/TestStackSnapshot.java | 69 + .../systems/wasabi/TestThrowableCallback.java | 27 + .../cs/systems/wasabi/TestWasabiContext.java | 143 + .../wasabi/target/classes/builddef.lst | 13 + .../cassandra/casandra_retry_locations.data | 22 + .../cs/systems/wasabi/ConfigParser.class | Bin 0 -> 6925 bytes .../cs/systems/wasabi/ConfigParser.java | 163 + .../cs/systems/wasabi/ExecutionTrace.class | Bin 0 -> 5164 bytes .../cs/systems/wasabi/ExecutionTrace.java | 243 + .../cs/systems/wasabi/HashingPrimitives.class | Bin 0 -> 802 bytes .../cs/systems/wasabi/HashingPrimitives.java | 46 + .../cs/systems/wasabi/InjectForever.class | Bin 0 -> 471 bytes .../systems/wasabi/InjectUpToMaxCount.class | Bin 0 -> 601 bytes .../cs/systems/wasabi/InjectionPoint.class | Bin 0 -> 1368 bytes .../cs/systems/wasabi/InjectionPoint.java | 35 + .../cs/systems/wasabi/InjectionPolicies.java | 38 + .../cs/systems/wasabi/InjectionPolicy.class | Bin 0 -> 364 bytes .../cs/systems/wasabi/InterceptHive.class | Bin 0 -> 109215 bytes .../cs/systems/wasabi/NoInjection.class | Bin 0 -> 467 bytes .../uchicago/cs/systems/wasabi/OpEntry.class | Bin 0 -> 3339 bytes .../cs/systems/wasabi/StackSnapshot.class | Bin 0 -> 5332 bytes .../cs/systems/wasabi/StackSnapshot.java | 107 + .../cs/systems/wasabi/WasabiContext.class | Bin 0 -> 6951 bytes .../cs/systems/wasabi/WasabiContext.java | 120 + .../systems/wasabi/WasabiContextHolder.class | Bin 0 -> 307 bytes .../systems/wasabi/WasabiContextHolder.java | 7 + .../cs/systems/wasabi/WasabiLogger.class | Bin 0 -> 1642 bytes .../cs/systems/wasabi/WasabiLogger.java | 33 + .../elasticsearch_retry_locations.data | 50 + .../wasabi/target/classes/example_hdfs.conf | 3 + .../wasabi/target/classes/example_hdfs.data | 3 + .../wasabi/target/classes/hadoop/example.conf | 3 + .../wasabi/target/classes/hadoop/example.data | 3 + .../wasabi/target/classes/hadoop/hadoop.conf | 3 + .../classes/hadoop/hadoop_retry_bounds.data | 195 + .../hadoop/hadoop_retry_locations.data | 202 + .../classes/hadoop/hadoop_timeout_bounds.data | 221 + .../target/classes/hadoop/pom-hadoop.xml | 963 ++ ...ons-org.apache.hadoop.cli.TestHDFSCLI.conf | 3 + ...ons-org.apache.hadoop.cli.TestHDFSCLI.data | 2 + ...adoop.fs.http.server.TestHttpFSServer.conf | 3 + ...adoop.fs.http.server.TestHttpFSServer.data | 2 + ...t.staging.TestDirectoryCommitterScale.conf | 3 + ...t.staging.TestDirectoryCommitterScale.data | 2 + ...pache.hadoop.fs.shell.TestCopyToLocal.conf | 3 + ...pache.hadoop.fs.shell.TestCopyToLocal.data | 2 + ...fs.viewfs.TestViewFileSystemLinkRegex.conf | 3 + ...fs.viewfs.TestViewFileSystemLinkRegex.data | 2 + ....apache.hadoop.hdfs.TestDatanodeDeath.conf | 3 + ....apache.hadoop.hdfs.TestDatanodeDeath.data | 2 + ...doop.hdfs.TestDecommissionWithStriped.conf | 3 + ...doop.hdfs.TestDecommissionWithStriped.data | 2 + ...ons-org.apache.hadoop.hdfs.TestHFlush.conf | 3 + ...ons-org.apache.hadoop.hdfs.TestHFlush.data | 2 + ....apache.hadoop.hdfs.TestLeaseRecovery.conf | 3 + ....apache.hadoop.hdfs.TestLeaseRecovery.data | 2 + ...oop.hdfs.TestReplaceDatanodeOnFailure.conf | 3 + ...oop.hdfs.TestReplaceDatanodeOnFailure.data | 2 + ...oop.hdfs.client.impl.TestLeaseRenewer.conf | 3 + ...oop.hdfs.client.impl.TestLeaseRenewer.data | 2 + ...org.apache.hadoop.hdfs.nfs.TestMountd.conf | 3 + ...org.apache.hadoop.hdfs.nfs.TestMountd.data | 2 + ...oop.hdfs.server.datanode.TestBatchIbr.conf | 3 + ...oop.hdfs.server.datanode.TestBatchIbr.data | 2 + ...anode.fsdataset.impl.TestFsVolumeList.conf | 3 + ...anode.fsdataset.impl.TestFsVolumeList.data | 2 + ...e.fsdataset.impl.TestSpaceReservation.conf | 3 + ...e.fsdataset.impl.TestSpaceReservation.data | 2 + ...ion.metrics.TestNameserviceRPCMetrics.conf | 3 + ...ion.metrics.TestNameserviceRPCMetrics.data | 2 + ...deration.router.TestRouterAllResolver.conf | 3 + ...deration.router.TestRouterAllResolver.data | 2 + ...rver.federation.router.TestRouterFsck.conf | 3 + ...rver.federation.router.TestRouterFsck.data | 2 + ...p.hdfs.server.namenode.TestCheckpoint.conf | 3 + ...p.hdfs.server.namenode.TestCheckpoint.data | 2 + ...s.server.namenode.TestFSEditLogLoader.conf | 3 + ...s.server.namenode.TestFSEditLogLoader.data | 2 + ...hdfs.server.namenode.TestReencryption.conf | 3 + ...hdfs.server.namenode.TestReencryption.data | 2 + ...e.snapshot.TestRandomOpsWithSnapshots.conf | 3 + ...e.snapshot.TestRandomOpsWithSnapshots.data | 2 + ...StoragePolicySatisfierWithStripedFile.conf | 3 + ...StoragePolicySatisfierWithStripedFile.data | 2 + ...ce.hadoop.TestFileSystemAccessService.conf | 3 + ...ce.hadoop.TestFileSystemAccessService.data | 2 + ....apache.hadoop.mapred.TestComparators.conf | 3 + ....apache.hadoop.mapred.TestComparators.data | 2 + ...hadoop.mapred.TestFileOutputCommitter.conf | 3 + ...hadoop.mapred.TestFileOutputCommitter.data | 2 + ...adoop.mapred.TestLineRecordReaderJobs.conf | 3 + ...adoop.mapred.TestLineRecordReaderJobs.data | 2 + ...s-org.apache.hadoop.mapred.TestMapRed.conf | 3 + ...s-org.apache.hadoop.mapred.TestMapRed.data | 2 + ...gridmix.TestCompressionEmulationUtils.conf | 3 + ...gridmix.TestCompressionEmulationUtils.data | 2 + ...apred.lib.TestKeyFieldBasedComparator.conf | 3 + ...apred.lib.TestKeyFieldBasedComparator.data | 2 + ...apache.hadoop.mapreduce.TestMapReduce.conf | 3 + ...apache.hadoop.mapreduce.TestMapReduce.data | 2 + ...ce.lib.db.TestDataDrivenDBInputFormat.conf | 3 + ...ce.lib.db.TestDataDrivenDBInputFormat.data | 2 + ...rtition.TestMRKeyFieldBasedComparator.conf | 3 + ...rtition.TestMRKeyFieldBasedComparator.data | 2 + ...he.hadoop.security.TestUGIWithMiniKdc.conf | 3 + ...he.hadoop.security.TestUGIWithMiniKdc.data | 2 + ...e.hadoop.streaming.TestDumpTypedBytes.conf | 3 + ...e.hadoop.streaming.TestDumpTypedBytes.data | 2 + ...doop.streaming.TestMultipleCachefiles.conf | 3 + ...doop.streaming.TestMultipleCachefiles.data | 2 + ....hadoop.streaming.TestStreamAggregate.conf | 3 + ....hadoop.streaming.TestStreamAggregate.data | 2 + ...apache.hadoop.streaming.TestStreaming.conf | 3 + ...apache.hadoop.streaming.TestStreaming.data | 2 + ...g.mapreduce.TestStreamXmlRecordReader.conf | 3 + ...g.mapreduce.TestStreamXmlRecordReader.data | 2 + ...rg.apache.hadoop.test.TestHFSTestCase.conf | 3 + ...rg.apache.hadoop.test.TestHFSTestCase.data | 2 + ...ns-org.apache.hadoop.tools.TestDistCh.conf | 3 + ...ns-org.apache.hadoop.tools.TestDistCh.data | 2 + ...pache.hadoop.tools.TestHadoopArchives.conf | 3 + ...pache.hadoop.tools.TestHadoopArchives.data | 2 + ....tools.fedbalance.TestDistCpProcedure.conf | 3 + ....tools.fedbalance.TestDistCpProcedure.data | 2 + ...che.hadoop.yarn.client.TestRMFailover.conf | 3 + ...che.hadoop.yarn.client.TestRMFailover.data | 2 + .../wasabi/target/classes/hbase/hbase.conf | 3 + .../classes/hbase/hbase_retry_bounds.data | 158 + .../classes/hbase/hbase_retry_locations.data | 137 + .../classes/hbase/hbase_timeout_bounds.data | 81 + .../wasabi/target/classes/hbase/pom-hbase.xml | 4721 +++++ ...apache.hadoop.hbase.TestMultiVersions.conf | 3 + ...apache.hadoop.hbase.TestMultiVersions.data | 2 + ...se.TestRegionReplicationLagEvaluation.conf | 3 + ...se.TestRegionReplicationLagEvaluation.data | 2 + ....hbase.backup.TestBackupDeleteRestore.conf | 3 + ....hbase.backup.TestBackupDeleteRestore.data | 2 + ...he.hadoop.hbase.client.TestAsyncTable.conf | 3 + ...he.hadoop.hbase.client.TestAsyncTable.data | 2 + ...se.client.TestClientSideRegionScanner.conf | 3 + ...se.client.TestClientSideRegionScanner.data | 2 + ...adoop.hbase.client.TestClientTimeouts.conf | 3 + ...adoop.hbase.client.TestClientTimeouts.data | 2 + ...e.hadoop.hbase.client.TestEnableTable.conf | 3 + ...e.hadoop.hbase.client.TestEnableTable.data | 2 + ....TestMetaWithReplicasShutdownHandling.conf | 3 + ....TestMetaWithReplicasShutdownHandling.data | 2 + ...op.hbase.coprocessor.TestClassLoading.conf | 3 + ...op.hbase.coprocessor.TestClassLoading.data | 2 + ...sor.TestRegionObserverScannerOpenHook.conf | 3 + ...sor.TestRegionObserverScannerOpenHook.data | 2 + ...sor.example.TestRefreshHFilesEndpoint.conf | 0 ...sor.example.TestRefreshHFilesEndpoint.data | 2 + ...ample.TestZooKeeperScanPolicyObserver.conf | 3 + ...ample.TestZooKeeperScanPolicyObserver.data | 2 + ...ncfs.TestFanOutOneBlockAsyncDFSOutput.conf | 3 + ...ncfs.TestFanOutOneBlockAsyncDFSOutput.data | 2 + ...base.mapreduce.TestTableMapReduceUtil.conf | 3 + ...base.mapreduce.TestTableMapReduceUtil.data | 2 + ...tainAssignmentOnRestartSplitWithoutZk.conf | 3 + ...tainAssignmentOnRestartSplitWithoutZk.data | 2 + ...RegionAssignedToMultipleRegionServers.conf | 3 + ...RegionAssignedToMultipleRegionServers.data | 2 + ...ter.assignment.TestRegionReplicaSplit.conf | 3 + ...ter.assignment.TestRegionReplicaSplit.data | 2 + ...e.TestSnapshotProcedureMasterRestarts.conf | 3 + ...e.TestSnapshotProcedureMasterRestarts.data | 2 + ...cedure.TestSnapshotProcedureRSCrashes.conf | 3 + ...cedure.TestSnapshotProcedureRSCrashes.data | 2 + ....hbase.procedure2.TestChildProcedures.conf | 3 + ....hbase.procedure2.TestChildProcedures.data | 2 + ....quotas.TestSuperUserQuotaPermissions.conf | 3 + ....quotas.TestSuperUserQuotaPermissions.data | 2 + ...regionserver.TestBootstrapNodeManager.conf | 3 + ...regionserver.TestBootstrapNodeManager.data | 2 + ...rver.TestBulkLoadReplicationHFileRefs.conf | 3 + ...rver.TestBulkLoadReplicationHFileRefs.data | 2 + ....TestCompactionArchiveConcurrentClose.conf | 3 + ....TestCompactionArchiveConcurrentClose.data | 2 + ...erver.TestRegionServerCrashDisableWAL.conf | 3 + ...erver.TestRegionServerCrashDisableWAL.data | 2 + ...oop.hbase.regionserver.wal.TestFSHLog.conf | 3 + ...oop.hbase.regionserver.wal.TestFSHLog.data | 2 + ...ication.TestSerialReplicationFailover.conf | 3 + ...ication.TestSerialReplicationFailover.data | 2 + ...nserver.TestBasicWALEntryStreamFSHLog.conf | 3 + ...nserver.TestBasicWALEntryStreamFSHLog.data | 2 + ....TestDrainReplicationQueuesForStandBy.conf | 3 + ....TestDrainReplicationQueuesForStandBy.data | 2 + ...erver.TestRefreshRecoveredReplication.conf | 3 + ...erver.TestRefreshRecoveredReplication.data | 2 + ...plication.regionserver.TestReplicator.conf | 3 + ...plication.regionserver.TestReplicator.data | 2 + ...pache.hadoop.hbase.rest.TestDeleteRow.conf | 3 + ...pache.hadoop.hbase.rest.TestDeleteRow.data | 2 + ....hbase.rest.TestSecurityHeadersFilter.conf | 3 + ....hbase.rest.TestSecurityHeadersFilter.data | 2 + ...base.rsgroup.TestRSGroupsBalance.java.conf | 3 + ...base.rsgroup.TestRSGroupsBalance.java.data | 2 + ...apshot.TestMobFlushSnapshotFromClient.conf | 3 + ...apshot.TestMobFlushSnapshotFromClient.data | 2 + ...util.TestRegionMoverWithRSGroupEnable.conf | 3 + ...util.TestRegionMoverWithRSGroupEnable.data | 2 + ...se.wal.TestSyncReplicationWALProvider.conf | 3 + ...se.wal.TestSyncReplicationWALProvider.data | 2 + ...types.exemplars.client.TestHelloHBase.conf | 3 + ...types.exemplars.client.TestHelloHBase.data | 2 + .../wasabi/target/classes/hive/hive.conf | 3 + .../classes/hive/hive_retry_bounds.data | 32 + .../classes/hive/hive_retry_locations.data | 74 + .../classes/hive/hive_timeout_bounds.data | 424 + .../hive/pom-hive-standalone-metastore.xml | 719 + .../wasabi/target/classes/hive/pom-hive.xml | 2115 +++ ...op.hive.druid.TestDruidStorageHandler.conf | 3 + ...op.hive.druid.TestDruidStorageHandler.data | 2 + ...ry.impl.TestLlapZookeeperRegistryImpl.conf | 3 + ...ry.impl.TestLlapZookeeperRegistryImpl.data | 2 + ....TestListPartitionsWithXIncludeParams.conf | 3 + ....TestListPartitionsWithXIncludeParams.data | 2 + ....metastore.TestMetaStoreEventListener.conf | 3 + ....metastore.TestMetaStoreEventListener.data | 2 + ...hadoop.hive.metastore.TestObjectStore.conf | 3 + ...hadoop.hive.metastore.TestObjectStore.data | 2 + ...apache.hadoop.hive.ql.TestTxnCommands.conf | 3 + ...apache.hadoop.hive.ql.TestTxnCommands.data | 2 + ...oop.hive.ql.TestTxnCommandsForMmTable.conf | 3 + ...oop.hive.ql.TestTxnCommandsForMmTable.data | 2 + ...ve.ql.exec.tez.TestTezOutputCommitter.conf | 3 + ...ve.ql.exec.tez.TestTezOutputCommitter.data | 2 + ...adoop.hive.ql.exec.util.TestRetryable.conf | 3 + ...adoop.hive.ql.exec.util.TestRetryable.data | 2 + ...ive.ql.hooks.TestHiveProtoLoggingHook.conf | 3 + ...ive.ql.hooks.TestHiveProtoLoggingHook.data | 2 + ...ve.ql.plan.mapping.TestCounterMapping.conf | 3 + ...ve.ql.plan.mapping.TestCounterMapping.data | 2 + ....hive.ql.plan.mapping.TestOperatorCmp.conf | 3 + ....hive.ql.plan.mapping.TestOperatorCmp.data | 2 + ...ve.ql.plan.mapping.TestReOptimization.conf | 3 + ...ve.ql.plan.mapping.TestReOptimization.data | 2 + ...ive.ql.schq.TestScheduledQueryService.conf | 3 + ...ive.ql.schq.TestScheduledQueryService.data | 2 + ...atalog.api.repl.commands.TestCommands.conf | 3 + ...atalog.api.repl.commands.TestCommands.data | 2 + ...g.mapreduce.TestHCatMultiOutputFormat.conf | 3 + ...g.mapreduce.TestHCatMultiOutputFormat.data | 2 + ...e.hive.testutils.TestHiveTestEnvSetup.conf | 3 + ...e.hive.testutils.TestHiveTestEnvSetup.data | 2 + .../target/maven-archiver/pom.properties | 5 + .../compile/default-compile/createdFiles.lst | 13 + .../compile/default-compile/inputFiles.lst | 9 + .../wasabi/target/wasabi-1.0.0.jar | Bin 0 -> 227559 bytes .../sosp24_wasabi/wasabi/utils/README.md | 98 + .../sosp24_wasabi/wasabi/utils/bug_oracles.py | 478 + .../wasabi/utils/display_bug_results.py | 199 + .../wasabi/utils/generate_aspect.py | 264 + .../wasabi/utils/gpt_cost_compute.py | 39 + .../wasabi/utils/maven_tests_count.py | 35 + .../sosp24_wasabi/wasabi/utils/prereqs.sh | 13 + .../sosp24_wasabi/wasabi/utils/run.bak | 247 + .../sosp24_wasabi/wasabi/utils/run.py | 255 + .../wasabi/utils/run_benchmark.bak | 268 + .../wasabi/utils/run_benchmark.py | 275 + .../wasabi/utils/source_rewriter.py | 201 + .../wasabi/utils/test_plan_generator.py | 149 + .../wasabi/utils/wasabi-full-eval.log | 3923 +++++ .../wasabi/utils/wasabi_coverage.py | 97 + .../sosp24_wasabi/wasabi/wasabi-install.log | 14328 ++++++++++++++++ 516 files changed, 51417 insertions(+) create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/LICENSE create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/README.md create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_env.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_bug.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_weaving.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_wasabi_build.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/checker.log create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_benchmark_prep.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_env_setup.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/bugs_ground_truth.txt create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/cassandra/casandra_retry_locations.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/elasticsearch/elasticsearch_retry_locations.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/example_hdfs.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/example_hdfs.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/example.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/example.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop_retry_bounds.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop_retry_locations.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop_timeout_bounds.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/pom-hadoop.xml create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase_retry_bounds.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase_retry_locations.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase_timeout_bounds.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/pom-hbase.xml create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive_retry_bounds.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive_retry_locations.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive_timeout_bounds.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/pom-hive-standalone-metastore.xml create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/pom-hive.xml create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/pom-java11.xml create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/pom-java8.xml create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/pom.xml create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptCassandra.aj create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptElasticSearch.aj create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/ConfigParser.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/ExecutionTrace.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/HashingPrimitives.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/InjectionPoint.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/InjectionPolicies.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/StackSnapshot.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiContext.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiContextHolder.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiLogger.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestExecutionTrace.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestInjectionPolicies.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestStackSnapshot.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestThrowableCallback.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestWasabiContext.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/builddef.lst create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/cassandra/casandra_retry_locations.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ConfigParser.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ConfigParser.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ExecutionTrace.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ExecutionTrace.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/HashingPrimitives.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/HashingPrimitives.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectForever.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectUpToMaxCount.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPoint.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPoint.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPolicies.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPolicy.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InterceptHive.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/NoInjection.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/OpEntry.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/StackSnapshot.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/StackSnapshot.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContext.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContext.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContextHolder.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContextHolder.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiLogger.class create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiLogger.java create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/elasticsearch/elasticsearch_retry_locations.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/example_hdfs.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/example_hdfs.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/example.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/example.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop_retry_bounds.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop_retry_locations.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop_timeout_bounds.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/pom-hadoop.xml create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase_retry_bounds.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase_retry_locations.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase_timeout_bounds.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/pom-hbase.xml create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive_retry_bounds.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive_retry_locations.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive_timeout_bounds.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/pom-hive-standalone-metastore.xml create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/pom-hive.xml create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.conf create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.data create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/maven-archiver/pom.properties create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/wasabi-1.0.0.jar create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/README.md create mode 100755 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/bug_oracles.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/display_bug_results.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/generate_aspect.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/gpt_cost_compute.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/maven_tests_count.py create mode 100755 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/prereqs.sh create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run.bak create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run_benchmark.bak create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run_benchmark.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/source_rewriter.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/test_plan_generator.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/wasabi-full-eval.log create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/wasabi_coverage.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/wasabi-install.log diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/LICENSE b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/LICENSE new file mode 100644 index 00000000..05cd7325 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/LICENSE @@ -0,0 +1,202 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2023 Systems Group at The University of Chicago -- Bogdan Alexandru Stoica , Utsav Sethi , Yiming Su , Cyrus Zhou + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/README.md b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/README.md new file mode 100644 index 00000000..4adb098b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/README.md @@ -0,0 +1,550 @@ +## 1. Overview + +The testing component of WASABI triggers retry bugs by using a combination of static analysis, large language models (LLMs), fault injection, and testing. + +## 2. Getting Started + +To get started, users should create a new directory structure, clone this repository, work on the `main` branch of the repository, configure and install dependencies, by following these steps: + +1. Create a new workspace directory and clone the WASABI repository: +```bash +mkdir -p ~/wasabi-workspace/benchmarks +cd ~/wasabi-workspace/ +git clone https://github.com/bastoica/wasabi +``` + +The working directory structure should look similar to the one below: +```plaintext +~/wasabi-workspace + ├── benchmarks/ + └── wasabi/ + ├── LICENSE + ├── README.md + ├── wasabi-static/ + │ ├── README.md + │ ├── codeql-if-detection + │ ├── gpt-when-detection + | ├── retry_issue_set_artifact.xlsx + | └── wasabi_gpt_detection_results--table4.xlsx + └── wasabi-testing + ├── README.md + ├── config/ + ├── pom-java11.xml + ├── pom-java8.xml + ├── pom.xml + ├── src/ + └── utils/ +``` +The `wasabi` directory contains the codebase of WASABI, while the `bugfinding` directory is where users can add applications that they want to use WASABI to find retry bugs. + +2. Set up the `WASABI_ROOT_DIR` environment variable: +``` +export WASABI_ROOT_DIR=$(echo $HOME)/wasabi-workspace/wasabi +``` +3. Installing necessary dependnecies: +``` +cd ~/wasabi-workspace/wasabi/wasabi-testing/utils +sudo ./prereqs.sh +``` + +> [!NOTE] +> WASABI requires the following dependencies: +> * Ubuntu >=22.04 LTE +> * Python >=3.10 +> * Java 8 and 11 +> * Maven >=3.6 +> * Gradle >=4.4.1 +> * Ant >=1.10 +> * AspectJ runtime plugin** (`aspectjr`) 1.9.8.M1 for Java 8 and 1.9.19 for Java 11, respectively +> * AspectJ Maven plugin** (`aspectj-maven-plugin`) 1.13 for Java 8 and 1.13.1 for Java 11, respectively +> +>**both added to WASABI's `pom.xml` as plugin dependencies +> +> WASABI was developed, built, and tested on a bare metal machine with an Intel i7-8700 CPU, 32 GB of RAM, and 512 GB of disk space, running Ubuntu 22.04 LTE. +> While we implement WASABI to be agnostic to environment settings (i.e., OS distribution, versions of packages and dependencies), using WASABI in a different environment. Please see "[Known issues](README.md#7-known-issues)". + +## 3. Building and installing WASABI + +To build and install WASABI, first switch to the appropriate Java distribution. In this tutorial we work with Java 8 as it is the latest distribution required for HDFS. +```bash +sudo update-alternatives --config java +...(select java 8) +export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/jre +``` + +Next, run Maven's `clean`, `compile`, and `install` Maven from the `wasabi-testing` directory, to build WASABI. Note that the current codebase includes AspectJ for each of the applications used to evaluate WASABI (see Section 4 from our [paper](https://bastoica.github.io/files/papers/2024_sosp_wasabi.pdf)). In this walkthrough we build WASABI for finding bugs in HDFS (Hadoop) and use triggering HDFS-17590 as an example, [below](README.md#6-running-example-reproducing-hdfs-17590). +```bash +cd ~/wasabi-workspace/wasabi/wasabi-testing +mvn clean install -U -fn -B -Dinstrumentation.target=hadoop -DskipTests 2>&1 | tee wasabi-install.log +``` + +If successful users should see a message similar to +```bash +... +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 36.384 s +[INFO] Finished at: 2024-08-12T19:57:24Z +[INFO] ------------------------------------------------------------------------ +``` +If users need to use Java 11, they can either modify the `pom.xml` accordingly. We also provide pre-configured `pom` files for [Java 8](pom-java8.xml) and [Java 11](pom-java11.xml`). + +> [!NOTE] +> When building WASABI multiple times, especially under a different Java distribution, it is recommended to first remove Maven's cache directory prior to compiling WASABI. +```bash +rm -rf ~/.m2/repository +``` + +## 4. Weaving (instrumenting) a target application + +WASABI can be woven into or instrument a target applications either at compile- or load-time. + +### 4.1 Compile-time weaving (Maven) + +To enable compile-time weaving for a target application, users need to modify the original `pom.xml` of the target to include Wasabi as a dependence and invoke the `aspectj` plugin: + +```xml + + + + + + org.aspectj + aspectjrt + ${aspectj.version} + + + + + edu.uchicago.cs.systems + wasabi + ${wasabi.version} + + + + + + 1.9.19 + 1.13.1 + 1.0.0 + + + + + + + + + dev.aspectj + aspectj-maven-plugin + ${aspectj-maven.version} + + + + edu.uchicago.cs.systems + wasabi + + + true + true + + + + + compile + test-compile + + + + + + +``` + +Next, build the target application with WASABI woven in: +```bash +cd /path/to/target_application +mvn clean compile -T 8 -fn -DskipTests && mvn install -fn -DskipTests -B 2>&1 | tee wasabi-build.log +``` + +Successful weaving should produce log messages like this one: +```bash +[INFO] Join point 'method-execution(...)' in Type 'org.apache.hadoop.metrics2.util.SampleStat' ... +``` + +Users should also check out [examples](https://github.com/bastoica/wasabi/tree/wasabi-workspace/wasabi-testing) of target applications instrumented with WASABI from our `sosp24-ae` branch. These not only include detailed weaving steps, but also the modified `pom.xml` files. + +### 4.2 Load-time weaving (Gradle, Ant, others) + +Some applications use build systems other than Maven, like Gradle or Ant. In these cases, WASABI can be woven at load-time. + +#### Load-time weaving with Gradle + +First, add the AspectJ plugin and dependencies to your build.gradle file: +```xml +plugins { + id 'io.freefair.aspectj.post-compile-weaving' version '8.1.0' + id 'java' +} + +dependencies { + implementation 'org.aspectj:aspectjrt:1.9.19' + aspect 'edu.uchicago.cs.systems:wasabi:1.0.0' +} +``` + +Next, configure AspectJ for load-time weaving: +```xml +compileJava { + options.compilerArgs += ['-Xlint:none'] + doLast { + javaexec { + main = '-jar' + args = [configurations.aspectj.getSingleFile(), '-inpath', sourceSets.main.output.classesDirs.asPath, '-aspectpath', configurations.aspect.asPath] + } + } +} +``` + +Finally, compile and build the project: +```bash +gradle clean build -i 2>&1 | tee wasabi-build.log +``` + +#### Load-time weaving with Ant + +First, make sure AspectJ libraries (`aspectjrt.jar`, `aspectjtools.jar`) are available in your project. + +Next, modify `build.xml` by adding the AspectJ tasks and specify WASABI in the aspect path: + +```xml + + + + + + + + + + + + + + + + + +``` + +Finally, compile and build the project: +```bash +ant compile 2>&1 | tee wasabi-build.log +``` + +## 5. Configure fault injection policies and metadata + +To specify fault injection policies and the precise injection locations, users need to create two types of files—a location data file (`.data`) and a policy configuration file (`.conf`). + +A `.data` file describes the retry locations and their respective exceptions to be injected by Wasabi. It has the following format: +```xml +Retry location!!!Enclosing method!!!Retried method!!!Injection site!!!Exception +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L790!!!org.apache.hadoop.ipc.Client$Connection.setupIOstreams!!!org.apache.hadoop.ipc.Client$Connection.writeConnectionContext!!!Client.java:831!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ha/EditLogTailer.java#L609!!!org.apache.hadoop.hdfs.server.namenode.ha.EditLogTailer$MultipleNameNodeProxy.getActiveNodeProxy!!!org.apache.hadoop.ipc.RPC.getProtocolVersion!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/RPC.java#L419!!!org.apache.hadoop.ipc.RPC.waitForProtocolProxy!!!org.apache.hadoop.ipc.RPC.getProtocolProxy!!!RPC.java:421!!!java.net.ConnectException +... +``` +where +* `Retry location` indicates the program locations of a retry (e.g. https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L790) +* `Enclosing method` indicates the method from where the retry location is called (e.g. `org.apache.hadoop.ipc.Client$Connection.setupIOstreams`) +* `Retried method` indicates the method inside the retry logic ought to be retried (e.g. `org.apache.hadoop.ipc.Client$IpcStreams.setSaslClient`) +* `Injection site` indicates the source location (source file and line of code) where a retried method is called. Also, this represents the program location where Wasabi injects exceptions. +* `Exception` indicates the exception that Wasabi should throw at that location (e.g. `java.io.SocketException`) + + +A `.conf` file instructs WASABI to use a specific injection policy and load injection locations from a particular `.data` file and has the following structure: + +```xml +retry_data_file: /absolute/path/to/data/file/example_retry_locations.data +injection_policy: max-count +max_injection_count: 10 +``` +where +* retry_data_file: Absolute path to a .data file specifying injection sites. +* injection_policy: One of no-injection, forever, or max-count. +* max_injection_count: Positive integer specifying the upper limit of injections (used with max-count policy). + +The users can check out examples of `.data` and `.conf` files in the `./config` directory, or on the `sosp24-ae` [branch](https://github.com/bastoica/wasabi/tree/wasabi-workspace/wasabi-testing/config). + + +## Find retry bugs + +Once WASABI is successfuly build, woven into a target application, and configured, users can instruct WASABI to finding potential retry bugs. + +To do so, users have two options: + +1. Option #1 (recommended): run individual tests and instruct WASABI to inject faults at only one location during the test run. The reason is that, by desing, WASABI tries to force the test to either crash or hang. If this happens at the first injection location, subsequent injection locations will not get a chance to execute due to the test terminating (or hanging) early. +```bash +cd [target_application_path] +mvn clean install -U -fn -B -DskipTests 2>&1 | tee wasabi-build.log +mvn surefire:test -fn -B -DconfigFile="$(echo $HOME)/wasabi/wasabi-testing/config/example_hdfs.conf" -Dtest=[TEST_NAME] 2>&1 | tee wasabi-test.log +``` + +2. Option #2: run the entire test suite and inject faults at multiple locations in the same testing runs. Users can opt to inject faults at multiple locations in the same testing run if they are confident that injecting at an earlier location does not affect the execution of a later location. In this case, users can create a multi-location `.data` file (e.g., like [this one](https://github.com/bastoica/wasabi/blob/wasabi-workspace/wasabi-testing/config/hadoop/hadoop_retry_locations.data) for Hadoop). + +```bash +cd [target_application_path] +mvn clean install -U -fn -B -DskipTests 2>&1 | tee wasabi-build.log +mvn test -fn -B -DconfigFile="$(echo $HOME)/wasabi/wasabi-testing/config/example_hdfs.conf" 2>&1 | tee wasabi-test.log +``` + +## 6. Running example: reproducing HDFS-17590 + +To illustrate how WASABI work, we walk users through an example that reproduces [HDFS-17590](https://issues.apache.org/jira/browse/HDFS-17590)—a previously unknown retry bug uncovered by WASABI. + +> [!NOTE] +> Users might observe a "build failure" message when building and testing Hadoop. This is expected as a few testing-related components of Hadoop need more configuration to build properly with the ACJ compiler. WASABI does not need those components to find retry bugs. See the "[Known issues](README.md#7-known-issues)" section below for more details. + + +1. Ensure the prerequisites are successfully installed (see "Getting Started" above) + +2. Build and install WASABI (see "Building and installing WASABI" above) + +3. Clone Hadoop (note: HDFS is part of Hadoop), +```bash +cd ~/wasabi-workspace/benchmarks +git clone https://github.com/apache/hadoop +``` +and check out version/commit `60867de`: +```bash +cd ~/wasabi-workspace/benchmarks/hadoop +git checkout 60867de +``` +Users can check whether `60867de` was successfully checked out by running +```bash +git log +``` +and checking the output +``` +commit 60867de422949be416948bd106419c771c7d13fd (HEAD) +Author: zhangshuyan <81411509+zhangshuyan0@users.noreply.github.com> +Date: Mon Aug 21 10:05:34 2023 +0800 + + HDFS-17151. EC: Fix wrong metadata in BlockInfoStriped after recovery. (#5938). Contributed by Shuyan Zhang. + + Signed-off-by: He Xiaoqiao + +``` + +4. Build and install Hadoop using the following commands. This is necessary to download and install any missing dependencies that might break Hadoop's test suite during fault injection. +```bash +mvn install -U -fn -B -DskipTests 2>&1 | tee wasabi-pass-install.log +``` + +5. Run the test that WASABI uses to trigger HDFS-17590 to confirm that the bug does not get triggered without fault injection +```bash +mvn surefire:test -fn -B -Dtest=TestFSEditLogLoader 2>&1 | tee wasabi-pass-test.log +``` +by checking that the test runs successfully. First, checking that there is no `NullPointerException` +```bash +grep -A10 -B2 "NullPointerException" wasabi-pass-test.log +``` +which should yield no output, as well as that all such tests passed +```bash +grep "Tests run.*TestFSEditLogLoader" wasabi-pass-test.log +``` +which should yield a line similar to this (note that number of tests might differ slightly) +```bash +[INFO] Tests run: 26, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 154.223 s - in org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader +``` + +6. Copy a modified `pom.xml` file that allows WASABI to instrument (weave) Hadoop by running +```bash +cp pom.xml pom-original.xml +cp ~/wasabi-workspace/wasabi/wasabi-testing/config/hadoop/pom-hadoop.xml pom.xml +``` +Note that these commands are making a copy of the original `pom.xml` and replace it with a slightly edited version that instructs the AJC compiler to instrument (weave) WASABI. Also, these alterations are specific to version `60867de`. Checking out another Hadoop commit ID requires adjustments. We provide instructions on how to adapt an original `pom.xml`, [here](README.md#instrumentation-weaving-instructions). + +7. Instrument Hadoop with WASABI by running +```bash +mvn clean install -U -fn -B -DskipTests 2>&1 | tee wasabi-fail-install.log +``` + +8. Run the bug-triggering tests with fault injection +```bash +mvn surefire:test -fn -B -DconfigFile="$(echo $HOME)/wasabi-workspace/wasabi/wasabi-testing/config/hadoop/example.conf" -Dtest=TestFSEditLogLoader 2>&1 | tee wasabi-fail-test.log +``` +and check the log to for `NullPointerException` errors +```bash +grep -A10 -B2 "NullPointerException" wasabi-fail-test.log +``` +which should yield +```bash +[ERROR] Tests run: 26, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 137.645 s <<< FAILURE! - in org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader +[ERROR] testErasureCodingPolicyOperations[0](org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader) Time elapsed: 22.691 s <<< ERROR! +java.lang.NullPointerException + at java.base/java.util.concurrent.ConcurrentHashMap.putVal(ConcurrentHashMap.java:1011) + at java.base/java.util.concurrent.ConcurrentHashMap.put(ConcurrentHashMap.java:1006) + at org.apache.hadoop.hdfs.DFSInputStream.addToLocalDeadNodes(DFSInputStream.java:184) + at org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(DFSStripedInputStream.java:279) + at org.apache.hadoop.hdfs.StripeReader.readChunk(StripeReader.java:304) + at org.apache.hadoop.hdfs.StripeReader.readStripe(StripeReader.java:335) + at org.apache.hadoop.hdfs.DFSStripedInputStream.readOneStripe(DFSStripedInputStream.java:320) + at org.apache.hadoop.hdfs.DFSStripedInputStream.readWithStrategy(DFSStripedInputStream.java:415) + at org.apache.hadoop.hdfs.DFSInputStream.read(DFSInputStream.java:919) + at java.base/java.io.DataInputStream.read(DataInputStream.java:102) +``` + +## 7. Known issues + +### 7.1 AspectJ Maven plugin circular dependency and versioning issues + +WASABI imports plugins that might also be imported by the target application. Users need to manually resolve potential circular dependencies or plugin version incompatibilities. Users could also reference [this](https://github.com/dev-aspectj/aspectj-maven-plugin/issues/143) issue in the `aspectj-maven-plugin` repository for suggestions on how to tackle such issues. + +### 7.2 Build failures after weaving + +The AspectJ compiler and supporting plugins might not be able to weave (instrument) all modules of a target successfully. While users are encouraged to address this, we recommend disregarding modules that are not critical to the core functionality of the application (e.g., benchmarking modules) or that do not implement or test retry-related code. + +For example, when reproducing HDFS-17590, users might observe a "build failure" message at the end of the build and testing processes. This is expected, as a few benchmark-related components of Hadoop require extra configuration for the AJC to compile them successfully. However, WASABI does not need these components to build correctly in order to find retry bugs. For reference, this is the original build log that WASABI encountered when building Hadoop. Note that the core components of Hadoop (common and client), HDFS, Yarn, and MapReduce all built successfully. + +
+Hadoop `60867de` build log (expand for details): + +```bash +[INFO] ------------------------------------------------------------------------ +[INFO] Reactor Summary for Apache Hadoop Main 3.4.0-SNAPSHOT: +[INFO] +[INFO] Apache Hadoop Main ................................. SUCCESS [ 4.399 s] +[INFO] Apache Hadoop Build Tools .......................... SUCCESS [ 2.222 s] +[INFO] Apache Hadoop Project POM .......................... SUCCESS [ 1.716 s] +[INFO] Apache Hadoop Annotations .......................... SUCCESS [ 3.483 s] +[INFO] Apache Hadoop Project Dist POM ..................... SUCCESS [ 0.098 s] +[INFO] Apache Hadoop Assemblies ........................... SUCCESS [ 0.094 s] +[INFO] Apache Hadoop Maven Plugins ........................ SUCCESS [ 8.806 s] +[INFO] Apache Hadoop MiniKDC .............................. SUCCESS [ 16.738 s] +[INFO] Apache Hadoop Auth ................................. SUCCESS [01:15 min] +[INFO] Apache Hadoop Auth Examples ........................ SUCCESS [ 1.117 s] +[INFO] Apache Hadoop Common ............................... SUCCESS [01:34 min] +[INFO] Apache Hadoop NFS .................................. SUCCESS [ 15.503 s] +[INFO] Apache Hadoop KMS .................................. SUCCESS [ 3.521 s] +[INFO] Apache Hadoop Registry ............................. SUCCESS [ 3.468 s] +[INFO] Apache Hadoop Common Project ....................... SUCCESS [ 0.060 s] +[INFO] Apache Hadoop HDFS Client .......................... SUCCESS [ 52.968 s] +[INFO] Apache Hadoop HDFS ................................. SUCCESS [ 57.425 s] +[INFO] Apache Hadoop HDFS Native Client ................... SUCCESS [ 0.451 s] +[INFO] Apache Hadoop HttpFS ............................... SUCCESS [ 4.092 s] +[INFO] Apache Hadoop HDFS-NFS ............................. SUCCESS [ 1.579 s] +[INFO] Apache Hadoop YARN ................................. SUCCESS [ 0.052 s] +[INFO] Apache Hadoop YARN API ............................. SUCCESS [ 15.454 s] +[INFO] Apache Hadoop YARN Common .......................... SUCCESS [ 27.587 s] +[INFO] Apache Hadoop YARN Server .......................... SUCCESS [ 0.045 s] +[INFO] Apache Hadoop YARN Server Common ................... SUCCESS [ 16.038 s] +[INFO] Apache Hadoop YARN ApplicationHistoryService ....... SUCCESS [ 5.012 s] +[INFO] Apache Hadoop YARN Timeline Service ................ SUCCESS [ 3.239 s] +[INFO] Apache Hadoop YARN Web Proxy ....................... SUCCESS [ 2.122 s] +[INFO] Apache Hadoop YARN ResourceManager ................. SUCCESS [ 29.966 s] +[INFO] Apache Hadoop YARN NodeManager ..................... SUCCESS [ 25.820 s] +[INFO] Apache Hadoop YARN Server Tests .................... SUCCESS [ 1.488 s] +[INFO] Apache Hadoop YARN Client .......................... SUCCESS [ 4.974 s] +[INFO] Apache Hadoop MapReduce Client ..................... SUCCESS [ 0.593 s] +[INFO] Apache Hadoop MapReduce Core ....................... SUCCESS [ 11.157 s] +[INFO] Apache Hadoop MapReduce Common ..................... SUCCESS [ 3.654 s] +[INFO] Apache Hadoop MapReduce Shuffle .................... SUCCESS [ 3.475 s] +[INFO] Apache Hadoop MapReduce App ........................ SUCCESS [ 5.335 s] +[INFO] Apache Hadoop MapReduce HistoryServer .............. SUCCESS [ 3.995 s] +[INFO] Apache Hadoop MapReduce JobClient .................. SUCCESS [ 6.776 s] +[INFO] Apache Hadoop Distributed Copy ..................... SUCCESS [ 2.958 s] +[INFO] Apache Hadoop Mini-Cluster ......................... SUCCESS [ 0.903 s] +[INFO] Apache Hadoop Federation Balance ................... SUCCESS [ 1.683 s] +[INFO] Apache Hadoop HDFS-RBF ............................. SUCCESS [ 10.150 s] +[INFO] Apache Hadoop HDFS Project ......................... SUCCESS [ 0.042 s] +[INFO] Apache Hadoop YARN SharedCacheManager .............. SUCCESS [ 1.171 s] +[INFO] Apache Hadoop YARN Timeline Plugin Storage ......... SUCCESS [ 1.375 s] +[INFO] Apache Hadoop YARN TimelineService HBase Backend ... SUCCESS [ 0.044 s] +[INFO] Apache Hadoop YARN TimelineService HBase Common .... SUCCESS [ 9.957 s] +[INFO] Apache Hadoop YARN TimelineService HBase Client .... SUCCESS [ 21.167 s] +[INFO] Apache Hadoop YARN TimelineService HBase Servers ... SUCCESS [ 0.044 s] +[INFO] Apache Hadoop YARN TimelineService HBase Server 1.7 SUCCESS [ 2.516 s] +[INFO] Apache Hadoop YARN TimelineService HBase tests ..... SUCCESS [ 20.933 s] +[INFO] Apache Hadoop YARN Router .......................... SUCCESS [ 4.274 s] +[INFO] Apache Hadoop YARN TimelineService DocumentStore ... SUCCESS [ 16.551 s] +[INFO] Apache Hadoop YARN GlobalPolicyGenerator ........... SUCCESS [ 2.509 s] +[INFO] Apache Hadoop YARN Applications .................... SUCCESS [ 0.042 s] +[INFO] Apache Hadoop YARN DistributedShell ................ SUCCESS [ 1.558 s] +[INFO] Apache Hadoop YARN Unmanaged Am Launcher ........... SUCCESS [ 0.833 s] +[INFO] Apache Hadoop YARN Services ........................ SUCCESS [ 0.038 s] +[INFO] Apache Hadoop YARN Services Core ................... SUCCESS [ 5.323 s] +[INFO] Apache Hadoop YARN Services API .................... SUCCESS [ 1.736 s] +[INFO] Apache Hadoop YARN Application Catalog ............. SUCCESS [ 0.040 s] +[INFO] Apache Hadoop YARN Application Catalog Webapp ...... SUCCESS [01:30 min] +[INFO] Apache Hadoop YARN Application Catalog Docker Image SUCCESS [ 0.073 s] +[INFO] Apache Hadoop YARN Application MaWo ................ SUCCESS [ 0.054 s] +[INFO] Apache Hadoop YARN Application MaWo Core ........... SUCCESS [ 1.153 s] +[INFO] Apache Hadoop YARN Site ............................ SUCCESS [ 0.054 s] +[INFO] Apache Hadoop YARN Registry ........................ SUCCESS [ 0.563 s] +[INFO] Apache Hadoop YARN UI .............................. SUCCESS [ 0.357 s] +[INFO] Apache Hadoop YARN CSI ............................. SUCCESS [ 21.231 s] +[INFO] Apache Hadoop YARN Project ......................... SUCCESS [ 0.695 s] +[INFO] Apache Hadoop MapReduce HistoryServer Plugins ...... SUCCESS [ 0.859 s] +[INFO] Apache Hadoop MapReduce NativeTask ................. SUCCESS [ 2.120 s] +[INFO] Apache Hadoop MapReduce Uploader ................... SUCCESS [ 1.467 s] +[INFO] Apache Hadoop MapReduce Examples ................... SUCCESS [ 2.022 s] +[INFO] Apache Hadoop MapReduce ............................ SUCCESS [ 0.783 s] +[INFO] Apache Hadoop MapReduce Streaming .................. SUCCESS [ 3.502 s] +[INFO] Apache Hadoop Client Aggregator .................... SUCCESS [ 0.872 s] +[INFO] Apache Hadoop Dynamometer Workload Simulator ....... SUCCESS [ 1.504 s] +[INFO] Apache Hadoop Dynamometer Cluster Simulator ........ SUCCESS [ 1.659 s] +[INFO] Apache Hadoop Dynamometer Block Listing Generator .. SUCCESS [ 1.456 s] +[INFO] Apache Hadoop Dynamometer Dist ..................... SUCCESS [ 1.242 s] +[INFO] Apache Hadoop Dynamometer .......................... SUCCESS [ 0.040 s] +[INFO] Apache Hadoop Archives ............................. SUCCESS [ 0.948 s] +[INFO] Apache Hadoop Archive Logs ......................... SUCCESS [ 0.978 s] +[INFO] Apache Hadoop Rumen ................................ SUCCESS [ 2.024 s] +[INFO] Apache Hadoop Gridmix .............................. SUCCESS [ 1.962 s] +[INFO] Apache Hadoop Data Join ............................ SUCCESS [ 0.963 s] +[INFO] Apache Hadoop Extras ............................... SUCCESS [ 1.132 s] +[INFO] Apache Hadoop Pipes ................................ SUCCESS [ 0.039 s] +[INFO] Apache Hadoop Amazon Web Services support .......... SUCCESS [ 16.110 s] +[INFO] Apache Hadoop Kafka Library support ................ SUCCESS [ 2.281 s] +[INFO] Apache Hadoop Azure support ........................ SUCCESS [ 8.403 s] +[INFO] Apache Hadoop Aliyun OSS support ................... SUCCESS [ 6.307 s] +[INFO] Apache Hadoop Scheduler Load Simulator ............. SUCCESS [ 2.002 s] +[INFO] Apache Hadoop Resource Estimator Service ........... SUCCESS [ 2.300 s] +[INFO] Apache Hadoop Azure Data Lake support .............. SUCCESS [ 2.248 s] +[INFO] Apache Hadoop Image Generation Tool ................ SUCCESS [ 1.332 s] +[INFO] Apache Hadoop Tools Dist ........................... SUCCESS [ 0.596 s] +[INFO] Apache Hadoop OpenStack support .................... SUCCESS [ 0.049 s] +[INFO] Apache Hadoop Common Benchmark ..................... FAILURE [ 2.949 s] +[INFO] Apache Hadoop Tools ................................ SUCCESS [ 0.039 s] +[INFO] Apache Hadoop Client API ........................... SUCCESS [04:31 min] +[INFO] Apache Hadoop Client Runtime ....................... SUCCESS [04:55 min] +[INFO] Apache Hadoop Client Packaging Invariants .......... FAILURE [ 0.197 s] +[INFO] Apache Hadoop Client Test Minicluster .............. SUCCESS [08:43 min] +[INFO] Apache Hadoop Client Packaging Invariants for Test . FAILURE [ 0.115 s] +[INFO] Apache Hadoop Client Packaging Integration Tests ... SUCCESS [ 1.206 s] +[INFO] Apache Hadoop Distribution ......................... SUCCESS [ 0.304 s] +[INFO] Apache Hadoop Client Modules ....................... SUCCESS [ 0.042 s] +[INFO] Apache Hadoop Tencent COS Support .................. SUCCESS [ 1.993 s] +[INFO] Apache Hadoop OBS support .......................... FAILURE [ 6.322 s] +[INFO] Apache Hadoop Cloud Storage ........................ SUCCESS [ 1.423 s] +[INFO] Apache Hadoop Cloud Storage Project ................ SUCCESS [ 0.039 s] +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD FAILURE +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 31:50 min +[INFO] Finished at: 2024-08-14T06:26:40Z +[INFO] ------------------------------------------------------------------------ +``` +
+ +### 7.3 Bare metal versus containerized deployments + +WWASABI was tested on a bare metal machine. Fundamentally, there are no limitations to running WASABI in a containerized environment. However, there are known issues related to the Hadoop and HBase benchmarks used to evaluate WASABI in our [paper](https://bastoica.github.io/files/papers/2024_sosp_wasabi.pdf). + +In short, some Hadoop and HBase tests require access to a non-virtualized, physical network. Without this, users might encounter errors such as +``` +ERROR regionserver.HRegionServer: Master passed us a different hostname to use; was=grimlock, but now=169.254.3.1 +``` +These errors occur due to a hostname-to-IP mismatch in the network setup of your system, not because of an issue with WASABI. The likely cause is a misconfigured `/etc/hosts` file, multiple network interfaces on your machine, or running our tool in a containerized environment (e.g., docker). diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_env.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_env.py new file mode 100644 index 00000000..de77f959 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_env.py @@ -0,0 +1,71 @@ +#!/usr/bin/env python3 +import os +import sys +import shutil +import subprocess +from pathlib import Path + +HOME = Path.home() +REPO_DIR = HOME / "sosp24-ae" / "wasabi" +EXPECTED_REMOTE_SUBSTR = "github.com/bastoica/wasabi" +EXPECTED_BRANCH = "sosp24-ae" +EXPECTED_WASABI_ROOT = str(REPO_DIR) +EXPECTED_JAVA_HOME = "/usr/lib/jvm/java-8-openjdk-amd64/jre" + +PREREQS = ["tree", "mvn", "gradle", "ant", "python3", "java", "git"] + +def repo_check(): + # path exists + if not REPO_DIR.exists(): + return False, "repo path missing" + # git repo + r = subprocess.run(["git", "-C", str(REPO_DIR), "rev-parse", "--is-inside-work-tree"], + stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + if r.returncode != 0 or r.stdout.strip() != "true": + return False, "not a git repo" + # correct branch + r = subprocess.run(["git", "-C", str(REPO_DIR), "rev-parse", "--abbrev-ref", "HEAD"], + stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + if r.returncode != 0 or r.stdout.strip() != EXPECTED_BRANCH: + return False, f"wrong branch (got '{(r.stdout or '').strip()}')" + # correct remote + r = subprocess.run(["git", "-C", str(REPO_DIR), "remote", "-v"], + stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + if r.returncode != 0 or EXPECTED_REMOTE_SUBSTR not in r.stdout: + return False, "remote not pointing to bastoica/wasabi" + return True, "" + +def prereqs_check(): + missing = [cmd for cmd in PREREQS if shutil.which(cmd) is None] + if missing: + return False, f"missing: {', '.join(missing)}" + return True, "" + +def paths_check(): + wasabi_root = os.environ.get("WASABI_ROOT_DIR", "") + if not (wasabi_root == EXPECTED_WASABI_ROOT and Path(wasabi_root).exists()): + return False, "WASABI_ROOT_DIR incorrect" + java_home = os.environ.get("JAVA_HOME", "") + if not (java_home == EXPECTED_JAVA_HOME and Path(java_home).exists()): + return False, "JAVA_HOME incorrect" + return True, "" + +def main(): + results = [] + ok, why = repo_check() + print(f"Repository: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") + results.append(ok) + + ok, why = prereqs_check() + print(f"Prerequisites: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") + results.append(ok) + + ok, why = paths_check() + print(f"Paths: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") + results.append(ok) + + sys.exit(0 if all(results) else 1) + +if __name__ == "__main__": + main() + diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_bug.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_bug.py new file mode 100644 index 00000000..26b41e79 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_bug.py @@ -0,0 +1,140 @@ +#!/usr/bin/env python3 +import os +import sys +import subprocess +from pathlib import Path +from collections import deque +from typing import List, Tuple, Optional + +# ---------------- Configuration ---------------- +TIMEOUT = 60 * 60 # seconds; adjust if your tests take longer + +HADOOP_DIR = Path.home() / "sosp24-ae" / "benchmarks" / "hadoop" +CONFIG_FILE = Path.home() / "sosp24-ae" / "wasabi" / "wasabi-testing" / "config" / "hadoop" / "example.conf" +TEST_NAME = "TestFSEditLogLoader" + +ERROR_PATTERN = "NullPointerException" +BEFORE_CONTEXT = 2 +AFTER_CONTEXT = 10 +# ------------------------------------------------ + + +def run_command_with_timeout(cmd: List[str], dir_path: str): + """ + Run a command with a timeout of {TIMEOUT} seconds. + + Parameters: + cmd (list): The command to run as a list of arguments. + + Returns: + subprocess.CompletedProcess | None: The result of the command execution, or None if timed out. + """ + try: + # capture_output=True -> stdout/stderr are bytes; we decode later + result = subprocess.run(cmd, cwd=dir_path, shell=False, capture_output=True, timeout=TIMEOUT) + return result + except subprocess.TimeoutExpired: + return None + + +def build_maven_surefire_cmd(config_file: Path, test_name: str) -> List[str]: + """Construct the surefire command exactly as in the README (without tee/log).""" + return [ + "mvn", "surefire:test", + "-fn", "-B", + f"-DconfigFile={str(config_file)}", + f"-Dtest={test_name}", + ] + + +def decode_output(cp: subprocess.CompletedProcess) -> List[str]: + """Decode combined stdout+stderr to a list of text lines (no trailing newlines).""" + # Combine, prefer preserving original order? We can concatenate; Maven lines are mostly on stdout. + stdout = cp.stdout or b"" + stderr = cp.stderr or b"" + text = stdout + b"\n" + stderr + return text.decode(errors="replace").splitlines() + + +def scan_lines_for_pattern( + lines: List[str], + pattern: str, + before_ctx: int, + after_ctx: int +) -> Tuple[bool, List[str]]: + """ + Scan lines line-by-line for `pattern`, returning (found, context_block). + + Context block emulates `grep -B{before_ctx} -A{after_ctx}` for the *first* match. + """ + before = deque(maxlen=before_ctx) + after_remaining = 0 + context: List[str] = [] + + for idx, line in enumerate(lines): + if after_remaining > 0: + context.append(line) + after_remaining -= 1 + if after_remaining == 0: + break # done collecting after-context + + if pattern in line: + # capture before-context + context.extend(list(before)) + # the matched line itself (print just the pattern like grep, or the full line?) + # README's example shows just the word "NullPointerException" on its own line. + # To be faithful, insert the pattern token as its own line: + context.append(pattern) + # then after-context + after_remaining = after_ctx + + before.append(line) + + found = any(pattern == l for l in context) + return found, context + + +def validate_paths() -> Optional[str]: + """Ensure required paths exist; return error message if not.""" + if not HADOOP_DIR.is_dir(): + return f"Hadoop directory not found: {HADOOP_DIR}" + if not CONFIG_FILE.is_file(): + return f"Config file not found: {CONFIG_FILE}" + return None + + +def main(): + # Basic path sanity + path_err = validate_paths() + if path_err: + print(f"RunCheck: FAIL - {path_err}") + sys.exit(2) + + cmd = build_maven_surefire_cmd(CONFIG_FILE, TEST_NAME) + + # Execute with timeout, capture output in-memory (no log file) + result = run_command_with_timeout(cmd, str(HADOOP_DIR)) + if result is None: + print(f"RunCheck: FAIL - command timed out after {TIMEOUT} seconds") + sys.exit(2) + + # Decode and scan line-by-line (no saved logfile) + lines = decode_output(result) + found, ctx = scan_lines_for_pattern(lines, ERROR_PATTERN, BEFORE_CONTEXT, AFTER_CONTEXT) + + if found: + print("RunCheck: PASS - NullPointerException detected") + if BEFORE_CONTEXT or AFTER_CONTEXT: + print("---- Context ----") + for l in ctx: + print(l) + print("---- End Context ----") + sys.exit(0) + else: + print("RunCheck: FAIL - NullPointerException NOT detected") + sys.exit(1) + + +if __name__ == "__main__": + main() + diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_weaving.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_weaving.py new file mode 100644 index 00000000..9fc7d9a7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_weaving.py @@ -0,0 +1,105 @@ +#!/usr/bin/env python3 +import sys +import shlex +import subprocess +from pathlib import Path + +# --- Config: adjust if your tree lives elsewhere --- +HADOOP_DIR = Path.home() / "sosp24-ae" / "benchmarks" / "hadoop" +MAX_CLASS_DIRS = 200 # safety cap; 0 means no cap +MAX_CLASSES_PER_DIR = 2000 # safety cap per classes/ dir; 0 means no cap +ASPECTJ_MARKERS = [ + # Synthetic members commonly injected by ajc + "ajc$preClinit", + "ajc$initFailureCause", + "ajc$tjp", # JoinPoint static part fields + "ajc$before$", # woven advice methods + "ajc$after$", + "ajc$around$", + "ajc$interField$", # inter-type field stubs + "ajc$interMethod$", # inter-type method stubs + + # Runtime references that appear in woven bytecode + "org.aspectj.runtime.reflect.Factory", + "org.aspectj.runtime.internal.AroundClosure", + "org.aspectj.lang.JoinPoint", + "org.aspectj.lang.JoinPoint$StaticPart", + "org.aspectj.lang.ProceedingJoinPoint", + "org.aspectj.lang.Signature", + "org.aspectj.lang.NoAspectBoundException", +] +# --------------------------------------------------- + +def run(cmd): + """Run a shell-safe command; return (rc, stdout, stderr).""" + try: + cp = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + return cp.returncode, (cp.stdout or "").strip(), (cp.stderr or "").strip() + except FileNotFoundError as e: + return 127, "", str(e) + +def find_classes_dirs(root: Path): + """Find all target/classes directories in the build tree.""" + cmd = ["bash", "-lc", f"shopt -s nullglob; find {shlex.quote(str(root))} -type d -path '*/target/classes' | sort"] + rc, out, err = run(cmd) + if rc != 0: + return [], f"find failed: {err or out}" + dirs = [Path(p) for p in out.splitlines() if p] + return dirs, "" + +def iter_class_files(classes_dir: Path, limit: int): + """Yield up to `limit` .class files from a classes/ directory (recursive).""" + # Use find for speed and to avoid Python recursion cost + q = shlex.quote(str(classes_dir)) + cmd = ["bash", "-lc", f"shopt -s nullglob; find {q} -type f -name '*.class' | sort"] + rc, out, err = run(cmd) + if rc != 0 or not out: + return [] + files = [Path(p) for p in out.splitlines() if p] + if limit and len(files) > limit: + # sample evenly + step = max(len(files) // limit, 1) + files = files[::step][:limit] + return files + +def classfile_has_aspect_markers(class_path: Path): + """ + Stream a .class through `strings` and search for AspectJ markers. + Return (bool, matched_marker_or_empty). + """ + pattern = "|".join(ASPECTJ_MARKERS) + cmd = ["bash", "-lc", f"strings {shlex.quote(str(class_path))} | grep -a -E '{pattern}' -m 1"] + rc, out, err = run(cmd) + if rc == 0 and out: + # Return the first matched marker token if possible + matched = next((m for m in ASPECTJ_MARKERS if m in out), out) + return True, matched + return False, "" + +def main(): + if not HADOOP_DIR.is_dir(): + print(f"Weaving (class scan): FAIL - Hadoop directory not found: {HADOOP_DIR}") + sys.exit(2) + + class_dirs, err = find_classes_dirs(HADOOP_DIR) + if not class_dirs: + print(f"Weaving (class scan): FAIL - no target/classes directories found under {HADOOP_DIR}") + sys.exit(1) + + if MAX_CLASS_DIRS and len(class_dirs) > MAX_CLASS_DIRS: + class_dirs = class_dirs[:MAX_CLASS_DIRS] + + for cdir in class_dirs: + class_files = iter_class_files(cdir, MAX_CLASSES_PER_DIR) + for cf in class_files: + ok, marker = classfile_has_aspect_markers(cf) + if ok: + print(f"Weaving (class scan): PASS - marker '{marker}' in {cf}") + sys.exit(0) + + print("Weaving (class scan): FAIL - scanned .class files but found no AspectJ markers (ajc$…/org.aspectj…)") + sys.exit(1) + +if __name__ == "__main__": + main() + diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_wasabi_build.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_wasabi_build.py new file mode 100644 index 00000000..de23fa48 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_wasabi_build.py @@ -0,0 +1,169 @@ +#!/usr/bin/env python3 +import sys +import os +from pathlib import Path +import xml.etree.ElementTree as ET +import fnmatch + +BASE = Path.home() / "sosp24-ae" / "wasabi" / "wasabi-testing" +M2 = Path.home() / ".m2" / "repository" + +# XML namespace-safe helper +def xget(elem, tag): + # Handle tags with or without default namespace + if elem is None: + return None + # Try direct + v = elem.find(tag) + if v is not None and v.text: + return v.text.strip() + # Try any namespace + for child in elem: + t = child.tag.split('}', 1)[-1] # strip "{ns}" + if t == tag: + return (child.text or "").strip() + return None + +def parse_pom(pom_path, top_defaults=None): + """ + Returns dict with keys: dir, pom, groupId, artifactId, version, packaging + Inherits groupId/version from parent or provided top_defaults. + """ + try: + tree = ET.parse(pom_path) + root = tree.getroot() + except Exception as e: + return {"dir": pom_path.parent, "pom": pom_path, "error": f"XML parse error: {e}"} + + # Maven POM default packaging is "jar" + artifactId = xget(root, "artifactId") + groupId = xget(root, "groupId") + version = xget(root, "version") + packaging = xget(root, "packaging") or "jar" + + parent = root.find("parent") + if parent is not None: + p_groupId = xget(parent, "groupId") + p_version = xget(parent, "version") + # artifactId of parent is irrelevant for inheritance here + if not groupId and p_groupId: + groupId = p_groupId + if not version and p_version: + version = p_version + + if top_defaults: + groupId = groupId or top_defaults.get("groupId") + version = version or top_defaults.get("version") + + return { + "dir": pom_path.parent, + "pom": pom_path, + "groupId": groupId, + "artifactId": artifactId, + "version": version, + "packaging": packaging + } + +def find_poms(base): + return sorted(base.rglob("pom.xml")) + +def repo_path(groupId, artifactId, version): + parts = groupId.split(".") + return M2.joinpath(*parts, artifactId, version) + +def has_target_jar(module): + if module["packaging"] == "pom": + return True # no jar expected + target = module["dir"] / "target" + if not target.is_dir(): + return False + # look for artifactId-version*.jar (allow classifiers, shaded, etc.) + pattern = f"{module['artifactId']}-{module['version']}*.jar" + return any(fnmatch.fnmatch(p.name, pattern) for p in target.glob("*.jar")) + +def has_installed_artifact(module): + rp = repo_path(module["groupId"], module["artifactId"], module["version"]) + if module["packaging"] == "pom": + return (rp / f"{module['artifactId']}-{module['version']}.pom").is_file() + # prefer exact jar; allow classifiers + return any(p.suffix == ".jar" and fnmatch.fnmatch( + p.name, f"{module['artifactId']}-{module['version']}*.jar") + for p in rp.glob("*.jar")) + +def main(): + # Basic presence + if not BASE.exists(): + print("Build: FAIL - base project directory not found") + sys.exit(1) + + poms = find_poms(BASE) + if not poms: + print("Build: FAIL - no pom.xml files found under wasabi-testing") + sys.exit(1) + + # Establish top-level defaults (groupId/version) from the root POM (closest to BASE) + root_pom = BASE / "pom.xml" + top_defaults = {} + if root_pom.exists(): + root_mod = parse_pom(root_pom) + if not root_mod.get("error"): + if root_mod.get("groupId"): + top_defaults["groupId"] = root_mod["groupId"] + if root_mod.get("version"): + top_defaults["version"] = root_mod["version"] + + modules = [] + errors = [] + for pom in poms: + m = parse_pom(pom, top_defaults=top_defaults) + if m.get("error"): + errors.append((pom, m["error"])) + continue + # Sanity: must have these + if not all([m.get("artifactId"), m.get("groupId"), m.get("version")]): + errors.append((pom, "missing groupId/artifactId/version after inheritance")) + else: + modules.append(m) + + if errors: + # Parsing problems → cannot reliably assert build + print("Build: FAIL - POM parsing errors present") + for pom, err in errors[:5]: + print(f" - {pom}: {err}") + if len(errors) > 5: + print(f" ... {len(errors)-5} more") + sys.exit(1) + + # Evaluate modules + missing_targets = [] + missing_installs = [] + + for m in modules: + # skip aggregator-only modules that are 'pom' packaging for target check + if not has_target_jar(m): + missing_targets.append(str(m["dir"])) + if not has_installed_artifact(m): + missing_installs.append(f"{m['groupId']}:{m['artifactId']}:{m['version']}") + + # Decide overall result + if missing_targets or missing_installs: + print("Build: FAIL") + if missing_targets: + print(" Missing built JARs in target/:") + for d in missing_targets[:10]: + print(f" - {d}") + if len(missing_targets) > 10: + print(f" ... {len(missing_targets)-10} more") + if missing_installs: + print(" Missing artifacts in local ~/.m2 repository:") + for gav in missing_installs[:10]: + print(f" - {gav}") + if len(missing_installs) > 10: + print(f" ... {len(missing_installs)-10} more") + sys.exit(1) + else: + print("Build: PASS") + sys.exit(0) + +if __name__ == "__main__": + main() diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/checker.log b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/checker.log new file mode 100644 index 00000000..1584fef8 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/checker.log @@ -0,0 +1,305 @@ +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-cos/target/classes/org/apache/hadoop/fs/cosn/CosNFileReadTask.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-cos/target/classes/org/apache/hadoop/fs/cosn/CosNativeFileSystemStore.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-huaweicloud/target/classes/org/apache/hadoop/fs/obs/OBSCommonUtils.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-huaweicloud/target/classes/org/apache/hadoop/fs/obs/OBSFileSystem.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-huaweicloud/target/classes/org/apache/hadoop/fs/obs/OBSInputStream.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-huaweicloud/target/classes/org/apache/hadoop/fs/obs/OBSObjectBucketUtils.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-huaweicloud/target/classes/org/apache/hadoop/fs/obs/OBSPosixBucketUtils.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/crypto/key/kms/LoadBalancingKMSClientProvider.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/CachingGetSpaceUsed$RefreshThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/FSInputChecker.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/FileUtil.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/TrashPolicyDefault$Emptier.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/TrashPolicyDefault.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/impl/prefetch/CachingBlockManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/impl/prefetch/Retryer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/shell/SetReplication.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/shell/Tail.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/shell/Truncate.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ha/ActiveStandbyElector.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ha/HealthMonitor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ha/ZKFailoverController.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/http/HttpServer2$Builder.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/http/HttpServer2.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/io/retry/AsyncCallHandler$AsyncCallQueue$Processor$1.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/io/retry/RetryInvocationHandler$Call.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/CallQueueManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Client$Connection$1.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Client$Connection.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Client.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/DecayRpcScheduler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/ExternalCall.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/RPC.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/RetryCache.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Server$ConnectionManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Server$Listener.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Server$Responder.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Server.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/metrics2/impl/MetricsSinkAdapter.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/metrics2/impl/MetricsSystemImpl.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/metrics2/impl/SinkQueue.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/metrics2/sink/RollingFileSystemSink.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/net/unix/DomainSocket.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-minikdc/target/classes/org/apache/hadoop/minikdc/MiniKdc.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-registry/target/classes/org/apache/hadoop/registry/server/dns/RegistryDNS.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DFSClient.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DFSInotifyEventInputStream.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DFSInputStream.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DFSOutputStream.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DFSStripedInputStream.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DFSStripedOutputStream.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DataStreamer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DeadNodeDetector.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/FileChecksumHelper$ReplicatedFileChecksumComputer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/FileChecksumHelper$StripedFileNonStripedChecksumComputer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/LocatedBlocksRefresher.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/PeerCache.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/client/impl/LeaseRenewer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/protocol/CacheDirectiveIterator.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-nfs/target/classes/org/apache/hadoop/hdfs/nfs/nfs3/OpenFileCtx$Dumper.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-nfs/target/classes/org/apache/hadoop/hdfs/nfs/nfs3/OpenFileCtx.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-nfs/target/classes/org/apache/hadoop/hdfs/nfs/nfs3/OpenFileCtxCache$StreamMonitor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-rbf/target/classes/org/apache/hadoop/hdfs/rbfbalance/RouterFedBalance.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/qjournal/client/QuorumCall.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/qjournal/server/JournalNodeSyncer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/balancer/Balancer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/balancer/Dispatcher$Source.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/balancer/Dispatcher.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/balancer/KeyManager$BlockKeyUpdater.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/BlockManager$MarkedDeleteBlockScrubber.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/BlockManager$RedundancyMonitor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/BlockManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/BlockManagerSafeMode$SafeModeMonitor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/DatanodeAdminDefaultMonitor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/DatanodeManager$1.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/HeartbeatManager$Monitor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/PendingReconstructionBlocks$PendingReconstructionMonitor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/BPServiceActor$LifelineSender.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/BPServiceActor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/BlockReceiver$PacketResponder.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/BlockReceiver.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DataNode$5.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DataNode.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DataXceiver.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DataXceiverServer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DirectoryScanner$ReportCompiler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DirectoryScanner.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DiskBalancer$DiskBalancerMover.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/IncrementalBlockReportManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/VolumeScanner.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/checker/AbstractFuture.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/checker/TimeoutFuture.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/FsDatasetCache$UncachingTask.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/FsDatasetCache.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/FsDatasetImpl$LazyWriter.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/FsVolumeList.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/metrics/DataNodeDiskMetrics$1.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/mover/Mover.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/BackupImage.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/BackupNode.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/Checkpointer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ContentSummaryComputationContext.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSDirEncryptionZoneOp$EDEKCacheLoader.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSEditLog.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSEditLogAsync$SyncEdit.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSEditLogAsync.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSNamesystem$LazyPersistFileScrubber.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSNamesystem$NameNodeEditLogRoller.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSNamesystem$NameNodeResourceMonitor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FsImageValidation.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/INodeReferenceValidation.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/LeaseManager$Monitor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/NamenodeFsck.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ReencryptionHandler$ReencryptionPendingInodeIdCollector.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ReencryptionHandler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ReencryptionUpdater.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/SecondaryNameNode.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ha/EditLogTailer$MultipleNameNodeProxy.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ha/EditLogTailer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ha/StandbyCheckpointer$CheckpointerThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapred/YarnChild.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/jobhistory/JobHistoryEventHandler$MetaInfo.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/JobEndNotifier.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/MRAppMaster.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/TaskHeartbeatHandler$PingChecker.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/commit/CommitterEventHandler$EventProcessor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/commit/CommitterEventHandler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/job/impl/JobImpl$TaskCompletedTransition.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/local/LocalContainerAllocator.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/rm/RMCommunicator$AllocatorRunnable.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/rm/RMCommunicator.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/IndexCache.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/JobClient.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/JobEndNotifier.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/StatisticsCollector.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/Task$TaskReporter$DiskLimitCheck.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/Task$TaskReporter.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/Task.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/pipes/OutputHandler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/Job.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/lib/chain/Chain$ChainBlockingQueue.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/lib/jobcontrol/JobControl.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/lib/output/FileOutputCommitter.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/task/reduce/EventFetcher.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/task/reduce/Fetcher.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/task/reduce/MergeThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/task/reduce/ShuffleSchedulerImpl.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/tools/CLI.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/util/ProcessTree.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/target/classes/org/apache/hadoop/mapreduce/v2/hs/HistoryFileManager$HistoryFileInfo.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/target/classes/org/apache/hadoop/mapreduce/v2/hs/HistoryFileManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/target/classes/org/apache/hadoop/mapred/ClientServiceDelegate.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/target/classes/org/apache/hadoop/mapred/YARNRunner.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-nativetask/target/classes/org/apache/hadoop/mapred/nativetask/StatusReportChecker.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-uploader/target/classes/org/apache/hadoop/mapred/uploader/FrameworkUploader.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-examples/target/classes/org/apache/hadoop/examples/pi/DistSum$MixMachine.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-examples/target/classes/org/apache/hadoop/examples/pi/Util.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-aliyun/target/classes/org/apache/hadoop/fs/aliyun/oss/AliyunOSSFileReaderTask.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-aws/target/classes/org/apache/hadoop/fs/s3a/Invoker.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/AzureNativeFileSystemStore.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/BlockBlobAppendStream.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/ClientThrottlingAnalyzer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/PageBlobOutputStream.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/SelfRenewingLease$Renewer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/SelfRenewingLease.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/SelfThrottlingIntercept.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/WasbRemoteCallHelper.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/metrics/BandwidthGaugeUpdater$UploadBandwidthUpdater.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azurebfs/oauth2/AzureADAuthenticator.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azurebfs/oauth2/CustomTokenProviderAdapter.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azurebfs/services/AbfsClient.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azurebfs/services/AbfsClientThrottlingAnalyzer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azurebfs/services/AbfsRestOperation.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azurebfs/services/ReadBufferManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-benchmark/target/classes/org/apache/hadoop/benchmark/VectoredReadBenchmark$Joiner.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-datajoin/target/classes/org/apache/hadoop/contrib/utils/join/DataJoinJob.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-distcp/target/classes/org/apache/hadoop/tools/SimpleCopyListing$FileStatusProcessor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-distcp/target/classes/org/apache/hadoop/tools/SimpleCopyListing$TraverseDirectory.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-distcp/target/classes/org/apache/hadoop/tools/util/RetriableCommand.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-distcp/target/classes/org/apache/hadoop/tools/util/ThrottledInputStream.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/target/classes/org/apache/hadoop/tools/dynamometer/ApplicationMaster.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/target/classes/org/apache/hadoop/tools/dynamometer/Client.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/target/classes/org/apache/hadoop/tools/dynamometer/DynoInfraUtils.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/target/classes/org/apache/hadoop/tools/dynamometer/SimulatedDataNodes.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-workload/target/classes/org/apache/hadoop/tools/dynamometer/workloadgenerator/CreateFileMapper.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-workload/target/classes/org/apache/hadoop/tools/dynamometer/workloadgenerator/audit/AuditReplayMapper.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-workload/target/classes/org/apache/hadoop/tools/dynamometer/workloadgenerator/audit/AuditReplayThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-federation-balance/target/classes/org/apache/hadoop/tools/fedbalance/FedBalance.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-federation-balance/target/classes/org/apache/hadoop/tools/fedbalance/procedure/BalanceJob.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/Gridmix.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/JobMonitor$MonitorThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/JobSubmitter$SubmitTask.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/LoadJob$ResourceUsageMatcherRunner.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/LoadJob$StatusReporter.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/SleepJob$SleepMapper.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/SleepJob$SleepReducer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/StressJobFactory$StressReaderThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/emulators/resourceusage/CumulativeCpuUsageEmulatorPlugin.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-sls/target/classes/org/apache/hadoop/yarn/sls/NMRunner.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/target/classes/org/apache/hadoop/yarn/applications/distributedshell/ApplicationMaster.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/target/classes/org/apache/hadoop/yarn/applications/distributedshell/Client.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-unmanaged-am-launcher/target/classes/org/apache/hadoop/yarn/applications/unmanagedamlauncher/UnmanagedAMLauncher.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/target/classes/org/apache/hadoop/yarn/service/ClientAMService$1.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/target/classes/org/apache/hadoop/yarn/service/ServiceScheduler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/target/classes/org/apache/hadoop/yarn/service/client/ServiceClient.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/target/classes/org/apache/hadoop/yarn/service/monitor/ComponentHealthThresholdMonitor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/target/classes/org/apache/hadoop/yarn/service/utils/ServiceApiUtil.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/target/classes/org/apache/hadoop/yarn/service/utils/ServiceUtils$ProcessTerminationHandler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/AMRMClient.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/ContainerShellWebSocket.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/async/AMRMClientAsync.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/async/impl/AMRMClientAsyncImpl$HeartbeatThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/impl/AMRMClientImpl.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/impl/ContainerManagementProtocolProxy.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/impl/YarnClientImpl.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/cli/LogsCLI$ClientConnectionRetry.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/cli/RMAdminCLI.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/cli/TopCLI.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/client/api/impl/FileSystemTimelineWriter$LogFDsCache.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/client/api/impl/TimelineConnector$TimelineClientConnectionRetry.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/client/api/impl/TimelineV2ClientImpl.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/event/AsyncDispatcher.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/logaggregation/AggregatedLogDeletionService.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController$FSAction.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/nodelabels/store/AbstractFSNodeStore.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/security/client/ClientToAMTokenSecretManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/util/AbstractLivelinessMonitor$PingChecker.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/util/AdHocLogDumper.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/util/Log4jWarningErrorMetricsAppender$ErrorAndWarningsCleanup.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/util/Log4jWarningErrorMetricsAppender.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/util/ProcfsBasedProcessTree.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/webapp/Dispatcher.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/webapp/WebApps$Builder.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-applicationhistoryservice/target/classes/org/apache/hadoop/yarn/server/timeline/LeveldbTimelineStore$EntityDeletionThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-applicationhistoryservice/target/classes/org/apache/hadoop/yarn/server/timeline/RollingLevelDBTimelineStore$EntityDeletionThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/target/classes/org/apache/hadoop/yarn/server/AMHeartbeatRequestHandler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/target/classes/org/apache/hadoop/yarn/server/AMRMClientRelayer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/target/classes/org/apache/hadoop/yarn/server/federation/retry/FederationActionRetry.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/target/classes/org/apache/hadoop/yarn/server/uam/UnmanagedApplicationManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/ContainerExecutor$DelayedProcessKiller.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/ContainerExecutor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/DeletionService.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/LocalDirsHandlerService.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/NodeResourceMonitorImpl$MonitoringThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/NodeStatusUpdaterImpl$StatusUpdaterRunnable.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/amrmproxy/AMRMProxyTokenSecretManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/amrmproxy/FederationInterceptor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/AuxServices.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/ContainerManagerImpl.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/container/ContainerImpl$RetryFailureTransition$1.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/launcher/ContainerLaunch.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/linux/resources/CGroupElasticMemoryController.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/linux/resources/CGroupsHandlerImpl.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/linux/resources/DefaultOOMHandler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/linux/resources/gpu/GpuResourceAllocator.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/localizer/ContainerLocalizer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/logaggregation/AppLogAggregatorImpl.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/loghandler/NonAggregatingLogHandler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/monitor/ContainerMetrics.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/monitor/ContainersMonitorImpl$LogMonitorThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/monitor/ContainersMonitorImpl$MonitoringThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/resourceplugin/deviceframework/DeviceMappingManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/health/TimedHealthReporterService.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/logaggregation/tracker/NMLogAggregationStatusTracker.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/nodelabels/AbstractNodeDescriptorsProvider.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/recovery/NMLeveldbStateStoreService.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/util/CgroupsLCEResourcesHandler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/ActiveStandbyElectorBasedElectorService.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/CuratorBasedElectorService.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/DBManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/DecommissioningNodesWatcher.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/NodesListManager$CachedResolver.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/NodesListManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/ResourceManager$SchedulerEventDispatcher$EventProcessorMonitor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/metrics/TimelineServiceV1Publisher$PutEventThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/nodelabels/RMDelegatedNodeLabelsUpdater.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/preprocessor/SubmissionContextPreProcessor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/recovery/FileSystemRMStateStore$FSAction.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/recovery/ZKRMStateStore$VerifyActiveStatusThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/rmapp/attempt/RMAppAttemptImpl$1.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/AbstractYarnScheduler$UpdateThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/AbstractYarnScheduler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/activities/ActivitiesManager$1.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/activities/ActivitiesManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/CapacityScheduler$AsyncScheduleThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/CapacityScheduler.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/fair/AllocationFileLoaderService.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/fair/FSPreemptionThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/fair/FairScheduler$ContinuousSchedulingThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/AMRMTokenSecretManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/DelegationTokenRenewer$DelayedTokenRemovalRunnable.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/DelegationTokenRenewer$DelegationTokenCancelThread.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/DelegationTokenRenewer$DelegationTokenRenewerPoolTracker.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/DelegationTokenRenewer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/NMTokenSecretManagerInRM.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/RMContainerTokenSecretManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/volume/csi/VolumeManagerImpl.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-router/target/classes/org/apache/hadoop/yarn/server/router/clientrm/FederationClientInterceptor.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-sharedcachemanager/target/classes/org/apache/hadoop/yarn/server/sharedcachemanager/CleanerTask.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/target/classes/org/apache/hadoop/yarn/server/timelineservice/collector/NodeTimelineCollectorManager$CollectorTokenRenewer.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/target/classes/org/apache/hadoop/yarn/server/timelineservice/collector/NodeTimelineCollectorManager.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/target/classes/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/target/classes/org/apache/hadoop/yarn/server/timelineservice/collector/TimelineCollector.class +Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/target/classes/org/apache/hadoop/yarn/server/timelineservice/storage/FileSystemTimelineWriterImpl$FSAction.class +Weaving (class scan): FAIL - scanned .class files but found no AspectJ markers (ajc$…/org.aspectj…) diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_benchmark_prep.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_benchmark_prep.py new file mode 100644 index 00000000..32253df4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_benchmark_prep.py @@ -0,0 +1,162 @@ +#!/usr/bin/env python3 +import sys +import shlex +import argparse +import subprocess +from pathlib import Path + + +BENCH_ROOT = Path.home() / "sosp24-ae" / "benchmarks" +REPOS = { + "hadoop": ("https://github.com/apache/hadoop.git", "60867de"), + "hbase": ("https://github.com/apache/hbase.git", "89ca7f4"), + "hive": ("https://github.com/apache/hive.git", "e08a600"), +# "cassandra": ("https://github.com/apache/cassandra.git", "f0ad7ea"), +# "elasticsearch": ("https://github.com/elastic/elasticsearch.git", "5ce03f2"), +} + +ASPECTJ_MARKERS = [ + "ajc$preClinit", + "ajc$initFailureCause", + "ajc$tjp", + "ajc$before$", + "ajc$after$", + "ajc$around$", + "ajc$interField$", + "ajc$interMethod$", + "org.aspectj.runtime.reflect.Factory", + "org.aspectj.runtime.internal.AroundClosure", + "org.aspectj.lang.JoinPoint", + "org.aspectj.lang.JoinPoint$StaticPart", + "org.aspectj.lang.ProceedingJoinPoint", + "org.aspectj.lang.Signature", + "org.aspectj.lang.NoAspectBoundException", +] + +MAX_CLASS_DIRS = 200 +MAX_CLASSES_PER_DIR = 2000 + +SUCCESS_CODE = 0 +FAIL_CODE = 255 + +def run(cmd): + """ + Run a bash command given as argument. + """ + try: + cp = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + return cp.returncode, (cp.stdout or "").strip(), (cp.stderr or "").strip() + except FileNotFoundError as e: + return 127, "", str(e) + +def find_class_dirs(app_root: Path): + """ + Find directories that contain .class files. + """ + qroot = shlex.quote(str(app_root)) + cmd = [ + "bash", + "-lc", + ( + f"shopt -s nullglob; " + f"find {qroot} -type f -name '*.class' " + f"-not -path '*/.git/*' -not -path '*/.m2/*' -not -path '*/.gradle/*' " + f"-printf '%h\n' | sort -u" + ), + ] + rc, out, err = run(cmd) + if rc != 0: + return [], f"find failed: {err or out}" + dirs = [Path(p) for p in out.splitlines() if p] + return dirs, "" + +def iter_class_files(classes_dir: Path, limit: int): + """ + Iterate over .class files from a class directory, processing up to + a configurable number of files. + """ + q = shlex.quote(str(classes_dir)) + cmd = ["bash", "-lc", f"shopt -s nullglob; find {q} -type f -name '*.class' | sort"] + rc, out, err = run(cmd) + if rc != 0 or not out: + return [] + files = [Path(p) for p in out.splitlines() if p] + if limit and len(files) > limit: + step = max(len(files) // limit, 1) + files = files[::step][:limit] + return files + +def check_repo_commit(app: str, app_root: Path, expected_commit_prefix: str): + """ + Verify the repo at app_root is a git repo and HEAD matches an expected commit ID prefix. + """ + if not app_root.is_dir(): + return False, f"{app}: FAIL - directory not found: {app_root}" + + rc, out, err = run(["git", "-C", str(app_root), "rev-parse", "HEAD"]) + if rc != 0: + return False, f"{app}: FAIL - not a git repo or unreadable HEAD: {err or out}" + + head = (out or "").strip() + if head.startswith(expected_commit_prefix): + return True, f"{app}: PASS - commit {head[:12]} matches {expected_commit_prefix}" + else: + return False, f"{app}: FAIL - HEAD {head[:12]} != expected {expected_commit_prefix}*" + + +def classfile_has_aspect_markers(class_path: Path): + """ + Search through a decoded .class for AspectJ markers. + """ + pattern = "|".join(ASPECTJ_MARKERS) + cmd = ["bash", "-lc", f"strings {shlex.quote(str(class_path))} | grep -a -E '{pattern}' -m 1"] + rc, out, err = run(cmd) + if rc == 0 and out: + matched = next((m for m in ASPECTJ_MARKERS if m in out), out) + return True, matched + return False, "" + +def check_app_weaving(app: str, app_root: Path): + """ + Scan compiled .class files for AspectJ markers. + """ + if not app_root.is_dir(): + return False, f"{app}: FAIL - directory not found: {app_root}" + + class_dirs, err = find_class_dirs(app_root) + if err: + return False, f"{app}: FAIL - {err}" + if not class_dirs: + return False, f"{app}: FAIL - no compiled .class files found under {app_root}" + + dirs = class_dirs[:MAX_CLASS_DIRS] if (MAX_CLASS_DIRS and len(class_dirs) > MAX_CLASS_DIRS) else class_dirs + + for cdir in dirs: + for cf in iter_class_files(cdir, MAX_CLASSES_PER_DIR): + ok, marker = classfile_has_aspect_markers(cf) + if ok: + return True, f"{app}: PASS - marker '{marker}' in {cf}" + + return False, f"{app}: FAIL - scanned .class files but found no AspectJ markers" + + +def main(): + success = True + for app in REPOS: + app_root = BENCH_ROOT / app + + expected_commit = REPOS[app][1] + ok, msg = check_repo_commit(app, app_root, expected_commit) + print(msg) + success = success and ok + print(success) + + ok, msg = check_app_weaving(app, app_root) + print(msg) + success = success and ok + print(success) + + sys.exit(SUCCESS_CODE if success else FAIL_CODE) + +if __name__ == "__main__": + main() diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_env_setup.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_env_setup.py new file mode 100644 index 00000000..bf2da7e7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_env_setup.py @@ -0,0 +1,197 @@ +#!/usr/bin/env python3 +""" +Environment Setup Checker (configurable & pythonic) + +- Repository: branch/remote checks +- Prerequisites: driven by a declarative DEPENDENCIES table +- Paths: WASABI_ROOT_DIR and JAVA_HOME + +Change versions or add tools by editing DEPENDENCIES below. +""" +import os +import sys +import re +import shutil +import subprocess +from dataclasses import dataclass +from typing import Iterable, Optional, Tuple +from pathlib import Path + +# ---------------------- Constants ---------------------- +HOME = Path.home() +REPO_DIR = HOME / "sosp24-ae" / "wasabi" +EXPECTED_REMOTE_SUBSTR = "github.com/bastoica/wasabi" +EXPECTED_BRANCH = "sosp24-ae" +EXPECTED_WASABI_ROOT = str(REPO_DIR) +EXPECTED_JAVA_HOME = "/usr/lib/jvm/java-8-openjdk-amd64/jre" + +SUCCESS_CODE = 0 +FAIL_CODE = 255 + +VersionTuple = Tuple[int, ...] +@dataclass(frozen=True) +class Dependency: + name: str + binary: str + cmd: Optional[list] = None + parse_regex: Optional[str] = None + require: Optional[VersionTuple] = None + compare: Optional[str] = None + +DEPENDENCIES: list[Dependency] = [ + + Dependency( + name="git", binary="git" + ), + + Dependency( + name="maven", binary="mvn", + cmd=["mvn", "-v"], parse_regex=r"Apache Maven\s+([0-9.]+)", + require=(3, 6, 3), compare="gte", + ), + Dependency( + name="gradle", binary="gradle", + cmd=["gradle", "-v"], parse_regex=r"Gradle\s+([0-9.]+)", + require=(4, 4, 1), compare="gte", + ), + Dependency( + name="ant", binary="ant", + cmd=["ant", "-version"], parse_regex=r"version\s+([0-9.]+)", + require=(1, 10), compare="gte", + ), + Dependency( + name="python3", binary="python3", + cmd=["python3", "--version"], parse_regex=r"Python\s+([0-9.]+)", + require=(3, 10), compare="gte", + ), + Dependency( + name="java", binary="java", + cmd=["java", "-version"], parse_regex=r'version\s+"([^"]+)"', + require=(1, 8), compare="eq", + ), +] + +def run(cmd: Iterable[str]) -> Tuple[int, str, str]: + """ + Run a command and return (rc, stdout, stderr) tuple. + """ + try: + cp = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + return cp.returncode, cp.stdout or "", cp.stderr or "" + except FileNotFoundError: + return 127, "", "" + +def parse_version_tuple(text: str) -> VersionTuple: + """ + Extract the first version-like token from arbitrary text. + For example, for Java: '1.8.0_422' -> (1, 8, 0) + """ + m = re.search(r"(\d+(?:\.\d+){0,3})", text) + return tuple(int(x) for x in m.group(1).split(".")) if m else () + +def extract_version(text: str, pattern: str) -> Tuple[VersionTuple, str]: + """ + Apply regex pattern on a version string. + """ + m = re.search(pattern, text, re.I) + if not m: + return (), "unknown" + ver_str = m.group(1) + return parse_version_tuple(ver_str), ver_str + +def cmp_versions(found: VersionTuple, required: VersionTuple, mode: str) -> bool: + """ + Compare versions either to match exactly ('eq') + or the installed version is greather than the reference one ('gte'). + """ + if not found: + return False + f, r = list(found), list(required) + while len(f) < len(r): f.append(0) + while len(r) < len(f): r.append(0) + return (f == r) if mode == "eq" else (f >= r) + +def repo_check(): + if not REPO_DIR.exists(): + return False, "repo path missing" + + r = subprocess.run(["git", "-C", str(REPO_DIR), "rev-parse", "--is-inside-work-tree"], + stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + if r.returncode != 0 or r.stdout.strip() != "true": + return False, "not a git repo" + + r = subprocess.run(["git", "-C", str(REPO_DIR), "rev-parse", "--abbrev-ref", "HEAD"], + stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + if r.returncode != 0 or r.stdout.strip() != EXPECTED_BRANCH: + return False, f"wrong branch (got '{(r.stdout or '').strip()}')" + + r = subprocess.run(["git", "-C", str(REPO_DIR), "remote", "-v"], + stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + if r.returncode != 0 or EXPECTED_REMOTE_SUBSTR not in r.stdout: + return False, "remote not pointing to bastoica/wasabi" + return True, "" + +def paths_check(): + wasabi_root = os.environ.get("WASABI_ROOT_DIR", "") + if not (wasabi_root == EXPECTED_WASABI_ROOT and Path(wasabi_root).exists()): + return False, "WASABI_ROOT_DIR incorrect" + java_home = os.environ.get("JAVA_HOME", "") + if not (java_home == EXPECTED_JAVA_HOME and Path(java_home).exists()): + return False, "JAVA_HOME incorrect" + return True, "" + +def check_dependency(dep: Dependency) -> Optional[str]: + """ + Core method that checks whether a certain dependency of a version + equal or greather than that specified in the README is installed. + """ + if shutil.which(dep.binary) is None: + return f"{dep.name} missing" + + + if dep.cmd is None and dep.parse_regex is None and dep.require is None: + return None + + rc, out, err = run(dep.cmd or []) + text = (out + "\n" + err).strip() + + if dep.parse_regex and dep.require and dep.compare: + ver_tuple, ver_str = extract_version(text, dep.parse_regex) + if not ver_tuple: + return f"{dep.name} version unreadable" + ok = cmp_versions(ver_tuple, dep.require, dep.compare) + cmp_word = "==" if dep.compare == "eq" else ">=" + want = ".".join(map(str, dep.require)) + return None if ok else f"{dep.name} {cmp_word} {want} not met (got {ver_str})" + + return f"{dep.name} check misconfigured" + +def prereqs_check(): + problems: list[str] = [] + for dep in DEPENDENCIES: + msg = check_dependency(dep) + if msg: + problems.append(msg) + if problems: + return False, "; ".join(problems) + return True, "" + +def main(): + results = [] + + ok, why = repo_check() + print(f"Repository: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") + results.append(ok) + + ok, why = prereqs_check() + print(f"Prerequisites: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") + results.append(ok) + + ok, why = paths_check() + print(f"Paths: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") + results.append(ok) + + sys.exit(SUCCESS_CODE if all(results) else FAIL_CODE) + +if __name__ == "__main__": + main() diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/bugs_ground_truth.txt b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/bugs_ground_truth.txt new file mode 100644 index 00000000..6151825a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/bugs_ground_truth.txt @@ -0,0 +1,42 @@ +hadoop,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork +hadoop,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk +hdfs,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.FSDirEncryptionZoneOp$EDEKCacheLoader.run +hdfs,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks +hdfs,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo +hdfs,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream +hdfs,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run +hdfs,when-missing-backoff,org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run +hdfs,when-missing-backoff,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock +hdfs,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.transfer +hdfs,how-bug,org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader +hdfs,how-bug,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream +mapreduce,when-missing-backoff,org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob +mapreduce,when-missing-backoff,org.apache.hadoop.mapred.Task.run +mapreduce,when-missing-backoff,org.apache.hadoop.mapred.Task.done +mapreduce,when-missing-backoff,org.apache.hadoop.mapred.Task.statusUpdate +mapreduce,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone +hbase,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile +hbase,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState +hbase,when-missing-cap,org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState +hbase,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize +hbase,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile +hbase,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom +hbase,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub +hbase,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run +hbase,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance +hbase,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists +hbase,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId +hbase,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive +hbase,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile +hbase,when-missing-backoff,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall +hbase,when-missing-backoff,org.apache.hadoop.hbase.regionserver.snapshot.FlushSnapshotSubprocedure$RegionSnapshotTask.call +hbase,how-bug,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom +hbase,how-bug,org.apache.hadoop.hbase.HBaseServerBase.putUpWebUI +hive,when-missing-cap,org.apache.hadoop.hive.ql.lockmgr.zookeeper.ZooKeeperHiveLockManager.lock +hive,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution +hive,when-missing-backoff,org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.writeEvent +hive,when-missing-backoff,org.apache.hadoop.hive.ql.lockmgr.DbLockManager.lock +hive,how-bug,org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec +cassandra,when-missing-cap,org.apache.cassandra.db.compaction.Scrubber.scrub +cassandra,when-missing-backoff,org.apache.cassandra.service.StorageService.repairPaxosForTopologyChange +elasticsearch,when-missing-backoff,org.elasticsearch.cluster.coordination.ClusterBootstrapService.doBootstrap \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/cassandra/casandra_retry_locations.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/cassandra/casandra_retry_locations.data new file mode 100644 index 00000000..6cc8521a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/cassandra/casandra_retry_locations.data @@ -0,0 +1,22 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/db/compaction/Scrubber.java#L196!!!org.apache.cassandra.db.compaction.Scrubber.scrub!!!org.apache.cassandra.db.compaction.Scrubber$ScrubInfo.getCompactionInfo!!!Scrubber.java:199!!!java.lang.InterruptedException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/db/compaction/Scrubber.java#L196!!!org.apache.cassandra.db.compaction.Scrubber.scrub!!!org.apache.cassandra.utils.ByteBufferUtil.readWithShortLength!!!Scrubber.java:208!!!java.io.IOException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/db/compaction/Scrubber.java#L196!!!org.apache.cassandra.db.compaction.Scrubber.scrub!!!org.apache.cassandra.db.marshal.AbstractType.validate!!!Scrubber.java:209!!!org.apache.cassandra.serializers.MarshalException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/hadoop/cql3/CqlRecordWriter.java#L298!!!org.apache.cassandra.hadoop.cql3.CqlRecordWriter$RangeClient.run!!!org.apache.cassandra.hadoop.cql3.CqlRecordWriter$RangeClient.preparedStatement!!!CqlRecordWriter.java:320!!!java.lang.InterruptedException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/hadoop/cql3/CqlRecordWriter.java#L298!!!org.apache.cassandra.hadoop.cql3.CqlRecordWriter$RangeClient.run!!!java.util.concurrent.BlockingQueue>.take!!!CqlRecordWriter.java:303!!!java.lang.InterruptedException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/hadoop/cql3/CqlRecordWriter.java#L312!!!org.apache.cassandra.hadoop.cql3.CqlRecordWriter$RangeClient.run!!!org.apache.cassandra.hadoop.cql3.CqlRecordWriter$RangeClient.preparedStatement!!!CqlRecordWriter.java:320!!!java.lang.InterruptedException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/StorageService.java#L4587!!!org.apache.cassandra.service.StorageService.repairPaxosForTopologyChange!!!org.apache.cassandra.service.StorageService.tryRepairPaxosForTopologyChange!!!StorageService.java:4591!!!java.lang.InterruptedException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/StorageService.java#L4587!!!org.apache.cassandra.service.StorageService.repairPaxosForTopologyChange!!!org.apache.cassandra.service.StorageService.tryRepairPaxosForTopologyChange!!!StorageService.java:4591!!!java.lang.AssertionError +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L651!!!org.apache.cassandra.service.paxos.Paxos.cas!!!org.apache.cassandra.service.CASRequest.makeUpdates!!!Paxos.java:702!!!org.apache.cassandra.exceptions.InvalidRequestException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L651!!!org.apache.cassandra.service.paxos.Paxos.cas!!!org.apache.cassandra.service.CASRequest.appliesTo!!!Paxos.java:669!!!org.apache.cassandra.exceptions.InvalidRequestException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L651!!!org.apache.cassandra.service.paxos.Paxos.cas!!!org.apache.cassandra.service.paxos.Paxos$MaybeFailure.markAndThrowAsTimeoutOrFailure!!!Paxos.java:729!!!org.apache.cassandra.exceptions.RequestFailureException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L651!!!org.apache.cassandra.service.paxos.Paxos.cas!!!org.apache.cassandra.service.paxos.Paxos$MaybeFailure.markAndThrowAsTimeoutOrFailure!!!Paxos.java:729!!!org.apache.cassandra.exceptions.RequestTimeoutException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L651!!!org.apache.cassandra.service.paxos.Paxos.cas!!!org.apache.cassandra.triggers.TriggerExecutor.execute!!!Paxos.java:711!!!org.apache.cassandra.exceptions.InvalidRequestException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L953!!!org.apache.cassandra.service.paxos.Paxos.begin!!!org.apache.cassandra.service.paxos.Paxos$Participants.assureSufficientLiveNodes!!!Paxos.java:1049!!!org.apache.cassandra.exceptions.UnavailableException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L953!!!org.apache.cassandra.service.paxos.Paxos.begin!!!org.apache.cassandra.service.paxos.Paxos$MaybeFailure.markAndThrowAsTimeoutOrFailure!!!Paxos.java:992!!!org.apache.cassandra.exceptions.RequestFailureException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L953!!!org.apache.cassandra.service.paxos.Paxos.begin!!!org.apache.cassandra.service.paxos.Paxos$MaybeFailure.markAndThrowAsTimeoutOrFailure!!!Paxos.java:992!!!org.apache.cassandra.exceptions.RequestTimeoutException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L953!!!org.apache.cassandra.service.paxos.Paxos.begin!!!org.apache.cassandra.service.paxos.PaxosPrepare.prepare!!!Paxos.java:1013!!!org.apache.cassandra.exceptions.UnavailableException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L953!!!org.apache.cassandra.service.paxos.Paxos.begin!!!org.apache.cassandra.service.reads.ResponseResolver.preprocess!!!Paxos.java:1025!!!java.lang.IllegalArgumentException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L953!!!org.apache.cassandra.service.paxos.Paxos.begin!!!org.apache.cassandra.service.reads.ResponseResolver.preprocess!!!Paxos.java:1025!!!java.lang.IllegalStateException +https://github.com/apache/cassandra/blob/f0ad7eadbeb3208e08a9339881931222fdab253b/src/java/org/apache/cassandra/utils/binlog/ExternalArchiver.java#L86!!!org.apache.cassandra.utils.binlog.ExternalArchiver.ExternalArchiver!!!org.apache.cassandra.utils.binlog.ExternalArchiver.archiveFile!!!ExternalArchiver.java:93!!!java.io.IOException +https://github.com/apache/cassandra/blob/360128b3eb8f1b19dfc887a60d0678bc1f67703f/src/java/org/apache/cassandra/db/repair/PendingAntiCompaction.java!!!PendingAntiCompaction.AcquisitionCallable.call!!!PendingAntiCompaction.AcquisitionCallable.acquireSSTables!!!PendingAntiCompaction.SSTableAcquisitionException!!!PendingAntiCompaction.SSTableAcquisitionException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/elasticsearch/elasticsearch_retry_locations.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/elasticsearch/elasticsearch_retry_locations.data new file mode 100644 index 00000000..32701aa0 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/elasticsearch/elasticsearch_retry_locations.data @@ -0,0 +1,50 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/indices/IndicesService.java#L1205!!!org.elasticsearch.indices.IndicesService.processPendingDeletes!!!org.elasticsearch.env.NodeEnvironment.deleteIndexDirectoryUnderLock!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/indices/IndicesService.java#L1205!!!org.elasticsearch.indices.IndicesService.processPendingDeletes!!!org.elasticsearch.indices.IndicesService.deleteShardStore!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//x-pack/plugin/watcher/src/main/java/org/elasticsearch/xpack/watcher/notification/email/attachment/ReportingAttachmentParser.java#L179!!!org.elasticsearch.xpack.watcher.notification.email.attachment.ReportingAttachmentParser.toAttachment!!!org.elasticsearch.xpack.watcher.common.http.HttpClient.execute!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//x-pack/plugin/watcher/src/main/java/org/elasticsearch/xpack/watcher/notification/email/attachment/ReportingAttachmentParser.java#L179!!!org.elasticsearch.xpack.watcher.notification.email.attachment.ReportingAttachmentParser.toAttachment!!!org.elasticsearch.xpack.watcher.notification.email.attachment.ReportingAttachmentParser.sleep!!!N/A!!!org.elasticsearch.ElasticsearchException +https://github.com/elastic/elasticsearch/blob/832e48e87faa547a29aafc008f4d4fc2820a3074/server/src/main/java/org/elasticsearch/cluster/coordination/ClusterBootstrapService.java#L263!!!org.elasticsearch.cluster.coordination.ClusterBootstrapService.doBootstrap!!!java.util.function.Consumer.accept!!!N/A!!!java.lang.Exception +https://github.com/elastic/elasticsearch/blob/832e48e87faa547a29aafc008f4d4fc2820a3074/server/src/main/java/org/elasticsearch/index/IndexService.java#L617!!!org.elasticsearch.index.IndexService.onShardClose!!!beforeIndexShardDeleted!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/blob/1b84ea742143874a966d06daa373b31c9e99822f/server/src/main/java/org/elasticsearch/gateway/PersistedClusterStateService.java#L1289!!!org.elasticsearch.gateway.PersistedClusterStateService.completeCommit!!!org.elasticsearch.gateway.PersistedClusterStateService.commit!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/blob/832e48e87faa547a29aafc008f4d4fc2820a3074/server/src/main/java/org/elasticsearch/indices/IndicesService.java#L1346!!!org.elasticsearch.indices.IndicesService.processPendingDeletes!!!org.elasticsearch.env.NodeEnvironment.deleteIndexDirectoryUnderLock!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/blob/832e48e87faa547a29aafc008f4d4fc2820a3074/server/src/main/java/org/elasticsearch/indices/IndicesService.java!!!org.elasticsearch.indices.IndicesService.processPendingDeletes!!!org.elasticsearch.indices.IndicesService.deleteShardStore!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/blob/832e48e87faa547a29aafc008f4d4fc2820a3074/server/src/main/java/org/elasticsearch/common/blobstore/fs/FsBlobContainer.java#L330!!!org.elasticsearch.common.blobstore.fs.FsBlobContainer.moveBlobAtomic!!!java.nio.file.Files.move!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/blob/832e48e87faa547a29aafc008f4d4fc2820a3074/server/src/main/java/org/elasticsearch/common/file/AbstractFileWatchingService.java#L271!!!org.elasticsearch.common.file.AbstractFileWatchingService.enableDirectoryWatcher!!!org.elasticsearch.monitor.fs.FsInfo.Path.register!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/blob/832e48e87faa547a29aafc008f4d4fc2820a3074/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/security/CommandLineHttpClient.java#L271!!!org.elasticsearch.xpack.core.security.CommandLineHttpClient.checkClusterHealthWithRetriesWaitingForCluster!!!org.elasticsearch.xpack.core.security.CommandLineHttpClient.execute!!!N/A!!!java.lang.Exception +https://github.com/elastic/elasticsearch/tree//7556157//plugins/repository-gcs/src/main/java/org/elasticsearch/repositories/gcs/GoogleCloudStorageBlobStore.java#L257!!!org.elasticsearch.repositories.gcs.GoogleCloudStorageBlobStore.writeBlobResumable!!!org.elasticsearch.core.internal.io.Streams.copy!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//plugins/repository-gcs/src/main/java/org/elasticsearch/repositories/gcs/GoogleCloudStorageBlobStore.java#L257!!!org.elasticsearch.repositories.gcs.GoogleCloudStorageBlobStore.writeBlobResumable!!!org.elasticsearch.repositories.gcs.SocketAccess.doPrivilegedIOException!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.action.delete.DeleteRequest.setIfPrimaryTerm!!!N/A!!!java.lang.IllegalArgumentException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.action.delete.DeleteRequest.setIfSeqNo!!!N/A!!!java.lang.IllegalArgumentException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.action.index.IndexRequest.setIfPrimaryTerm!!!N/A!!!java.lang.IllegalArgumentException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.action.index.IndexRequest.setIfSeqNo!!!N/A!!!java.lang.IllegalArgumentException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.action.update.UpdateRequest.fromXContent!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.action.update.UpdateRequest.setIfPrimaryTerm!!!N/A!!!java.lang.IllegalArgumentException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.action.update.UpdateRequest.setIfSeqNo!!!N/A!!!java.lang.IllegalArgumentException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.common.xcontent.XContentParser.booleanValue!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.common.xcontent.XContentParser.longValue!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.common.xcontent.XContentParser.intValue!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.common.xcontent.XContentParser.text!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.common.xcontent.XContentParser.currentName!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.common.xcontent.XContentParser.nextToken!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.index.VersionType.fromString!!!N/A!!!java.lang.IllegalArgumentException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.search.fetch.subphase.FetchSourceContext.fromXContent!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.search.fetch.subphase.FetchSourceContext.fromXContent!!!N/A!!!org.elasticsearch.common.ParsingException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.action.bulk.BulkRequestParser.createParser!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L117!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.action.bulk.BulkRequestParser.findNextMarker!!!N/A!!!java.lang.IllegalArgumentException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L166!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.common.xcontent.XContentParser.booleanValue!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L166!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.common.xcontent.XContentParser.longValue!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L166!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.common.xcontent.XContentParser.intValue!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L166!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.common.xcontent.XContentParser.text!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L166!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.common.xcontent.XContentParser.currentName!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L166!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.common.xcontent.XContentParser.nextToken!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L166!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.index.VersionType.fromString!!!N/A!!!java.lang.IllegalArgumentException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/action/bulk/BulkRequestParser.java#L166!!!org.elasticsearch.action.bulk.BulkRequestParser.parse!!!org.elasticsearch.search.fetch.subphase.FetchSourceContext.fromXContent!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/index/reindex/BulkByScrollTask.java#L614!!!org.elasticsearch.index.reindex.BulkByScrollTask$Status.innerFromXContent!!!org.elasticsearch.common.xcontent.XContentParser.floatValue!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/index/reindex/BulkByScrollTask.java#L614!!!org.elasticsearch.index.reindex.BulkByScrollTask$Status.innerFromXContent!!!org.elasticsearch.common.xcontent.XContentParser.longValue!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/index/reindex/BulkByScrollTask.java#L614!!!org.elasticsearch.index.reindex.BulkByScrollTask$Status.innerFromXContent!!!org.elasticsearch.common.xcontent.XContentParser.intValue!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/index/reindex/BulkByScrollTask.java#L614!!!org.elasticsearch.index.reindex.BulkByScrollTask$Status.innerFromXContent!!!org.elasticsearch.common.xcontent.XContentParser.text!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/index/reindex/BulkByScrollTask.java#L614!!!org.elasticsearch.index.reindex.BulkByScrollTask$Status.innerFromXContent!!!org.elasticsearch.common.xcontent.XContentParser.currentName!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/index/reindex/BulkByScrollTask.java#L614!!!org.elasticsearch.index.reindex.BulkByScrollTask$Status.innerFromXContent!!!org.elasticsearch.common.xcontent.XContentParser.skipChildren!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/index/reindex/BulkByScrollTask.java#L614!!!org.elasticsearch.index.reindex.BulkByScrollTask$Status.innerFromXContent!!!org.elasticsearch.common.xcontent.XContentParser.nextToken!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/index/reindex/BulkByScrollTask.java#L614!!!org.elasticsearch.index.reindex.BulkByScrollTask$Status.innerFromXContent!!!org.elasticsearch.index.reindex.BulkByScrollTask$StatusOrException.fromXContent!!!N/A!!!java.io.IOException +https://github.com/elastic/elasticsearch/tree//7556157//server/src/main/java/org/elasticsearch/index/reindex/BulkByScrollTask.java#L614!!!org.elasticsearch.index.reindex.BulkByScrollTask$Status.innerFromXContent!!!org.elasticsearch.common.xcontent.ConstructingObjectParser,Void>.parse!!!N/A!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/example_hdfs.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/example_hdfs.conf new file mode 100644 index 00000000..d7a10a5a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/example_hdfs.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/example_hdfs.data +injection_policy: max-count +max_injection_count: 97 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/example_hdfs.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/example_hdfs.data new file mode 100644 index 00000000..35784eee --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/example_hdfs.data @@ -0,0 +1,3 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock!!!DFSStripedInputStream.java:245!!!java.io.IOException +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSStripedInputStream.java:256!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/example.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/example.conf new file mode 100644 index 00000000..3567cd66 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/example.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/example.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/example.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/example.data new file mode 100644 index 00000000..35784eee --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/example.data @@ -0,0 +1,3 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock!!!DFSStripedInputStream.java:245!!!java.io.IOException +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSStripedInputStream.java:256!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop.conf new file mode 100644 index 00000000..be986fa6 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop.conf @@ -0,0 +1,3 @@ +retry_data_file: /home/bastoica/projects/current/wasabi/tool/config/hadoop/hadoop_retry_locations.data +injection_policy: max-count +max_injection_count: 0 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop_retry_bounds.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop_retry_bounds.data new file mode 100644 index 00000000..3a333dd1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop_retry_bounds.data @@ -0,0 +1,195 @@ +Var name!!!Assigned value!!!Assign method!!!Test class +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestApplicationCleanup +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestApplicationCleanup +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestApplicationCleanup +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestApplicationCleanup +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestApplicationCleanup +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestApplicationMasterLauncher +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBalancer +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBalancerService +MAX_ATTEMPTS_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBalancerService +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBalancerWithHANameNodes +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBlockRecovery +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBlockRecovery2 +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBlockTokenWithDFS +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBlockTokenWithShortCircuitRead +RM_AM_MAX_ATTEMPTS!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestCapacityScheduler +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestCapacitySchedulerApps +RM_AM_MAX_ATTEMPTS!!!"1"!!!org.apache.hadoop.conf.Configuration.set!!!TestCapacitySchedulerSurgicalPreemption +DFS_NAMENODE_CHECKPOINT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestCheckpoint +MR_CLIENT_JOB_MAX_RETRIES!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestCLI +MR_CLIENT_JOB_MAX_RETRIES!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestCLI +LOCATEFOLLOWINGBLOCK_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestClientProtocolForPipelineRecovery +CLIENT_FAILOVER_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setLong!!!TestClientRMProxy +MR_CLIENT_MAX_RETRIES!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestClientServiceDelegate +MR_CLIENT_MAX_RETRIES!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestClientServiceDelegate +MAX_ATTEMPTS_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestConsistentReadsObserver +MAX_ATTEMPTS_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestConsistentReadsObserver +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestContainerResizing +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestContainerResourceUsage +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDataNodeMetricsLogger +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDatanodeProtocolRetryPolicy +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDataNodeReconfiguration +RM_DT_RENEWER_THREAD_RETRY_MAX_ATTEMPTS!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDelegationTokenRenewer +RM_DT_RENEWER_THREAD_RETRY_MAX_ATTEMPTS!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDelegationTokenRenewer +RM_DT_RENEWER_THREAD_RETRY_MAX_ATTEMPTS!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDelegationTokenRenewer +RM_DT_RENEWER_THREAD_RETRY_MAX_ATTEMPTS!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDelegationTokenRenewer +OBSERVER_PROBE_RETRY_PERIOD_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDelegationTokensWithHA +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDFSAdmin +MAX_ATTEMPTS_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDFSAdminWithHA +MAX_ATTEMPTS_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDFSAdminWithHA +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDFSAdminWithHA +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDFSInotifyEventInputStreamKerberized +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDFSStripedOutputStreamWithFailure +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDSTimelineV10 +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDSTimelineV10 +DFS_HA_TAILEDITS_ALL_NAMESNODES_RETRY_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestEditLogTailer +DFS_HA_TAILEDITS_ALL_NAMESNODES_RETRY_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestEditLogTailer +DFS_HA_TAILEDITS_ALL_NAMESNODES_RETRY_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestEditLogTailer +DFS_HA_TAILEDITS_ALL_NAMESNODES_RETRY_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestEditLogTailer +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestExternalStoragePolicySatisfier +DFS_STORAGE_POLICY_SATISFIER_SELF_RETRY_TIMEOUT_MILLIS_KEY!!!"5000"!!!org.apache.hadoop.conf.Configuration.set!!!TestExternalStoragePolicySatisfier +DFS_STORAGE_POLICY_SATISFIER_SELF_RETRY_TIMEOUT_MILLIS_KEY!!!"5000"!!!org.apache.hadoop.conf.Configuration.set!!!TestExternalStoragePolicySatisfier +DFS_STORAGE_POLICY_SATISFIER_SELF_RETRY_TIMEOUT_MILLIS_KEY!!!"5000"!!!org.apache.hadoop.conf.Configuration.set!!!TestExternalStoragePolicySatisfier +REDUCE_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +REDUCE_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +REDUCE_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +REDUCE_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +REDUCE_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +REDUCE_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFileAppend4 +FILEOUTPUTCOMMITTER_FAILURE_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFileOutputCommitter +FS_RM_STATE_STORE_NUM_RETRIES!!!8!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFSRMStateStore +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestHealthMonitor +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SOCKET_TIMEOUTS_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestIPC +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SOCKET_TIMEOUTS_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestIPC +MR_CLIENT_JOB_MAX_RETRIES!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestJobClients +MR_JOB_END_RETRY_ATTEMPTS!!!"0"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_NOTIFICATION_MAX_ATTEMPTS!!!"0"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_RETRY_ATTEMPTS!!!"0"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_NOTIFICATION_MAX_ATTEMPTS!!!"1"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_NOTIFICATION_MAX_ATTEMPTS!!!"1"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_RETRY_ATTEMPTS!!!"10"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_RETRY_ATTEMPTS!!!"10"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_NOTIFICATION_MAX_ATTEMPTS!!!"20"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_RETRY_ATTEMPTS!!!"3"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_NOTIFICATION_MAX_ATTEMPTS!!!"3"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_RETRY_ATTEMPTS!!!"3"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestJobImpl +MR_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestJobImpl +AUTH_RETRY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestKMS +LDAP_NUM_ATTEMPTS_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLdapGroupsMappingWithBindUserSwitch +LDAP_NUM_ATTEMPTS_KEY!!!"1"!!!org.apache.hadoop.conf.Configuration.set!!!TestLdapGroupsMappingWithOneQuery +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!4!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!5!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMover +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!10000!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!10000!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!"2"!!!org.apache.hadoop.conf.Configuration.set!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!"2"!!!org.apache.hadoop.conf.Configuration.set!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!"2"!!!org.apache.hadoop.conf.Configuration.set!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!"2"!!!org.apache.hadoop.conf.Configuration.set!!!TestMover +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMRJobs +MAP_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMRJobs +LOCATEFOLLOWINGBLOCK_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestNamenodeCapacityReport +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SOCKET_TIMEOUTS_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestNMProxy +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestNMProxy +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestNNStartupWhenViewFSOverloadSchemeEnabled +RM_AM_MAX_ATTEMPTS!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestNodeBlacklistingOnAMFailures +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestNodeStatusUpdater +OBSERVER_PROBE_RETRY_PERIOD_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setTimeDuration!!!TestObserverNode +OBSERVER_PROBE_RETRY_PERIOD_KEY!!!5000!!!org.apache.hadoop.conf.Configuration.setLong!!!TestObserverNode +OBSERVER_PROBE_RETRY_PERIOD_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setTimeDuration!!!TestObserverReadProxyProvider +DFS_STORAGE_POLICY_SATISFIER_MAX_RETRY_ATTEMPTS_KEY!!!20!!!org.apache.hadoop.conf.Configuration.setInt!!!TestPersistentStoragePolicySatisfier +DFS_STORAGE_POLICY_SATISFIER_MAX_RETRY_ATTEMPTS_KEY!!!20!!!org.apache.hadoop.conf.Configuration.setInt!!!TestPersistentStoragePolicySatisfier +RM_PLACEMENT_CONSTRAINTS_RETRY_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestPlacementProcessor +RM_PLACEMENT_CONSTRAINTS_RETRY_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestPlacementProcessor +RM_PLACEMENT_CONSTRAINTS_RETRY_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestPlacementProcessor +RM_PLACEMENT_CONSTRAINTS_RETRY_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestPlacementProcessor +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestQJMWithFaults +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestQuorumJournalManager +REDUCE_MAX_ATTEMPTS!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestReduceFetchFromPartialMem +MAP_MAX_ATTEMPTS!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestReduceFetchFromPartialMem +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRM +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMContainerImpl +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMContainerImpl +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!5!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!40!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMWebServicesAppAttempts +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRollingFileSystemSinkWithSecureHdfs +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRouterRPCClientRetries +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRPC +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRPC +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRPC +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRPCServerShutdown +SPECULATIVE_RETRY_AFTER_SPECULATE!!!5000L!!!org.apache.hadoop.conf.Configuration.setLong!!!TestRuntimeEstimators +SPECULATIVE_RETRY_AFTER_NO_SPECULATE!!!500L!!!org.apache.hadoop.conf.Configuration.setLong!!!TestRuntimeEstimators +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestSecureEncryptionZoneWithKMS +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestSecureNNWithQJM +MAX_ATTEMPTS_KEY!!!128!!!org.apache.hadoop.conf.Configuration.setInt!!!TestSeveralNameNodes +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestSpaceReservation +SPECULATIVE_RETRY_AFTER_NO_SPECULATE!!!3000L!!!org.apache.hadoop.conf.Configuration.setLong!!!TestSpeculativeExecutionWithMRApp +RETRY_LIMIT!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestStagingCommitter +DFS_STORAGE_POLICY_SATISFIER_MAX_RETRY_ATTEMPTS_KEY!!!30!!!org.apache.hadoop.conf.Configuration.setInt!!!TestStoragePolicySatisfierWithStripedFile +DFS_STORAGE_POLICY_SATISFIER_MAX_RETRY_ATTEMPTS_KEY!!!30!!!org.apache.hadoop.conf.Configuration.setInt!!!TestStoragePolicySatisfierWithStripedFile +DFS_STORAGE_POLICY_SATISFIER_SELF_RETRY_TIMEOUT_MILLIS_KEY!!!"5000"!!!org.apache.hadoop.conf.Configuration.set!!!TestStoragePolicySatisfierWithStripedFile +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineAuthenticationFilterForV1 +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!-2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineClient +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineClient +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!5!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineCollector +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!5!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineCollector +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!5!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineCollector +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!5!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineCollector +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTrashWithSecureEncryptionZones +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestViewDistributedFileSystemWithMountLinks +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestViewFileSystemHdfs +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestViewFileSystemOverloadSchemeWithDFSAdmin +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestViewFileSystemOverloadSchemeWithFSCommands +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestViewFileSystemOverloadSchemeWithHdfsScheme +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestWorkPreservingRMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestWorkPreservingRMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestWorkPreservingRMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestWorkPreservingRMRestart +HA_FC_ELECTOR_ZK_OP_RETRIES_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestZKFailoverControllerStress +ZK_NUM_RETRIES!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestZKRMStateStoreZKClientConnections diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop_retry_locations.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop_retry_locations.data new file mode 100644 index 00000000..4e970b83 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop_retry_locations.data @@ -0,0 +1,202 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/blob/ee7d178/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/TrashPolicyDefault.java#L151!!!org.apache.hadoop.fs.TrashPolicyDefault.moveToTrash!!!org.apache.hadoop.fs.FileSystem.mkdirs!!!TrashPolicyDefault.java:161!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/TrashPolicyDefault.java#L151!!!org.apache.hadoop.fs.TrashPolicyDefault.run!!!deleteCheckpoint!!!TrashPolicyDefault.java:303!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/TrashPolicyDefault.java#L151!!!org.apache.hadoop.fs.TrashPolicyDefault.run!!!createCheckpoint!!!TrashPolicyDefault.java:304!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ha/HealthMonitor.java#L170!!!org.apache.hadoop.ha.HealthMonitor.tryConnect!!!org.apache.hadoop.ha.HealthMonitor.createProxy!!!HealthMonitor.java:175!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/retry/RetryInvocationHandler.java#L89!!!org.apache.hadoop.io.retry.RetryInvocationHandler.invokeOnce!!!invoke!!!RetryInvocationHandler.java:100!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/DiskChecker.java#L262!!!org.apache.hadoop.util.DiskChecker.doDiskIo!!!org.apache.hadoop.util.DiskChecker.diskIoCheckWithoutNativeIo!!!DiskChecker.java:262!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/protocol/CacheDirectiveIterator.java#L96!!!org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator.makeRequest!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.listCacheDirectives!!!CacheDirectiveIterator.java:97!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/BlockPlacementPolicyRackFaultTolerant.java#L172!!!org.apache.hadoop.hdfs.server.blockmanagement.BlockPlacementPolicyRackFaultTolerant.chooseEvenlyFromRemainingRacks!!!org.apache.hadoop.hdfs.server.blockmanagement.BlockPlacementPolicyRackFaultTolerant.chooseOnce!!!BlockPlacementPolicyRackFaultTolerant.java:187!!!NotEnoughReplicasException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/BlockPlacementPolicyWithNodeGroup.java#L64!!!org.apache.hadoop.hdfs.server.blockmanagement.BlockPlacementPolicyWithNodeGroup.chooseFavouredNodes!!!chooseRandom!!!BlockPlacementPolicyWithNodeGroup.java:91!!!NotEnoughReplicasException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/sps/ExternalStoragePolicySatisfier.java#L111!!!org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier.getNameNodeConnector!!!newNameNodeConnectors!!!ExternalStoragePolicySatisfier.java:114!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/local/LocalContainerAllocator.java#L106!!!org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator.heartbeat!!!org.apache.hadoop.yarn.api.ApplicationMasterProtocol.allocate!!!LocalContainerAllocator.java:113!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/lib/output/committer/manifest/stages/CreateOutputDirectoriesStage.java#L299!!!CreateOutputDirectoriesStage.maybeCreateOneDirectory!!!org.apache.hadoop.fs.FileSystem.mkdirs!!!CreateOutputDirectoriesStage.java:305!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/main/java/org/apache/hadoop/yarn/server/AMRMClientRelayer.java#L347!!!org.apache.hadoop.yarn.server.AMRMClientRelayer.allocate!!!org.apache.hadoop.yarn.server.AMRMClientRelayer.reRegisterApplicationMaster!!!AMRMClientRelayer.java:386!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/constraint/algorithm/DefaultPlacementAlgorithm.java#L153!!!org.apache.hadoop.yarn.server.resourcemanager.scheduler.constraint.algorithm.DefaultPlacementAlgorithm.doPlacement!!!org.apache.hadoop.yarn.server.resourcemanager.scheduler.constraint.algorithm.DefaultPlacementAlgorithm.attemptPlacementOnNode!!!DefaultPlacementAlgorithm.java:162!!!InvalidAllocationTagsQueryException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/security/DelegationTokenRenewer.java#L382!!!org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer.run!!!doAs!!!DelegationTokenRenewer.java:391!!!java.io.IOException +https://github.com/apache/hadoop/blob/trunk/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSClient.java#L617!!!org.apache.hadoop.hdfs.DFSClient.renewLease!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.renewLease!!!DFSClient.java:618!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-cos/src/main/java/org/apache/hadoop/fs/cosn/CosNativeFileSystemStore.java#L692!!!org.apache.hadoop.fs.cosn.CosNativeFileSystemStore.callCOSClientWithRetry!!!org.apache.hadoop.fs.azure.StorageInterface$CloudBlockBlobWrapper.commitBlockList!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-cos/src/main/java/org/apache/hadoop/fs/cosn/CosNFileReadTask.java#L85!!!org.apache.hadoop.fs.cosn.CosNFileReadTask.run!!!org.apache.hadoop.fs.cosn.NativeFileSystemStore.retrieveBlock!!!CosNFileReadTask.java:87!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-cos/src/main/java/org/apache/hadoop/fs/cosn/CosNFileReadTask.java#L85!!!org.apache.hadoop.fs.cosn.CosNFileReadTask.run!!!org.apache.hadoop.io.IOUtils.readFully!!!CosNFileReadTask.java:89!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-cos/src/main/java/org/apache/hadoop/fs/cosn/CosNFileReadTask.java#L85!!!org.apache.hadoop.fs.cosn.CosNFileReadTask.run!!!java.io.InputStream.close!!!CosNFileReadTask.java:91!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSCommonUtils.java#L891!!!org.apache.hadoop.fs.obs.OBSCommonUtils.isFolderEmpty!!!org.apache.hadoop.fs.obs.OBSCommonUtils.innerIsFolderEmpty!!!OBSCommonUtils.java:893!!!java.io.FileNotFoundException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSFileSystem.java#L1214!!!org.apache.hadoop.fs.obs.OBSFileSystem.getFileStatus!!!org.apache.hadoop.fs.obs.OBSFileSystem.innerGetFileStatus!!!OBSFileSystem.java:1217!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L373!!!org.apache.hadoop.fs.obs.OBSInputStream.lazySeek!!!org.apache.hadoop.fs.obs.OBSInputStream.seekInStream!!!OBSInputStream.java:376!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L373!!!org.apache.hadoop.fs.obs.OBSInputStream.lazySeek!!!org.apache.hadoop.fs.obs.OBSInputStream.reopen!!!OBSInputStream.java:380!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L457!!!org.apache.hadoop.fs.obs.OBSInputStream.read!!!java.io.InputStream.read!!!OBSInputStream.java:459!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L526!!!org.apache.hadoop.fs.obs.OBSInputStream.onReadFailure!!!org.apache.hadoop.fs.obs.OBSInputStream.reopen!!!OBSInputStream.java:528!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L577!!!org.apache.hadoop.fs.obs.OBSInputStream.read!!!org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L687!!!org.apache.hadoop.fs.obs.OBSInputStream.read!!!org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L970!!!org.apache.hadoop.fs.obs.OBSInputStream.randomReadWithNewInputStream!!!org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream!!!OBSInputStream.java:976!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSObjectBucketUtils.java#L479!!!org.apache.hadoop.fs.obs.OBSObjectBucketUtils.createEmptyObject!!!org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCreateEmptyObject!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSObjectBucketUtils.java#L542!!!org.apache.hadoop.fs.obs.OBSObjectBucketUtils.copyFile!!!org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCopyFile!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSPosixBucketUtils.java#L182!!!org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry!!!org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile!!!N/A!!!java.io.FileNotFoundException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSPosixBucketUtils.java#L182!!!org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry!!!org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/crypto/key/kms/LoadBalancingKMSClientProvider.java#L173!!!org.apache.hadoop.crypto.key.kms.LoadBalancingKMSClientProvider.doOp!!!org.apache.hadoop.crypto.key.kms.LoadBalancingKMSClientProvider$ProviderCallable.call!!!LoadBalancingKMSClientProvider.java:176!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FSInputChecker.java#L301!!!org.apache.hadoop.fs.FSInputChecker.readChecksumChunk!!!org.apache.hadoop.fs.FSInputChecker.readChunk!!!FSInputChecker.java:305!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/impl/prefetch/CachingBlockManager.java#L149!!!org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get!!!org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.getInternal!!!CachingBlockManager.java:160!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/impl/prefetch/CachingBlockManager.java#L149!!!org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get!!!org.apache.hadoop.fs.impl.prefetch.BufferPool.acquire!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ha/ActiveStandbyElector.java#L1126!!!org.apache.hadoop.ha.ActiveStandbyElector.zkDoWithRetries!!!org.apache.hadoop.ha.ActiveStandbyElector$ZKAction.run!!!ActiveStandbyElector.java:1150!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ha/ActiveStandbyElector.java#L853!!!org.apache.hadoop.ha.ActiveStandbyElector.reEstablishSession!!!org.apache.hadoop.ha.ActiveStandbyElector.createConnection!!!ActiveStandbyElector.java:880!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!javax.net.SocketFactory.createSocket!!!Client.java:625!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!java.net.Socket.setTcpNoDelay!!!Client.java:626!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!java.net.Socket.setKeepAlive!!!Client.java:627!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!java.net.Socket.setTrafficClass!!!Client.java:639!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!org.apache.hadoop.net.NetUtils.getLocalInetAddress!!!Client.java:656!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!java.net.Socket.setReuseAddress!!!Client.java:658!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!java.net.Socket.bind!!!Client.java:663!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!org.apache.hadoop.net.NetUtils.connect!!!Client.java:668!!!java.net.ConnectException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!java.net.Socket.setSoTimeout!!!Client.java:669!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L790!!!org.apache.hadoop.ipc.Client$Connection.setupIOstreams!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!Client.java:789!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L790!!!org.apache.hadoop.ipc.Client$Connection.setupIOstreams!!!org.apache.hadoop.ipc.Client$Connection.writeConnectionHeader!!!Client.java:791!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L790!!!org.apache.hadoop.ipc.Client$Connection.setupIOstreams!!!org.apache.hadoop.security.UserGroupInformation.doAs!!!Client.java:795!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L790!!!org.apache.hadoop.ipc.Client$Connection.setupIOstreams!!!org.apache.hadoop.ipc.Client$IpcStreams.setSaslClient!!!Client.java:818!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L790!!!org.apache.hadoop.ipc.Client$Connection.setupIOstreams!!!org.apache.hadoop.ipc.Client$Connection.writeConnectionContext!!!Client.java:831!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/RPC.java#L419!!!org.apache.hadoop.ipc.RPC.waitForProtocolProxy!!!org.apache.hadoop.ipc.RPC.getProtocolProxy!!!RPC.java:421!!!java.net.ConnectException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/RPC.java#L419!!!org.apache.hadoop.ipc.RPC.waitForProtocolProxy!!!org.apache.hadoop.security.UserGroupInformation.getCurrentUser!!!RPC.java:422!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/UserGroupInformation.java#L967!!!org.apache.hadoop.security.UserGroupInformation$AutoRenewalForUserCredsRunnable.run!!!org.apache.hadoop.security.UserGroupInformation$AutoRenewalForUserCredsRunnable.relogin!!!UserGroupInformation.java:986!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readTag!!!RpcHeaderProtos.java:1835!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readEnum!!!RpcHeaderProtos.java:1841!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readSInt32!!!RpcHeaderProtos.java:1866!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readBytes!!!RpcHeaderProtos.java:1871!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readMessage!!!RpcHeaderProtos.java:1884!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readInt64!!!RpcHeaderProtos.java:1907!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.GeneratedMessageV3.parseUnknownField!!!RpcHeaderProtos.java:1916!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readTag!!!RpcHeaderProtos.java:3785!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readUInt32!!!RpcHeaderProtos.java:3792!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readEnum!!!RpcHeaderProtos.java:3796!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readBytes!!!RpcHeaderProtos.java:3831!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readSInt32!!!RpcHeaderProtos.java:3843!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readInt64!!!RpcHeaderProtos.java:3848!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.GeneratedMessageV3.parseUnknownField!!!RpcHeaderProtos.java:3857!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/LeaseRenewer.java#L440!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew!!!LeaseRenewer.java:445!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1550!!!org.apache.hadoop.hdfs.DataStreamer.transfer!!!org.apache.hadoop.hdfs.DataStreamer$StreamerStreams.sendTransferBlock!!!DataStreamer.java:1594!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.DataStreamer.createSocketForPipeline!!!DataStreamer.java:1868!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.net.NetUtils.getOutputStream!!!DataStreamer.java:1872!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.net.NetUtils.getInputStream!!!DataStreamer.java:1873!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient.socketSend!!!DataStreamer.java:1874!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage.getRecoveryStage!!!DataStreamer.java:1887!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocol.datatransfer.Sender.writeBlock!!!DataStreamer.java:1896!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos$BlockOpResponseProto.parseFrom!!!DataStreamer.java:1904!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed!!!DataStreamer.java:1905!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed!!!DataStreamer.java:1905!!!java.io.EOFException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil.checkBlockOpStatus!!!DataStreamer.java:1921!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L1156!!!org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSInputStream.java:1218!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L1156!!!org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode!!!org.apache.hadoop.fs.ByteBufferReadable.read!!!DFSInputStream.java:1229!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L235!!!org.apache.hadoop.hdfs.DFSInputStream.openInfo!!!org.apache.hadoop.hdfs.DFSInputStream.fetchAndCheckLocatedBlocks!!!DFSInputStream.java:238!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L235!!!org.apache.hadoop.hdfs.DFSInputStream.openInfo!!!org.apache.hadoop.hdfs.DFSInputStream.getLastBlockLength!!!DFSInputStream.java:243!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L344!!!org.apache.hadoop.hdfs.DFSInputStream.readBlockLength!!!org.apache.hadoop.hdfs.DFSUtilClient.createClientDatanodeProtocolProxy!!!DFSInputStream.java:348!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L344!!!org.apache.hadoop.hdfs.DFSInputStream.readBlockLength!!!org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol.getReplicaVisibleLength!!!DFSInputStream.java:352!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L622!!!org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockAt!!!DFSInputStream.java:627!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L622!!!org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo!!!org.apache.hadoop.hdfs.DFSInputStream.chooseDataNode!!!DFSInputStream.java:637!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L622!!!org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSInputStream.java:645!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L786!!!org.apache.hadoop.hdfs.DFSInputStream.readBuffer!!!org.apache.hadoop.hdfs.ReaderStrategy.readFromBlock!!!DFSInputStream.java:790!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L786!!!org.apache.hadoop.hdfs.DFSInputStream.readBuffer!!!org.apache.hadoop.hdfs.DFSInputStream.seekToBlockSource!!!DFSInputStream.java:820!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L786!!!org.apache.hadoop.hdfs.DFSInputStream.readBuffer!!!org.apache.hadoop.hdfs.DFSInputStream.seekToNewSource!!!DFSInputStream.java:824!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L840!!!org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy!!!org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo!!!DFSInputStream.java:879!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L840!!!org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy!!!org.apache.hadoop.hdfs.DFSInputStream.readBuffer!!!DFSInputStream.java:889!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java#L1141!!!org.apache.hadoop.hdfs.DFSOutputStream.addBlock!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock!!!DFSOutputStream.java:1148!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java#L291!!!org.apache.hadoop.hdfs.DFSOutputStream.newStreamForCreate!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.create!!!DFSOutputStream.java:294!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java#L990!!!org.apache.hadoop.hdfs.DFSOutputStream.completeFile!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.complete!!!DFSOutputStream.java:997!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock!!!DFSStripedInputStream.java:247!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSStripedInputStream.java:258!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/FileChecksumHelper.java#L521!!!org.apache.hadoop.hdfs.FileChecksumHelper$ReplicatedFileChecksumComputer.checksumBlock!!!org.apache.hadoop.hdfs.FileChecksumHelper$ReplicatedFileChecksumComputer.tryDatanode!!!FileChecksumHelper.java:523!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/FileChecksumHelper.java#L653!!!org.apache.hadoop.hdfs.FileChecksumHelper$StripedFileNonStripedChecksumComputer.checksumBlockGroup!!!org.apache.hadoop.hdfs.FileChecksumHelper$StripedFileNonStripedChecksumComputer.tryDatanode!!!FileChecksumHelper.java:655!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/server/namenode/ha/ObserverReadProxyProvider.java#L431!!!org.apache.hadoop.hdfs.server.namenode.ha.ObserverReadProxyProvider$ObserverReadInvocationHandler.invoke!!!java.lang.reflect.Method.invoke!!!ObserverReadProxyProvider.java:543!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java#L197!!!org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache$SlotReleaser.run!!!org.apache.hadoop.hdfs.protocol.datatransfer.Sender.releaseShortCircuitFds!!!ShortCircuitCache.java:209!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java#L197!!!org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache$SlotReleaser.run!!!org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos$ReleaseShortCircuitAccessResponseProto.parseFrom!!!ShortCircuitCache.java:214!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java#L197!!!org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache$SlotReleaser.run!!!org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed!!!ShortCircuitCache.java:214!!!java.io.EOFException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java#L197!!!org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache$SlotReleaser.run!!!org.apache.hadoop.net.unix.DomainSocket.connect!!!UserGroupInformation.java:986!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/web/WebHdfsFileSystem.java#L824!!!org.apache.hadoop.hdfs.web.WebHdfsFileSystem$AbstractRunner.runWithRetry!!!org.apache.hadoop.hdfs.web.WebHdfsFileSystem$AbstractRunner.getUrl!!!WebHdfsFileSystem.java:827!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/web/WebHdfsFileSystem.java#L824!!!org.apache.hadoop.hdfs.web.WebHdfsFileSystem$AbstractRunner.runWithRetry!!!org.apache.hadoop.hdfs.web.WebHdfsFileSystem$AbstractRunner.connect!!!WebHdfsFileSystem.java:829!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/web/WebHdfsFileSystem.java#L824!!!org.apache.hadoop.hdfs.web.WebHdfsFileSystem$AbstractRunner.runWithRetry!!!org.apache.hadoop.hdfs.web.WebHdfsFileSystem$AbstractRunner.getResponse!!!WebHdfsFileSystem.java:830!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/balancer/Balancer.java#L885!!!org.apache.hadoop.hdfs.server.balancer.Balancer.run!!!org.apache.hadoop.hdfs.server.balancer.Balancer.doBalance!!!Balancer.java:887!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPServiceActor.java#L880!!!org.apache.hadoop.hdfs.server.datanode.BPServiceActor.run!!!org.apache.hadoop.hdfs.server.datanode.BPServiceActor.connectToNNAndHandshake!!!BPServiceActor.java:893!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DataXceiverServer.java#L226!!!org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run!!!org.apache.hadoop.hdfs.net.PeerServer.accept!!!DataXceiverServer.java:242!!!java.net.SocketTimeoutException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DataXceiverServer.java#L226!!!org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run!!!org.apache.hadoop.hdfs.server.datanode.DataXceiver.create!!!DataXceiverServer.java:253!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/ProvidedVolumeImpl.java#L163!!!org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.ProvidedVolumeImpl$ProvidedBlockPoolSlice.fetchVolumeMap!!!org.apache.hadoop.hdfs.server.common.blockaliasmap.BlockAliasMap.getReader!!!ProvidedVolumeImpl.java:165!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirEncryptionZoneOp.java#L585!!!org.apache.hadoop.hdfs.server.namenode.FSDirEncryptionZoneOp$EDEKCacheLoader.run!!!org.apache.hadoop.crypto.key.KeyProviderCryptoExtension.warmUpEncryptedKeys!!!FSDirEncryptionZoneOp.java:587!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSNamesystem.java#L4632!!!org.apache.hadoop.hdfs.server.namenode.FSNamesystem$LazyPersistFileScrubber.run!!!org.apache.hadoop.hdfs.server.namenode.FSNamesystem$LazyPersistFileScrubber.clearCorruptLazyPersistFiles!!!FSNamesystem.java:4671!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ha/EditLogTailer.java#L609!!!org.apache.hadoop.hdfs.server.namenode.ha.EditLogTailer$MultipleNameNodeProxy.getActiveNodeProxy!!!org.apache.hadoop.ipc.RPC.waitForProxy!!!EditLogTailer.java:632!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ha/EditLogTailer.java#L609!!!org.apache.hadoop.hdfs.server.namenode.ha.EditLogTailer$MultipleNameNodeProxy.getActiveNodeProxy!!!org.apache.hadoop.ipc.RPC.getProtocolVersion!!!EditLogTailer.java:633!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ReencryptionHandler.java#L328!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler.run!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler$ReencryptionPendingInodeIdCollector.checkPauseForTesting!!!ReencryptionHandler.java:333!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ReencryptionUpdater.java#L436!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks!!!org.apache.hadoop.util.StopWatch.start!!!ReencryptionUpdater.java:439!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ReencryptionUpdater.java#L436!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.processTask!!!ReencryptionUpdater.java:440!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/SecondaryNameNode.java#L341!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork!!!org.apache.hadoop.security.UserGroupInformation.checkTGTAndReloginFromKeytab!!!SecondaryNameNode.java:353!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/SecondaryNameNode.java#L341!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork!!!org.apache.hadoop.security.UserGroupInformation.getCurrentUser!!!SecondaryNameNode.java:353!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/SecondaryNameNode.java#L341!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.shouldCheckpointBasedOnCount!!!SecondaryNameNode.java:358!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/SecondaryNameNode.java#L341!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doCheckpoint!!!SecondaryNameNode.java:360!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/sps/BlockStorageMovementNeeded.java#L238!!!org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded$SPSPathIdProcessor.run!!!org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles!!!BlockStorageMovementNeeded.java:249!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/sps/BlockStorageMovementNeeded.java#L238!!!org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded$SPSPathIdProcessor.run!!!org.apache.hadoop.hdfs.server.namenode.sps.Context.removeSPSHint!!!BlockStorageMovementNeeded.java:256!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/sps/StoragePolicySatisfier.java#L217!!!org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run!!!org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded.removeItemTrackInfo!!!StoragePolicySatisfier.java:235!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/sps/StoragePolicySatisfier.java#L217!!!org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run!!!org.apache.hadoop.hdfs.server.namenode.sps.Context.getFileInfo!!!StoragePolicySatisfier.java:243!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/sps/StoragePolicySatisfier.java#L217!!!org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run!!!org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.analyseBlocksStorageMovementsAndAssignToDN!!!StoragePolicySatisfier.java:255!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/sps/ExternalSPSBlockMoveTaskHandler.java#L203!!!org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock!!!org.apache.hadoop.hdfs.server.balancer.KeyManager.getAccessToken!!!ExternalSPSBlockMoveTaskHandler.java:206!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/sps/ExternalSPSBlockMoveTaskHandler.java#L203!!!org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock!!!org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher.moveBlock!!!ExternalSPSBlockMoveTaskHandler.java:209!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/tools/DebugAdmin.java#L379!!!org.apache.hadoop.hdfs.tools.DebugAdmin$RecoverLeaseCommand.run!!!org.apache.hadoop.hdfs.DistributedFileSystem.recoverLease!!!DebugAdmin.java:384!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapred/YarnChild.java#L135!!!org.apache.hadoop.mapred.YarnChild.main!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.getTask!!!YarnChild.java:140!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/JobClient.java#L633!!!org.apache.hadoop.mapred.JobClient.getJob!!!org.apache.hadoop.mapred.JobClient.getJobInner!!!JobClient.java:639!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/JobEndNotifier.java#L87!!!org.apache.hadoop.mapred.JobEndNotifier.localRunnerNotification!!!org.apache.hadoop.mapred.JobEndNotifier.httpNotification!!!JobEndNotifier.java:89!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1251!!!org.apache.hadoop.mapred.Task.done!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending!!!Task.java:1253!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1315!!!org.apache.hadoop.mapred.Task.statusUpdate!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate!!!Task.java:1317!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1377!!!org.apache.hadoop.mapred.Task.sendDone!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.done!!!Task.java:1379!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1397!!!org.apache.hadoop.mapred.Task.commit!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.canCommit!!!Task.java:1399!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L860!!!org.apache.hadoop.mapred.Task$TaskReporter.run!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate!!!Task.java:885!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L860!!!org.apache.hadoop.mapred.Task$TaskReporter.run!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate!!!Task.java:891!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/lib/output/FileOutputCommitter.java#L375!!!org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob!!!org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJobInternal!!!FileOutputCommitter.java:377!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/task/reduce/EventFetcher.java#L64!!!org.apache.hadoop.mapreduce.task.reduce.EventFetcher.run!!!org.apache.hadoop.mapreduce.task.reduce.EventFetcher.getMapCompletionEvents!!!EventFetcher.java:66!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/task/reduce/Fetcher.java#L343!!!org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyFromHost!!!org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyMapOutput!!!Fetcher.java:346!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/task/reduce/Fetcher.java#L410!!!org.apache.hadoop.mapreduce.task.reduce.Fetcher.setupConnectionsWithRetry!!!org.apache.hadoop.mapreduce.task.reduce.Fetcher.openConnection!!!Fetcher.java:413!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/task/reduce/Fetcher.java#L713!!!org.apache.hadoop.mapreduce.task.reduce.Fetcher.connect!!!java.net.URLConnection.connect!!!Fetcher.java:717!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/tools/CLI.java#L662!!!org.apache.hadoop.mapreduce.tools.CLI.getJob!!!org.apache.hadoop.mapreduce.Cluster.getJob!!!CLI.java:660!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/tools/CLI.java#L662!!!org.apache.hadoop.mapreduce.tools.CLI.getJob!!!org.apache.hadoop.mapreduce.Cluster.getJob!!!CLI.java:670!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/main/java/org/apache/hadoop/mapred/ClientServiceDelegate.java#L322!!!org.apache.hadoop.mapred.ClientServiceDelegate.invoke!!!org.apache.hadoop.mapred.ClientServiceDelegate.getProxy!!!ClientServiceDelegate.java:325!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/main/java/org/apache/hadoop/mapred/ClientServiceDelegate.java#L322!!!org.apache.hadoop.mapred.ClientServiceDelegate.invoke!!!java.lang.reflect.Method.invoke!!!ClientServiceDelegate.java:326!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-aliyun/src/main/java/org/apache/hadoop/fs/aliyun/oss/AliyunOSSFileReaderTask.java#L72!!!org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask.run!!!org.apache.hadoop.io.IOUtils.readFully!!!AliyunOSSFileReaderTask.java:75!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-aws/src/main/java/org/apache/hadoop/fs/s3a/Invoker.java#L462!!!org.apache.hadoop.fs.s3a.Invoker.retryUntranslated!!!org.apache.hadoop.util.functional.CallableRaisingIOE.apply!!!Invoker.java:468!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/BlockBlobAppendStream.java#L716!!!org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal!!!org.apache.hadoop.fs.azure.StorageInterface$CloudBlockBlobWrapper.uploadBlock!!!BlockBlobAppendStream.java:720!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/BlockBlobAppendStream.java#L782!!!org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockListRequestInternal!!!org.apache.hadoop.fs.azure.StorageInterface$CloudBlockBlobWrapper.commitBlockList!!!BlockBlobAppendStream.java:787!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/WasbRemoteCallHelper.java#L129!!!org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest!!!org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest!!!WasbRemoteCallHelper.java:148!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/WasbRemoteCallHelper.java#L129!!!org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest!!!org.apache.http.client.HttpClient.execute!!!WasbRemoteCallHelper.java:151!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/WasbRemoteCallHelper.java#L129!!!org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest!!!org.apache.http.HttpEntity.getContent!!!WasbRemoteCallHelper.java:203!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/WasbRemoteCallHelper.java#L129!!!org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest!!!java.io.BufferedReader.readLine!!!WasbRemoteCallHelper.java:206!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/oauth2/AzureADAuthenticator.java#L303!!!org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenCall!!!org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenSingleCall!!!AzureADAuthenticator.java:307!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/oauth2/CustomTokenProviderAdapter.java#L72!!!org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter.refreshToken!!!org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee.getAccessToken!!!CustomTokenProviderAdapter.java:75!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/SimpleCopyListing.java#L722!!!org.apache.hadoop.tools.SimpleCopyListing$TraverseDirectory.traverseDirectoryMultiThreaded!!!org.apache.hadoop.tools.util.ProducerConsumer.take!!!SimpleCopyListing.java:750!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/SimpleCopyListing.java#L722!!!org.apache.hadoop.tools.SimpleCopyListing$TraverseDirectory.traverseDirectoryMultiThreaded!!!org.apache.hadoop.tools.util.DistCpUtils.toCopyListingFileStatus!!!SimpleCopyListing.java:757!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/SimpleCopyListing.java#L722!!!org.apache.hadoop.tools.SimpleCopyListing$TraverseDirectory.traverseDirectoryMultiThreaded!!!org.apache.hadoop.tools.SimpleCopyListing.addToFileListing!!!SimpleCopyListing.java:765!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/SimpleCopyListing.java#L722!!!org.apache.hadoop.tools.SimpleCopyListing$TraverseDirectory.traverseDirectoryMultiThreaded!!!org.apache.hadoop.tools.SimpleCopyListing.writeToFileListing!!!SimpleCopyListing.java:768!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/util/RetriableCommand.java#L85!!!org.apache.hadoop.tools.util.RetriableCommand.execute!!!org.apache.hadoop.tools.util.RetriableCommand.doExecute!!!RetriableCommand.java:87!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/src/main/java/org/apache/hadoop/tools/dynamometer/DynoInfraUtils.java#L235!!!org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties!!!org.apache.hadoop.fs.FileSystem.open!!!DynoInfraUtils.java:237!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/src/main/java/org/apache/hadoop/tools/dynamometer/DynoInfraUtils.java#L235!!!org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties!!!org.apache.hadoop.fs.Path.getFileSystem!!!DynoInfraUtils.java:237!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/src/main/java/org/apache/hadoop/tools/dynamometer/DynoInfraUtils.java#L235!!!org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties!!!java.util.Properties.load!!!DynoInfraUtils.java:239!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/src/main/java/org/apache/hadoop/tools/dynamometer/DynoInfraUtils.java#L458!!!org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForNameNodeJMXValue!!!org.apache.hadoop.tools.dynamometer.DynoInfraUtils.fetchNameNodeJMXValue!!!DynoInfraUtils.java:460!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L83812!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerLaunchContextProto.ContainerLaunchContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readTag!!!YarnProtos.java:88317!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L83812!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerLaunchContextProto.ContainerLaunchContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readMessage!!!YarnProtos.java:88328!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L83812!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerLaunchContextProto.ContainerLaunchContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readBytes!!!YarnProtos.java:88333!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L83812!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerLaunchContextProto.ContainerLaunchContextProto!!!org.apache.hadoop.thirdparty.protobuf.GeneratedMessageV3.parseUnknownField!!!YarnProtos.java:88391!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L87908!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerRetryContextProto.ContainerRetryContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readTag!!!YarnProtos.java:92413!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L87908!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerRetryContextProto.ContainerRetryContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readEnum!!!YarnProtos.java:92419!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L87908!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerRetryContextProto.ContainerRetryContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readInt32!!!YarnProtos.java:92435!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L87908!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerRetryContextProto.ContainerRetryContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readInt64!!!YarnProtos.java:92435!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L87908!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerRetryContextProto.ContainerRetryContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readRawVarint32!!!YarnProtos.java:92463!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L87908!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerRetryContextProto.ContainerRetryContextProto!!!org.apache.hadoop.thirdparty.protobuf.GeneratedMessageV3.parseUnknownField!!!YarnProtos.java:92467!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/src/main/java/org/apache/hadoop/yarn/client/cli/LogsCLI.java#L1542!!!org.apache.hadoop.yarn.client.cli.LogsCLI$ClientConnectionRetry.retryOn!!!org.apache.hadoop.yarn.client.cli.LogsCLI$ClientRetryOp.run!!!LogsCLI.java:1545!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/client/api/impl/TimelineConnector.java#L342!!!org.apache.hadoop.yarn.client.api.impl.TimelineConnector$TimelineClientConnectionRetry.retryOn!!!org.apache.hadoop.yarn.client.api.impl.TimelineConnector$TimelineClientRetryOp.run!!!TimelineConnector.java:341!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/client/api/impl/TimelineV2ClientImpl.java#L251!!!org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects!!!org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects!!!TimelineV2ClientImpl.java:255!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.java#L1278!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController$FSAction.runWithRetries!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController$FSAction.run!!!LogAggregationIndexedFileController.java:1279!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.java#L1321!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile!!!org.apache.hadoop.fs.RemoteIterator.hasNext!!!LogAggregationIndexedFileController.java:1320!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.java#L1321!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile!!!org.apache.hadoop.fs.RemoteIterator.next!!!LogAggregationIndexedFileController.java:1322!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.java#L1321!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile!!!org.apache.hadoop.fs.FileContext.open!!!LogAggregationIndexedFileController.java:1326!!!java.io.FileNotFoundException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.java#L1321!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile!!!java.io.DataInputStream.readFully!!!LogAggregationIndexedFileController.java:1328!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.java#L1321!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.deleteFileWithRetries!!!LogAggregationIndexedFileController.java:1331!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/main/java/org/apache/hadoop/yarn/server/federation/retry/FederationActionRetry.java#L31!!!org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.runWithRetries!!!org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.run!!!FederationActionRetry.java:33!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/main/java/org/apache/hadoop/yarn/server/uam/UnmanagedApplicationManager.java#L460!!!org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt!!!org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport!!!UnmanagedApplicationManager.java:475!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/main/java/org/apache/hadoop/yarn/server/uam/UnmanagedApplicationManager.java#L460!!!org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt!!!org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport!!!UnmanagedApplicationManager.java:486!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/main/java/org/apache/hadoop/yarn/server/uam/UnmanagedApplicationManager.java#L460!!!org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt!!!org.apache.hadoop.yarn.api.ApplicationBaseProtocol.getApplicationAttemptReport!!!UnmanagedApplicationManager.java:499!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/recovery/NMLeveldbStateStoreService.java#L355!!!org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState!!!org.apache.hadoop.yarn.server.utils.BuilderUtils.newContainerTokenIdentifier!!!NMLeveldbStateStoreService.java:368!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/recovery/NMLeveldbStateStoreService.java#L355!!!org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState!!!org.apache.hadoop.yarn.server.nodemanager.containermanager.container.ResourceMappings$AssignedResources.fromBytes!!!NMLeveldbStateStoreService.java:432!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/recovery/FileSystemRMStateStore.java#L788!!!org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore$FSAction.runWithRetries!!!org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore$FSAction.run!!!FileSystemRMStateStore.java:790!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-router/src/main/java/org/apache/hadoop/yarn/server/router/clientrm/FederationClientInterceptor.java#L1000!!!org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.submitReservation!!!org.apache.hadoop.yarn.api.ApplicationClientProtocol.submitReservation!!!FederationClientInterceptor.java:1218!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-router/src/main/java/org/apache/hadoop/yarn/server/router/clientrm/FederationClientInterceptor.java#L963!!!org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.getNewReservation!!!org.apache.hadoop.yarn.api.ApplicationClientProtocol.getNewReservation!!!FederationClientInterceptor.java:1151!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/FileSystemTimelineWriterImpl.java#L268!!!org.apache.hadoop.yarn.server.timelineservice.storage.FileSystemTimelineWriterImpl$FSAction.runWithRetries!!!org.apache.hadoop.yarn.server.timelineservice.storage.FileSystemTimelineWriterImpl$FSAction.run!!!FileSystemTimelineWriterImpl.java:271!!!java.io.IOException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop_timeout_bounds.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop_timeout_bounds.data new file mode 100644 index 00000000..975f93e4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/hadoop_timeout_bounds.data @@ -0,0 +1,221 @@ +TestBatchIbr.testIbr +TestCheckpoint.testActiveImageWithTimeDeltaRelaxation +TestCheckpoint.testActiveRejectSmallerTxidDeltaImage +TestCheckpoint.testCheckpoint +TestCheckpoint.testCheckpointAfterTwoFailedUploads +TestCheckpoint.testCheckpointTriggerOnTxnCount +TestCheckpoint.testCheckpointWithFailedStorageDir +TestCheckpoint.testCheckpointWithSeparateDirsAfterNameFails +TestCheckpoint.testDeleteTemporaryEditsOnStartup +TestCheckpoint.testEditFailureBeforeRename +TestCheckpoint.testEditFailureOnFirstCheckpoint +TestCheckpoint.testFailureBeforeRename +TestCheckpoint.testImportCheckpoint +TestCheckpoint.testLegacyOivImage +TestCheckpoint.testMultipleSecondaryNNsAgainstSameNN +TestCheckpoint.testMultipleSecondaryNNsAgainstSameNN2 +TestCheckpoint.testMultipleSecondaryNamenodes +TestCheckpoint.testNameDirError +TestCheckpoint.testNameDirLocking +TestCheckpoint.testNameNodeImageSendFailWrongDigest +TestCheckpoint.testNameNodeImageSendFailWrongSize +TestCheckpoint.testNamespaceVerifiedOnFileTransfer +TestCheckpoint.testReloadOnEditReplayFailure +TestCheckpoint.testSaveNamespace +TestCheckpoint.testSecondaryFailsWithErrorBeforeSettingHeaders +TestCheckpoint.testSecondaryImageDownload +TestCheckpoint.testSecondaryNameNodeLocking +TestCheckpoint.testSecondaryNameNodeWithDelegationTokens +TestCheckpoint.testSecondaryNamenodeError1 +TestCheckpoint.testSecondaryNamenodeError2 +TestCheckpoint.testSecondaryNamenodeError3 +TestCheckpoint.testSecondaryPurgesEditLogs +TestCheckpoint.testStorageAlreadyLockedErrorMessage +TestCheckpoint.testTooManyEditReplayFailures +TestComparators.testAllUserComparators +TestComparators.testBakedUserComparator +TestComparators.testDefaultMRComparator +TestComparators.testUserMRComparator +TestComparators.testUserValueGroupingComparator +TestCompressionEmulationUtils.testCompressibleGridmixRecord +TestCompressionEmulationUtils.testCompressionRatios +TestCompressionEmulationUtils.testFileQueueDecompression +TestCompressionEmulationUtils.testPossiblyCompressedDecompressedStreams +TestCompressionEmulationUtils.testRandomCompressedTextDataGenerator +TestCopyToLocal.testCopy +TestCopyToLocal.testCopySingleFile +TestCopyToLocal.testCopyWithThreads +TestCopyToLocal.testCopyWithThreadsAndQueueSize +TestCopyToLocal.testCopyWithThreadsAndQueueSizeWrong +TestDataDrivenDBInputFormat.testDateSplits +TestDatanodeDeath.testComplex +TestDatanodeDeath.testSimple0 +TestDatanodeDeath.testSimple1 +TestDatanodeDeath.testSimple2 +TestDecommissionWithStriped.testCountNodes +TestDecommissionWithStriped.testDecommission2NodeWithBusyNode +TestDecommissionWithStriped.testDecommissionTwoNodes +TestDecommissionWithStriped.testDecommissionWithBusyNode +TestDecommissionWithStriped.testDecommissionWithFailedReplicating +TestDecommissionWithStriped.testDecommissionWithMissingBlock +TestDecommissionWithStriped.testDecommissionWithURBlockForSameBlockGroup +TestDecommissionWithStriped.testFileChecksumAfterDecommission +TestDecommissionWithStriped.testFileFullBlockGroup +TestDecommissionWithStriped.testFileMultipleBlockGroups +TestDecommissionWithStriped.testFileSmallerThanOneCell +TestDecommissionWithStriped.testFileSmallerThanOneStripe +TestDecommissionWithStriped.testRecoveryWithDecommission +TestDirectoryCommitterScale.test_010_createTaskFiles +TestDirectoryCommitterScale.test_030_commitFiles +TestDirectoryCommitterScale.test_040_abortFiles +TestDistCh.testDistCh +TestFSEditLogLoader.testAddNewStripedBlock +TestFSEditLogLoader.testDisplayRecentEditLogOpCodes +TestFSEditLogLoader.testErasureCodingPolicyOperations +TestFSEditLogLoader.testFSEditLogOpCodes +TestFSEditLogLoader.testHasNonEcBlockUsingStripedIDForAddBlock +TestFSEditLogLoader.testHasNonEcBlockUsingStripedIDForUpdateBlocks +TestFSEditLogLoader.testReplicationAdjusted +TestFSEditLogLoader.testUpdateStripedBlocks +TestFSEditLogLoader.testValidateEmptyEditLog +TestFileOutputCommitter.testAbortV1 +TestFileOutputCommitter.testCommitterV1 +TestFileOutputCommitter.testCommitterV2 +TestFileOutputCommitter.testCommitterWithDuplicatedCommitV1 +TestFileOutputCommitter.testCommitterWithDuplicatedCommitV2 +TestFileOutputCommitter.testCommitterWithFailureV1 +TestFileOutputCommitter.testCommitterWithFailureV2 +TestFileOutputCommitter.testMapFileOutputCommitterV2 +TestFileOutputCommitter.testMapOnlyNoOutputV1 +TestFileOutputCommitter.testMapOnlyNoOutputV2 +TestFileOutputCommitter.testRecoveryUpgradeV1V2 +TestFileOutputCommitter.testRecoveryV1 +TestFileOutputCommitter.testRecoveryV2 +TestFileSystemAccessService.createFileSystem +TestFileSystemAccessService.fileSystemCache +TestFileSystemAccessService.fileSystemExecutor +TestFileSystemAccessService.serviceHadoopConf +TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap +TestFsVolumeList.testExcludeSlowDiskWhenChoosingVolume +TestFsVolumeList.testGetNextVolumeWithClosedVolume +TestFsVolumeList.testInstanceOfAddReplicaThreadPool +TestHDFSCLI.testAll +TestHFlush.hFlush_01 +TestHFlush.hFlush_02 +TestHFlush.hFlush_03 +TestHFlush.hSyncEndBlockAndUpdateLength +TestHFlush.hSyncEndBlock_00 +TestHFlush.hSyncEndBlock_01 +TestHFlush.hSyncEndBlock_02 +TestHFlush.hSyncEndBlock_03 +TestHFlush.hSyncUpdateLength_00 +TestHFlush.hSyncUpdateLength_01 +TestHFlush.hSyncUpdateLength_02 +TestHFlush.hSyncUpdateLength_03 +TestHFlush.testHFlushInterrupted +TestHFlush.testPipelineHeartbeat +TestHadoopArchives.testReadFileContent +TestHttpFSServer.testAccess +TestHttpFSServer.testAllowSnapshot +TestHttpFSServer.testContentType +TestHttpFSServer.testCreateFileWithUnmaskedPermissions +TestHttpFSServer.testCreateSnapshot +TestHttpFSServer.testCreateSnapshotNoSnapshotName +TestHttpFSServer.testCustomizedUserAndGroupNames +TestHttpFSServer.testDelegationTokenOperations +TestHttpFSServer.testDelegationTokenOperationsSsl +TestHttpFSServer.testDeleteSnapshot +TestHttpFSServer.testDirAcls +TestHttpFSServer.testDisallowSnapshot +TestHttpFSServer.testDisallowSnapshotException +TestHttpFSServer.testECPolicy +TestHttpFSServer.testErasureCodingPolicy +TestHttpFSServer.testFileAcls +TestHttpFSServer.testGetFileBlockLocations +TestHttpFSServer.testGetServerDefaults +TestHttpFSServer.testGetSnapshotDiff +TestHttpFSServer.testGetSnapshotDiffIllegalParam +TestHttpFSServer.testGetSnapshotList +TestHttpFSServer.testGetSnapshottableDirectoryList +TestHttpFSServer.testGetTrashRoot +TestHttpFSServer.testGlobFilter +TestHttpFSServer.testHdfsAccess +TestHttpFSServer.testMkdirWithUnmaskedPermissions +TestHttpFSServer.testMkdirs +TestHttpFSServer.testNoRedirect +TestHttpFSServer.testNoRedirectWithData +TestHttpFSServer.testOpenOffsetLength +TestHttpFSServer.testPerms +TestHttpFSServer.testRenameSnapshot +TestHttpFSServer.testStoragePolicySatisfier +TestHttpFSServer.testXAttrs +TestKeyFieldBasedComparator.testBasicUnixComparator +TestLineRecordReaderJobs.testCustomRecordDelimiters +TestLineRecordReaderJobs.testDefaultRecordDelimiters +TestMRKeyFieldBasedComparator.testBasicUnixComparator +TestMapRed.testBiggerInput +TestMapRed.testCompression +TestMapRed.testMapred +TestMapRed.testNullKeys +TestMapRed.testSmallInput +TestMapReduce.testMapred +TestMultipleCachefiles.testMultipleCachefiles +TestNameserviceRPCMetrics.testProxyOp +TestNameserviceRPCMetrics.testProxyOpCompleteConcurrent +TestRMFailover.testAutomaticFailover +TestRMFailover.testEmbeddedWebAppProxy +TestRMFailover.testExplicitFailover +TestRMFailover.testRMWebAppRedirect +TestRMFailover.testUncaughtExceptionHandlerWithHAEnabled +TestRMFailover.testWebAppProxyInStandAloneMode +TestReencryption.testCancelFutureThenReencrypt +TestReencryption.testCancelFutureThenRestart +TestReencryption.testDeleteDuringReencrypt +TestReencryption.testRaceCreateHandler +TestReencryption.testRaceDeleteCreateHandler +TestReencryption.testRaceDeleteCreateUpdater +TestReencryption.testRaceDeleteCurrentDirHandler +TestReencryption.testRaceDeleteCurrentDirUpdater +TestReencryption.testRaceDeleteHandler +TestReencryption.testRaceDeleteUpdater +TestReencryption.testRaceDeleteZoneHandler +TestReencryption.testReencryptCancel +TestReencryption.testReencryptCancelForUpdater +TestReencryption.testReencryptCommandsQueuedOrdering +TestReencryption.testReencryptLoadedFromEdits +TestReencryption.testReencryptLoadedFromFsimage +TestReencryption.testReencryptNestedZones +TestReencryption.testReencryptOrdering +TestReencryption.testReencryptRaceRename +TestReencryption.testReencryptSnapshots +TestReencryption.testReencryptionBasic +TestReencryption.testReencryptionKMSDown +TestReencryption.testReencryptionNNSafeMode +TestReencryption.testReencryptionUpdaterFaultCkpt +TestReencryption.testReencryptionUpdaterFaultOneTask +TestReencryption.testReencryptionUpdaterFaultRecover +TestReencryption.testReencryptionWithoutProvider +TestReencryption.testRestartAfterReencrypt +TestReencryption.testRestartAfterReencryptAndCheckpoint +TestReencryption.testRestartDuringReencrypt +TestReencryption.testRestartWithRenames +TestReencryption.testZoneDeleteDuringReencrypt +TestReplaceDatanodeOnFailure.testAppend +TestReplaceDatanodeOnFailure.testBestEffort +TestReplaceDatanodeOnFailure.testDefaultPolicy +TestReplaceDatanodeOnFailure.testReplaceDatanodeOnFailure +TestRouterAllResolver.testHashAll +TestRouterAllResolver.testRandomAll +TestRouterAllResolver.testSpaceAll +TestStoragePolicySatisfierWithStripedFile.testMoverWithFullStripe +TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks +TestStoragePolicySatisfierWithStripedFile.testWhenNoTargetDatanodeToSatisfyStoragePolicy +TestStoragePolicySatisfierWithStripedFile.testWhenOnlyFewTargetNodesAreAvailableToSatisfyStoragePolicy +TestStreamAggregate.testCommandLine +TestStreamXmlRecordReader.testStreamXmlRecordReader +TestStreaming.testCommandLine +TestViewFileSystemLinkRegex.testConfLinkRegexFixedDestMapping +TestViewFileSystemLinkRegex.testConfLinkRegexIndexMapping +TestViewFileSystemLinkRegex.testConfLinkRegexNamedGroupMapping +TestViewFileSystemLinkRegex.testConfLinkRegexWithInterceptors +TestViewFileSystemLinkRegex.testConfLinkRegexWithSingleInterceptor diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/pom-hadoop.xml b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/pom-hadoop.xml new file mode 100644 index 00000000..9960fc0b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/pom-hadoop.xml @@ -0,0 +1,963 @@ + + + + 4.0.0 + org.apache.hadoop + hadoop-main + 3.4.0-SNAPSHOT + Apache Hadoop Main + Apache Hadoop Main + pom + + + + + com.cenqua.clover + clover + + 3.0.2 + + + org.opentest4j + opentest4j + + 1.2.0 + test + + + + + + + ${distMgmtStagingId} + ${distMgmtStagingName} + ${distMgmtStagingUrl} + + + ${distMgmtSnapshotsId} + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + apache.website + scpexe://people.apache.org/www/hadoop.apache.org/docs/r${project.version} + + + + + + + org.aspectj + aspectjrt + ${aspectj.version} + + + edu.uchicago.cs.systems + wasabi + ${wasabi.version} + + + + + + ${distMgmtSnapshotsId} + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + repository.jboss.org + https://repository.jboss.org/nexus/content/groups/public/ + + false + + + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + + + + + Apache Software Foundation + https://www.apache.org + + + + + 3.4.0-SNAPSHOT + + apache.snapshots.https + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + apache.staging.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + UTF-8 + UTF-8 + + + 2.8.1 + 3.9.1 + 1.5 + 1.7 + 2.4 + 3.0.2 + 3.0.0 + 2.0.0 + 3.0.1 + 1.5 + 1.5 + 3.0.1 + 0.12 + 2.4 + 4.4.1 + 2.5.0 + 1.0.0 + 3.1.0 + 8.29 + 7.1.1 + 4.2.2 + 4.2.0 + 1.1.1 + 3.8.1 + 2.7.6 + + bash + + org.fusesource.leveldbjni + + + 1.9.8.M1 + 1.13 + 1.0.0 + + + + + hadoop-project + hadoop-project-dist + hadoop-assemblies + hadoop-maven-plugins + hadoop-common-project + hadoop-hdfs-project + hadoop-yarn-project + hadoop-mapreduce-project + hadoop-tools + hadoop-dist + hadoop-minicluster + hadoop-client-modules + hadoop-build-tools + hadoop-cloud-storage-project + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + ${maven-dependency-plugin.version} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${maven-enforcer-plugin.version} + + + + [3.0.2,) + + + [1.8,) + + + + + + de.skuzzle.enforcer + restrict-imports-enforcer-rule + ${restrict-imports.enforcer.version} + + + + + banned-illegal-imports + process-sources + + enforce + + + + + true + Use hadoop-thirdparty shaded instead of curator shaded + + org.apache.curator.shaded.** + + + + true + Use hadoop-common provided Sets rather than Guava provided Sets + + org.apache.hadoop.thirdparty.com.google.common.collect.Sets + org.apache.hadoop.thirdparty.com.google.common.collect.Sets.** + + + + true + Use hadoop-common provided Lists rather than Guava provided Lists + + org.apache.hadoop.thirdparty.com.google.common.collect.Lists + org.apache.hadoop.thirdparty.com.google.common.collect.Lists.** + + + + true + Use hadoop-annotation provided VisibleForTesting rather than the one provided by Guava + + org.apache.hadoop.thirdparty.com.google.common.annotations.VisibleForTesting + + + + true + Use alternatives to Guava common classes + + com.google.common.** + + + + true + Use alternative to Guava provided BaseEncoding + + org.apache.hadoop.thirdparty.com.google.common.io.BaseEncoding + org.apache.hadoop.thirdparty.com.google.common.io.BaseEncoding.** + + + + true + Use alternative to Guava provided Optional + + org.apache.hadoop.thirdparty.com.google.common.base.Optional + org.apache.hadoop.thirdparty.com.google.common.base.Optional.** + + + + true + Use alternative to Guava provided Function + + org.apache.hadoop.thirdparty.com.google.common.base.Function + org.apache.hadoop.thirdparty.com.google.common.base.Function.** + + + + true + Use alternative to Guava provided Predicate + + org.apache.hadoop.thirdparty.com.google.common.base.Predicate + org.apache.hadoop.thirdparty.com.google.common.base.Predicate.** + + + + true + Use alternative to Guava provided Supplier + + org.apache.hadoop.thirdparty.com.google.common.base.Supplier + org.apache.hadoop.thirdparty.com.google.common.base.Supplier.** + + + + true + Use alternative to Guava provided ImmutableListMultimap + + org.apache.hadoop.thirdparty.com.google.common.collect.ImmutableListMultimap + org.apache.hadoop.thirdparty.com.google.common.collect.ImmutableListMultimap.** + + + + true + Use hadoop-common provided Preconditions rather than Guava provided + + org.apache.hadoop.thirdparty.com.google.common.base.Preconditions + org.apache.hadoop.thirdparty.com.google.common.base.Preconditions.** + + + + true + Use Fasterxml Jackson 2 dependency in place of org.codehaus Jackson 1 + + org.codehaus.jackson.** + + + + true + Use HttpServlet APIs instead + + org.glassfish.grizzly + org.glassfish.grizzly.** + + + + true + Use slf4j based Logger + + org.apache.commons.logging.** + + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven-deploy-plugin.version} + + + org.apache.rat + apache-rat-plugin + ${apache-rat-plugin.version} + + + org.apache.maven.plugins + maven-antrun-plugin + ${maven-antrun-plugin.version} + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + org.apache.maven.wagon + wagon-ssh + ${wagon-ssh.version} + + + + + + org.eclipse.m2e + lifecycle-mapping + ${lifecycle-mapping.version} + + + + + + org.apache.maven.plugins + maven-antrun-plugin + [1.7,) + + run + + + + + + + + + org.apache.maven.plugins + maven-resources-plugin + [2.2,) + + testResources + resources + + + + + + + + + org.apache.avro + avro-maven-plugin + [1.5.3,) + + schema + protocol + + + + + + + + + org.codehaus.mojo.jspc + jspc-maven-plugin + [2.0-alpha-3,) + + compile + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + [2.4,) + + copy-dependencies + build-classpath + + + + + + + + + org.codehaus.mojo + exec-maven-plugin + [1.2,) + + exec + + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + [2.3.1,) + + test-jar + + + + + + + + + + + + org.openclover + clover-maven-plugin + ${clover-maven-plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${maven-bundle-plugin.version} + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven-checkstyle-plugin.version} + + + org.apache.hadoop + hadoop-build-tools + ${hadoop.version} + + + com.puppycrawl.tools + checkstyle + ${checkstyle.version} + + + + checkstyle/checkstyle.xml + checkstyle/suppressions.xml + true + false + ${project.build.directory}/test/checkstyle-errors.xml + + + + org.owasp + dependency-check-maven + ${dependency-check-maven.version} + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs-maven-plugin.version} + + + com.github.spotbugs + spotbugs + ${spotbugs.version} + + + + + org.jsonschema2pojo + jsonschema2pojo-maven-plugin + ${jsonschema2pojo-maven-plugin.version} + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + false + + + clean + + enforce + + pre-clean + + + default + + enforce + + validate + + + site + + enforce + + pre-site + + + enforce-property + + enforce + + + + + hadoop.version + You must set a hadoop.version to be the same as ${project.version} + ${project.version} + The hadoop.version property should be set and should be ${project.version}. + + + true + + + + + + org.apache.rat + apache-rat-plugin + + + .gitattributes + .gitignore + .git/** + .github/pull_request_template.md + .idea/** + **/build/** + **/patchprocess/** + **/*.js + licenses/** + licenses-binary/** + dev-support/docker/pkg-resolver/packages.json + dev-support/docker/pkg-resolver/platforms.json + **/target/** + + + + + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.felix + maven-bundle-plugin + true + true + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven-checkstyle-plugin.version} + + + + org.owasp + dependency-check-maven + ${dependency-check-maven.version} + + + com.github.spotbugs + spotbugs-maven-plugin + + + org.cyclonedx + cyclonedx-maven-plugin + ${cyclonedx.version} + + + + + dev.aspectj + aspectj-maven-plugin + ${aspectj-maven.version} + + 1.8 + 1.8 + true + true + + + edu.uchicago.cs.systems + wasabi + + + + --add-exports=java.base/sun.net.spi.nameservice=ALL-UNNAMED + --add-opens=java.base/sun.net.spi.nameservice=ALL-UNNAMED + + + + + + test-compile + compile + + + 1.8 + 1.8 + + false + true + true + unmatchedSuperTypeInCall=ignore,adviceDidNotMatch=ignore,typeNotExposedToWeaver=ignore,uncheckedAdviceConversion=ignore,invalidAbsoluteTypeName=ignore,cantFindType=ignore + + + + + + org.aspectj + aspectjtools + ${aspectj.version} + + + + + + + + + true + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + false + + + aggregate + + 1024m + true + false + ${maven.compile.source} + ${maven.compile.encoding} + ${project.build.directory}/site + hadoop-project/api + + org.apache.hadoop.authentication*,org.apache.hadoop.mapreduce.v2.proto,org.apache.hadoop.yarn.proto,org.apache.hadoop.yarn.server*,org.apache.hadoop.yarn.webapp* + + + Common + org.apache.hadoop* + + + HDFS + org.apache.hadoop.hdfs* + + + MapReduce + org.apache.hadoop.mapred* + + + YARN + org.apache.hadoop.yarn* + + + org.apache.hadoop.classification.tools.IncludePublicAnnotationsStandardDoclet + + + org.apache.hadoop + hadoop-annotations + ${project.version} + + + true + + + false + + + + org.apache.hadoop:hadoop-annotations + + + + + aggregate + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + ${maven-dependency-plugin.version} + + + + analyze-report + + + + + + + + + + src + + false + + + + + org.apache.maven.plugins + maven-assembly-plugin + false + + + src-dist + package + + single + + + false + false + hadoop-${project.version}-src + hadoop-dist/target + + + + hadoop-assemblies/src/main/resources/assemblies/hadoop-src.xml + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + false + + + src-dist-msg + package + + run + + + + + Hadoop source tar available at: ${basedir}/hadoop-dist/target/hadoop-${project.version}-src.tar.gz + + + + + + + + + + + + dist + + + + org.cyclonedx + cyclonedx-maven-plugin + ${cyclonedx.version} + + + package + + makeBom + + + + + xml + + + + + + + + sign + + + + org.apache.maven.plugins + maven-gpg-plugin + ${maven-gpg-plugin.version} + + + sign-artifacts + verify + + sign + + + + + + + + + clover + + false + + clover + + + + ${project.build.directory}/clover/hadoop-coverage.db + + true + true + true + false + + + + + org.openclover + clover-maven-plugin + + false + true + ${cloverDatabase} + 50% + ${project.build.directory}/clover + ${cloverAlwaysReport} + ${cloverGenHtml} + ${cloverGenXml} + ${cloverGenHistorical} + + **/examples/**/*.java + **/hamlet/*.java + **/ha/proto/*.java + **/protocol/proto/*.java + **/compiler/generated/*.java + **/protobuf/*.java + **/v2/proto/*.java + **/yarn/proto/*.java + **/security/proto/*.java + **/tools/proto/*.java + **/hs/proto/*.java + + + + + clover-setup + process-sources + + setup + + + + clover + test + + clover + + + + + + + + + aarch64 + + org.openlabtesting.leveldbjni + + + + linux + aarch64 + + + + + + \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.conf new file mode 100644 index 00000000..c6d1e4d7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.data new file mode 100644 index 00000000..397dd50a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L622!!!org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo!!!org.apache.hadoop.hdfs.DFSInputStream.chooseDataNode!!!DFSInputStream.java:637!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.conf new file mode 100644 index 00000000..4d3874cb --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.data new file mode 100644 index 00000000..ec89adb5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirEncryptionZoneOp.java#L585!!!org.apache.hadoop.hdfs.server.namenode.FSDirEncryptionZoneOp$EDEKCacheLoader.run!!!org.apache.hadoop.crypto.key.KeyProviderCryptoExtension.warmUpEncryptedKeys!!!FSDirEncryptionZoneOp.java:587!!!java.net.SocketException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.conf new file mode 100644 index 00000000..e0e4dd26 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.data new file mode 100644 index 00000000..592cf524 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//warmUpEncryptedKeys//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FSInputChecker.java#L301!!!org.apache.hadoop.fs.FSInputChecker.readChecksumChunk!!!org.apache.hadoop.fs.FSInputChecker.readChunk!!!FSInputChecker.java:305!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.conf new file mode 100644 index 00000000..f4d70289 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.data new file mode 100644 index 00000000..6ef0bfcf --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FSInputChecker.java#L301!!!org.apache.hadoop.fs.FSInputChecker.readChecksumChunk!!!org.apache.hadoop.fs.FSInputChecker.readChunk!!!FSInputChecker.java:305!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.conf new file mode 100644 index 00000000..dd07e7ce --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.data new file mode 100644 index 00000000..a95e0b33 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java#L1141!!!org.apache.hadoop.hdfs.DFSOutputStream.addBlock!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock!!!DFSOutputStream.java:1143!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.conf new file mode 100644 index 00000000..cf340a0c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.data new file mode 100644 index 00000000..b2573113 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L1177!!!org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSInputStream.java:1181!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.conf new file mode 100644 index 00000000..eec6fbfc --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.data new file mode 100644 index 00000000..47b321ca --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/FileChecksumHelper.java#L521!!!org.apache.hadoop.hdfs.FileChecksumHelper$ReplicatedFileChecksumComputer.checksumBlock!!!org.apache.hadoop.hdfs.FileChecksumHelper$ReplicatedFileChecksumComputer.tryDatanode!!!FileChecksumHelper.java:523!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.conf new file mode 100644 index 00000000..225538d3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.data new file mode 100644 index 00000000..3dc83d98 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L344!!!org.apache.hadoop.hdfs.DFSInputStream.readBlockLength!!!org.apache.hadoop.hdfs.DFSUtilClient.createClientDatanodeProtocolProxy!!!DFSInputStream.java:348!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.conf new file mode 100644 index 00000000..a3eaff9b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.data new file mode 100644 index 00000000..019d2604 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/LeaseRenewer.java#L440!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew!!!LeaseRenewer.java:445!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.conf new file mode 100644 index 00000000..ce7498d1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.data new file mode 100644 index 00000000..f3ab6767 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1550!!!org.apache.hadoop.hdfs.DataStreamer.transfer!!!org.apache.hadoop.hdfs.DataStreamer$StreamerStreams.sendTransferBlock!!!DataStreamer.java:1558!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.conf new file mode 100644 index 00000000..6cc9d084 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.data new file mode 100644 index 00000000..019d2604 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/LeaseRenewer.java#L440!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew!!!LeaseRenewer.java:445!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.conf new file mode 100644 index 00000000..71483c63 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.data new file mode 100644 index 00000000..81cd9bf5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPServiceActor.java#L895!!!org.apache.hadoop.hdfs.server.datanode.BPServiceActor.run!!!org.apache.hadoop.hdfs.server.datanode.BPServiceActor.connectToNNAndHandshake!!!BPServiceActor.java:903!!!java.net.SocketException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.conf new file mode 100644 index 00000000..66b77e5a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.data new file mode 100644 index 00000000..4c0affa3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L622!!!org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSInputStream.java:645!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.conf new file mode 100644 index 00000000..3a7d402e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.data new file mode 100644 index 00000000..0943556c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.net.NetUtils.getInputStream!!!DataStreamer.java:1837!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.conf new file mode 100644 index 00000000..c618b37a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.data new file mode 100644 index 00000000..019d2604 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/LeaseRenewer.java#L440!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew!!!LeaseRenewer.java:445!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.conf new file mode 100644 index 00000000..ccff78e0 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.data new file mode 100644 index 00000000..4271ce5d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L613!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!org.apache.hadoop.net.NetUtils.connect!!!Client.java:668!!!java.net.ConnectException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.conf new file mode 100644 index 00000000..b82ae3f5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.data new file mode 100644 index 00000000..18318d46 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.DataStreamer.createSocketForPipeline!!!DataStreamer.java:1832!!!java.net.SocketException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.conf new file mode 100644 index 00000000..b50a14b4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.data new file mode 100644 index 00000000..a7d82f22 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java#L291!!!org.apache.hadoop.hdfs.DFSOutputStream.newStreamForCreate!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.create!!!DFSOutputStream.java:294!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.conf new file mode 100644 index 00000000..caba43a4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.data new file mode 100644 index 00000000..e463af73 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/SecondaryNameNode.java#L341!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.shouldCheckpointBasedOnCount!!!SecondaryNameNode.java:358!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.conf new file mode 100644 index 00000000..21995051 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.data new file mode 100644 index 00000000..a262fcd3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock!!!DFSStripedInputStream.java:245!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.conf new file mode 100644 index 00000000..83b00166 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.data new file mode 100644 index 00000000..de18cb5d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ReencryptionUpdater.java#L436!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.processTask!!!ReencryptionUpdater.java:440!!!RetriableException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.conf new file mode 100644 index 00000000..adcf412b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.data new file mode 100644 index 00000000..019d2604 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/LeaseRenewer.java#L440!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew!!!LeaseRenewer.java:445!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.conf new file mode 100644 index 00000000..12e0a377 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.data new file mode 100644 index 00000000..7ad9b323 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/sps/ExternalSPSBlockMoveTaskHandler.java#L203!!!org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock!!!org.apache.hadoop.hdfs.server.balancer.KeyManager.getAccessToken!!!ExternalSPSBlockMoveTaskHandler.java:206!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.conf new file mode 100644 index 00000000..bbb0a548 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.data new file mode 100644 index 00000000..ec89adb5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirEncryptionZoneOp.java#L585!!!org.apache.hadoop.hdfs.server.namenode.FSDirEncryptionZoneOp$EDEKCacheLoader.run!!!org.apache.hadoop.crypto.key.KeyProviderCryptoExtension.warmUpEncryptedKeys!!!FSDirEncryptionZoneOp.java:587!!!java.net.SocketException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.conf new file mode 100644 index 00000000..dc3f7016 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.data new file mode 100644 index 00000000..a7456842 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1377!!!org.apache.hadoop.mapred.Task.sendDone!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.done!!!Task.java:1379!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.conf new file mode 100644 index 00000000..b58e3720 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.data new file mode 100644 index 00000000..53fc96a6 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/lib/output/FileOutputCommitter.java#L375!!!org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob!!!org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJobInternal!!!FileOutputCommitter.java:377!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.conf new file mode 100644 index 00000000..b7c588be --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.data new file mode 100644 index 00000000..a7456842 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1377!!!org.apache.hadoop.mapred.Task.sendDone!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.done!!!Task.java:1379!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.conf new file mode 100644 index 00000000..f92bce47 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.data new file mode 100644 index 00000000..a7456842 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1377!!!org.apache.hadoop.mapred.Task.sendDone!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.done!!!Task.java:1379!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.conf new file mode 100644 index 00000000..cf775654 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.data new file mode 100644 index 00000000..3f2b005e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1315!!!org.apache.hadoop.mapred.Task.statusUpdate!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate!!!Task.java:1317!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.conf new file mode 100644 index 00000000..0415330e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.data new file mode 100644 index 00000000..a7456842 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1377!!!org.apache.hadoop.mapred.Task.sendDone!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.done!!!Task.java:1379!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.conf new file mode 100644 index 00000000..1a651be8 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.data new file mode 100644 index 00000000..3f2b005e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1315!!!org.apache.hadoop.mapred.Task.statusUpdate!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate!!!Task.java:1317!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.conf new file mode 100644 index 00000000..c0b72643 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.data new file mode 100644 index 00000000..3f2b005e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1315!!!org.apache.hadoop.mapred.Task.statusUpdate!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate!!!Task.java:1317!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.conf new file mode 100644 index 00000000..b6568012 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.data new file mode 100644 index 00000000..ce98ff5b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1251!!!org.apache.hadoop.mapred.Task.done!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending!!!Task.java:1253!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.conf new file mode 100644 index 00000000..497bfb35 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.data new file mode 100644 index 00000000..7ac78106 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/UserGroupInformation.java#L979!!!org.apache.hadoop.security.UserGroupInformation$AutoRenewalForUserCredsRunnable.run!!!org.apache.hadoop.security.UserGroupInformation$AutoRenewalForUserCredsRunnable.relogin!!!UserGroupInformation.java:986!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.conf new file mode 100644 index 00000000..1839ee15 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.data new file mode 100644 index 00000000..cbc4b54c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L235!!!org.apache.hadoop.hdfs.DFSInputStream.openInfo!!!org.apache.hadoop.hdfs.DFSInputStream.getLastBlockLength!!!DFSInputStream.java:243!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.conf new file mode 100644 index 00000000..06bfbc0f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.data new file mode 100644 index 00000000..56af3faa --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DataXceiverServer.java#L240!!!org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run!!!org.apache.hadoop.hdfs.server.datanode.DataXceiver.create!!!DataXceiverServer.java:253!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.conf new file mode 100644 index 00000000..f29fc968 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.data new file mode 100644 index 00000000..a7456842 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1377!!!org.apache.hadoop.mapred.Task.sendDone!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.done!!!Task.java:1379!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.conf new file mode 100644 index 00000000..61d0260a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.data new file mode 100644 index 00000000..ce98ff5b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1251!!!org.apache.hadoop.mapred.Task.done!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending!!!Task.java:1253!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.conf new file mode 100644 index 00000000..e7049c21 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.data new file mode 100644 index 00000000..2b4f0088 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/task/reduce/EventFetcher.java#L64!!!org.apache.hadoop.mapreduce.task.reduce.EventFetcher.run!!!org.apache.hadoop.mapreduce.task.reduce.EventFetcher.getMapCompletionEvents!!!EventFetcher.java:66!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.conf new file mode 100644 index 00000000..d56df585 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.data new file mode 100644 index 00000000..ec89adb5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirEncryptionZoneOp.java#L585!!!org.apache.hadoop.hdfs.server.namenode.FSDirEncryptionZoneOp$EDEKCacheLoader.run!!!org.apache.hadoop.crypto.key.KeyProviderCryptoExtension.warmUpEncryptedKeys!!!FSDirEncryptionZoneOp.java:587!!!java.net.SocketException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.conf new file mode 100644 index 00000000..667e321f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.data new file mode 100644 index 00000000..0943556c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.net.NetUtils.getInputStream!!!DataStreamer.java:1837!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.conf new file mode 100644 index 00000000..10e261c3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.data new file mode 100644 index 00000000..56af3faa --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DataXceiverServer.java#L240!!!org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run!!!org.apache.hadoop.hdfs.server.datanode.DataXceiver.create!!!DataXceiverServer.java:253!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.conf new file mode 100644 index 00000000..fc63c9d5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.data new file mode 100644 index 00000000..ca8b1acd --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/SimpleCopyListing.java#L748!!!org.apache.hadoop.tools.SimpleCopyListing$TraverseDirectory.traverseDirectoryMultiThreaded!!!org.apache.hadoop.tools.util.DistCpUtils.toCopyListingFileStatus!!!SimpleCopyListing.java:757!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.conf new file mode 100644 index 00000000..7e6114c8 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.data new file mode 100644 index 00000000..6ea9f2fb --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ha/ActiveStandbyElector.java#L853!!!org.apache.hadoop.ha.ActiveStandbyElector.reEstablishSession!!!org.apache.hadoop.ha.ActiveStandbyElector.createConnection!!!ActiveStandbyElector.java:858!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase.conf new file mode 100644 index 00000000..ba08c39f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase.conf @@ -0,0 +1,3 @@ +retry_data_file: /home/bastoica/projects/wasabi/tool/wasabi/config/hbase/hbase_retry_locations.data +injection_policy: max-count +max_injection_count: 0 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase_retry_bounds.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase_retry_bounds.data new file mode 100644 index 00000000..4ea9802f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase_retry_bounds.data @@ -0,0 +1,158 @@ +Var name!!!Assigned value!!!Assign method!!!Test class +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!AbstractTestShell +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestShellRSGroups +hbase.client.retries.number!!!100!!!setInt!!!IntegrationTestMobCompaction +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!3!!!setInt!!!TestShadeSaslAuthenticationProvider +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestRefreshHFilesBase +ReadOnlyZKClient.RECOVERY_RETRY!!!3!!!setInt!!!TestReadOnlyZKClient +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncCoprocessorOnAllRegionServersEndpoint +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestCoprocessorEndpoint +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncCoprocessorEndpoint +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestZstdDictionarySplitMerge +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestBackupDeleteWithFailures +|hbase.client.retries.number"!!!"3"!!!setInt!!!TestThriftHBaseServiceHandler +"hbase.client.retries.number"!!!"3"!!!setInt!!!TestThriftHBaseServiceHandler +"hbase.client.retries.number"!!!"3"!!!setInt!!!TestThriftHBaseServiceHandlerWithReadOnly +"hbase.client.retries.number"!!!3!!!setInt!!!TestThriftServer +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestExportSnapshotV1NoCluster +DFSConfigKeys.DFS_CLIENT_RETRY_WINDOW_BASE!!!0!!!setInt!!!TestFSUtils +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!5!!!setInt!!!TestNamespaceAuditor +hbase.client.retries.number!!!100!!!setInt!!!MobStressToolRunner +hbase.client.retries.number!!!100!!!setInt!!!TestRSMobFileCleanerChore +hbase.client.retries.number!!!100!!!setInt!!!TestMobFileCleanerChore +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestBulkLoadHFilesSplitRecovery +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestBulkLoadHFilesSplitRecovery +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestRestoreFlushSnapshotFromClient +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestRegionServerCoprocessorExceptionWithAbort +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestRegionServerCoprocessorExceptionWithAbort +dfs.client.block.recovery.retries!!!2!!!setInt!!!TestWALObserver +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestMasterCoprocessorExceptionWithAbort +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestIncrementAndAppendWithNullResult +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestNegativeMemStoreSizeWithSlowCoprocessor +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setLong!!!TestClientOperationTimeout +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestPassCustomCellViaRegionObserver +hbase.ipc.client.connect.max.retries!!!1!!!setInt!!!TestFullLogReconstruction +dfs.client.block.recovery.retries!!!1!!!setInt!!!TestFullLogReconstruction +zookeeper.recovery.retry!!!1!!!setInt!!!TestReplicationBase +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestReplicationBase +replication.source.maxretriesmultiplier!!!10!!!setInt!!!TestReplicationBase +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestReplicationBase +zookeeper.recovery.retry!!!1!!!setInt!!!TestReplicationWithTags +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestReplicationWithTags +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestReplicationWithTags +zookeeper.recovery.retry!!!1!!!setInt!!!SyncReplicationTestBase +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!SyncReplicationTestBase +replication.source.maxretriesmultiplier!!!10!!!setInt!!!SyncReplicationTestBase +hbase.security.relogin.maxretries!!!1!!!setInt!!!TestRpcSkipInitialSaslHandshake +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestRpcClientLeaks +zookeeper.recovery.retry!!!1!!!setInt!!!TestMetaRegionReplicaReplication +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestMetaRegionReplicaReplication +HConstants.HBASE_CLIENT_SERVERSIDE_RETRIES_MULTIPLIER!!!1!!!setInt!!!TestMetaRegionReplicaReplication +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestWALEntryStreamCompressionReset +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestReplicationSource +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestReplicationSource +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestReplicationSource +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestReplicationSource +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestBasicWALEntryStream +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestBasicWALEntryStream +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestBasicWALEntryStream +zookeeper.recovery.retry!!!1!!!setInt!!!TestRegionReplicaReplication +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestRegionReplicaReplication +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!5!!!setInt!!!TestRegionReplicaReplication +HConstants.HBASE_CLIENT_SERVERSIDE_RETRIES_MULTIPLIER!!!1!!!setInt!!!TestRegionReplicaReplication +hbase.security.relogin.maxretries!!!1!!!setInt!!!TestSecurityRpcSentBytesMetrics +zookeeper.recovery.retry!!!1!!!setInt!!!TestReplicationWithWALExtendedAttributes +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestReplicationWithWALExtendedAttributes +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestReplicationWithWALExtendedAttributes +hbase.ipc.client.connect.max.retries!!!1!!!setInt!!!TestBoundedRegionGroupingStrategy +dfs.client.block.recovery.retries!!!1!!!setInt!!!TestBoundedRegionGroupingStrategy +hbase.ipc.client.connect.max.retries!!!1!!!setInt!!!TestFSHLogProvider +dfs.client.block.recovery.retries!!!1!!!setInt!!!TestFSHLogProvider +hbase.ipc.client.connect.max.retries!!!1!!!setInt!!!TestWALFactory +dfs.client.block.recovery.retries!!!1!!!setInt!!!TestWALFactory +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestSplitMerge +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestRegionServerScan +RegionReplicationSink.RETRIES_NUMBER!!!1!!!setInt!!!TestRegionReplicationForWriteException +RegionReplicationSink.RETRIES_NUMBER!!!1!!!setInt!!!TestRegionReplicationForFlushMarker +RegionReplicationSink.RETRIES_NUMBER!!!15!!!setInt!!!TestRegionReplicationSinkCallbackAndFlushConcurrently +hbase.client.retries.number!!!2!!!setInt!!!TestIsDeleteFailure +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!5!!!setInt!!!TestEndToEndSplitTransaction +zookeeper.recovery.retry!!!0!!!setInt!!!TestRemoveRegionMetrics +zookeeper.recovery.retry!!!0!!!setInt!!!TestRegionServerMetrics +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestSettingTimeoutOnBlockingPoint +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestRegionInterrupt +dfs.client.block.write.retries!!!10!!!setInt!!!TestLogRollAbort +FanOutOneBlockAsyncDFSOutputHelper.ASYNC_DFS_OUTPUT_CREATE_MAX_RETRIES!!!100!!!setInt!!!TestAsyncLogRolling +dfs.client.block.recovery.retries!!!1!!!setInt!!!AbstractTestProtobufLog +dfs.client.block.recovery.retries!!!2!!!setInt!!!AbstractTestWALReplay +hbase.hstore.flush.retries.number!!!1!!!setInt!!!TestHRegion +hbase.hstore.flush.retries.number!!!1!!!setInt!!!TestHRegion +RegionReplicationSink.RETRIES_NUMBER!!!1!!!setInt!!!TestWALSyncTimeoutException +dfs.client.block.write.retries!!!30!!!setInt!!!TestLogRolling +hbase.ipc.client.connect.max.retries!!!1!!!setInt!!!AbstractTestFSWAL +dfs.client.block.recovery.retries!!!1!!!setInt!!!AbstractTestFSWAL +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!0!!!setInt!!!TestCompactionWithShippingCoprocessor +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!0!!!setInt!!!TestScannerTimeoutHandling +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestFSErrorsExposed +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestTags +hbase.hstore.flush.retries.number!!!1!!!setInt!!!TestHStore +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!100!!!setInt!!!TestConnection +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestConnection +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!CloneSnapshotFromClientTestBase +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestTableOperationException +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncReplicationAdminApi +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestFromClientSide3 +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestFromClientSide3 +zookeeper.recovery.retry!!!1!!!setInt!!!TestSeparateClientZKCluster +zookeeper.recovery.retry!!!1!!!setInt!!!TestReplicaWithCluster +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!0!!!setInt!!!TestBlockEvictionFromClient +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!100!!!setInt!!!TestAsyncAdminBuilder +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncClusterAdminApi2 +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncAdminBase +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncProcedureAdminApi +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!5!!!setInt!!!AbstractTestCITimeout +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestReplicasClient +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!3!!!setInt!!!TestFromClientSideScanExcpetion +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!0!!!setInt!!!TestAvoidCellReferencesIntoShippedBlocks +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncQuotaAdminApi +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!0!!!setInt!!!TestMalformedCellFromClient +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!RestoreSnapshotFromClientTestBase +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestBadReplicationPeer +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestReplicationAdminForSyncReplication +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncReplicationAdminApiWithClusters +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestAsyncClientPauseForRpcThrottling +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncNamespaceAdminApi +hbase.client.retries.number!!!3!!!setInt!!!TestEntityLocks +dfs.client.block.write.retries!!!30!!!setInt!!!TestAdmin2 +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncClusterAdminApi +dfs.client.block.write.retries!!!30!!!setInt!!!TestAsyncClusterAdminApi +hbase.client.retries.number!!!1!!!setInt!!!TestCheckAndMutateWithByteBuff +hbase.client.retries.number!!!6!!!setInt!!!TestAdminBase +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestAssignmentManagerMetrics +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!3!!!setInt!!!TestSimpleRegionNormalizerOnCluster +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!3!!!setInt!!!TestMaster +zookeeper.recovery.retry!!!0!!!setInt!!!AbstractTestDLS +WALProcedureStore.ROLL_RETRIES_CONF_KEY!!!10!!!setInt!!!TestWALProcedureStoreOnHDFS +hbase.client.retries.number!!!1!!!setInt!!!TestMasterShutdown +ReadOnlyZKClient.RECOVERY_RETRY!!!3!!!setInt!!!TestMasterShutdown +ReadOnlyZKClient.RECOVERY_RETRY_INTERVAL_MILLIS!!!100!!!setInt!!!TestMasterShutdown +zookeeper.recovery.retry!!!1!!!setInt!!!TestVisibilityLabelReplicationWithExpAsString +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestVisibilityLabelReplicationWithExpAsString +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestVisibilityLabelReplicationWithExpAsString +zookeeper.recovery.retry!!!1!!!setInt!!!TestVisibilityLabelsReplication +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestVisibilityLabelsReplication +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestVisibilityLabelsReplication +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!CustomSaslAuthenticationProviderTestBase +hbase.client.retries.number!!!5!!!setInt!!!TestCoprocessorWhitelistMasterObserver +hbase.client.retries.number!!!5!!!setInt!!!TestCoprocessorWhitelistMasterObserver +hbase.client.retries.number!!!5!!!setInt!!!TestCoprocessorWhitelistMasterObserver +hbase.client.retries.number!!!5!!!setInt!!!TestCoprocessorWhitelistMasterObserver +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestNamespaceCommands +hbase.security.relogin.maxretries!!!1!!!setInt!!!AbstractTestSecureIPC +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!3!!!setInt!!!TestMetaTableLocator +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!FilterTestingCluster +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestFilterWrapper +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!10!!!setInt!!!TestMetaTableAccessor +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestQuotaTableUtil +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestQuotaAdmin +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestQuotaThrottle diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase_retry_locations.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase_retry_locations.data new file mode 100644 index 00000000..8446d3e7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase_retry_locations.data @@ -0,0 +1,137 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/io/FileLink.java#L114!!!org.apache.hadoop.hbase.io.FileLink.read!!!org.apache.hadoop.fs.FSDataInputStream.read!!!FileLink.java:117!!!java.io.FileNotFoundException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/io/FileLink.java#L164!!!org.apache.hadoop.hbase.io.FileLink.readFully!!!readFully!!!FileLink.java:166!!!java.io.FileNotFoundException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/RSProcedureDispatcher.java#L349!!!org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher.run!!!org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher.sendRequest!!!RSProcedureDispatcher.java:398!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/ServerCrashProcedure.java#L136!!!org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState!!!org.apache.hadoop.hbase.master.MasterServices.getProcedures!!!ServerCrashProcedure.java:278!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/SnapshotVerifyProcedure.java#L124!!!org.apache.hadoop.hbase.master.procedure.SnapshotVerifyProcedure.execute!!!org.apache.hadoop.hbase.master.procedure.ServerRemoteProcedure.execute!!!SnapshotVerifyProcedure.java:142!!!java.lang.InterruptedException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/SplitWALProcedure.java#L64!!!org.apache.hadoop.hbase.master.procedure.SplitWALProcedure.executeFromState!!!org.apache.hadoop.hbase.master.SplitWALManager.isSplitWALFinished!!!SplitWALProcedure.java:80!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/SwitchRpcThrottleProcedure.java#L65!!!org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure.executeFromState!!!org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure.switchThrottleState!!!SwitchRpcThrottleProcedure.java:70!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/SyncReplicationReplayWALProcedure.java#L59!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.isReplayWALFinished!!!SyncReplicationReplayWALProcedure.java:75!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/SyncReplicationReplayWALRemoteProcedure.java#L89!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALRemoteProcedure.truncateWALs!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.finishReplayWAL!!!SyncReplicationReplayWALRemoteProcedure.java:92!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/BootstrapNodeManager.java#L135!!!org.apache.hadoop.hbase.regionserver.BootstrapNodeManager.getFromMaster!!!org.apache.hadoop.hbase.util.FutureUtils.get!!!BootstrapNodeManager.java:140!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsckRepair.java#L103!!!org.apache.hadoop.hbase.util.HBaseFsckRepair.waitUntilAssigned!!!org.apache.hadoop.hbase.client.Admin.getClusterMetrics!!!HBaseFsckRepair.java:110!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/coordination/ZkSplitLogWorkerCoordination.java#L446!!!ZkSplitLogWorkerCoordination.getTaskList!!!listChildrenAndWatchForNewChildren!!!ZkSplitLogWorkerCoordination.java:449!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/HBaseServerBase.java#L336!!!org.apache.hadoop.hbase.HBaseServerBase.putUpWebUI!!!org.apache.hadoop.hbase.http.InfoServer.start!!!HBaseServerBase.java:348!!!java.net.BindException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/TransitRegionStateProcedure.java#L339!!!org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState!!!openRegion!!!TransitRegionStateProcedure.java:491!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/TransitRegionStateProcedure.java#L339!!!org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState!!!confirmOpened!!!TransitRegionStateProcedure.java:494!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/TransitRegionStateProcedure.java#L339!!!org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState!!!closeRegion!!!TransitRegionStateProcedure.java:496!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/TransitRegionStateProcedure.java#L339!!!org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState!!!confirmClosed!!!TransitRegionStateProcedure.java:499!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterWalManager.java#L215!!!org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders!!!listStatus!!!MasterWalManager.jav:234!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ClaimReplicationQueuesProcedure.java#L84!!!org.apache.hadoop.hbase.master.replication.ClaimReplicationQueuesProcedure.execute!!!removeQueue!!!ClaimReplicationQueuesProcedure.java:102!!!ReplicationException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ModifyPeerProcedure.java#L158!!!org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState!!!updatePeerStorage!!!ModifyPeerProcedure.java:205!!!ReplicationException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ModifyPeerProcedure.java#L158!!!org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState!!!reopenRegions!!!ModifyPeerProcedure.java:220!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ModifyPeerProcedure.java#L158!!!org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState!!!updateLastPushedSequenceIdForSerialPeer!!!ModifyPeerProcedure.java:231!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ModifyPeerProcedure.java#L158!!!org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState!!!enablePeer!!!ModifyPeerProcedure.java:238!!!ReplicationException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ModifyPeerProcedure.java#L158!!!org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState!!!postPeerModification!!!ModifyPeerProcedure.java:259!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ModifyPeerProcedure.java#L176!!!org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState!!!prePeerModification!!!ModifyPeerProcedure.java:188!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/RecoverStandbyProcedure.java#L59!!!org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure.executeFromState!!!renameToPeerReplayWALDir!!!RecoverStandbyProcedure.java:62!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/RecoverStandbyProcedure.java#L59!!!org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure.executeFromState!!!renameToPeerSnapshotWALDir!!!RecoverStandbyProcedure.java:84!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobFileCleanerChore.java#L178!!!org.apache.hadoop.hbase.mob.MobFileCleanerChore.cleanupObsoleteMobFiles!!!initReader!!!MobFileCleanupUtil.java:125!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobFileCleanupUtil.java#L100!!!org.apache.hadoop.hbase.mob.MobFileCleanerChore.cleanupObsoleteMobFiles!!!closeStoreFile!!!MobFileCleanupUtil.java:129!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-asyncfs/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java#L470!!!org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.createOutput!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock!!!FanOutOneBlockAsyncDFSOutputHelper.java:493!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-asyncfs/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java#L589!!!org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.complete!!!FanOutOneBlockAsyncDFSOutputHelper.java:592!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/FullTableBackupClient.java#L950!!!org.apache.hadoop.hbase.backup.impl.FullTableBackupClient.snapshotTable!!!snapshot!!!FullTableBackupClient.java:209!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/BlockingRpcConnection.java#L250!!!org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection!!!org.apache.hadoop.net.NetUtils.connect!!!BlockingRpcConnection.java:258!!!java.net.SocketException +https://github.com/apache/hbase/tree//e1ad781//hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/BlockingRpcConnection.java#L461!!!org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupIOstreams!!!org.apache.hadoop.security.UserGroupInformation.doAs!!!BlockingRpcConnection.java:476!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-it/src/main/java/org/apache/hadoop/hbase/chaos/ChaosAgent.java#L412!!!org.apache.hadoop.hbase.chaos.ChaosAgent.execWithRetries!!!org.apache.hadoop.hbase.chaos.ChaosAgent.exec!!!ChaosAgent.java:414!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/WALInputFormat.java#L157!!!org.apache.hadoop.hbase.wal.AbstractFSWALProvider.openReader!!!org.apache.hadoop.fs.Path.getFileSystem!!!WALInputFormat.java:162!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/WALInputFormat.java#L157!!!org.apache.hadoop.hbase.wal.AbstractFSWALProvider.openReader!!!org.apache.hadoop.hbase.wal.WALFactory.createStreamReader!!!WALInputFormat.java:162!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L402!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.getLogFiles!!!WALProcedureStore.java:410!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L402!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.initOldLogs!!!WALProcedureStore.java:413!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L402!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriter!!!WALProcedureStore.java:420!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L402!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease!!!org.apache.hadoop.hbase.procedure2.store.wal.ProcedureWALFile.removeFile!!!WALProcedureStore.java:430!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L898!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.syncSlots!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.syncSlots!!!WALProcedureStore.java:900 !!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L950!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriterWithRetries!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriter!!!WALProcedureStore.java:956!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readTag!!!RPCProtos.java:5020!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBytes!!!RPCProtos.java:5026!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBytes!!!RPCProtos.java:5031!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBytes!!!RPCProtos.java:5036!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readInt32!!!RPCProtos.java:5041!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBool!!!RPCProtos.java:5046!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBool!!!RPCProtos.java:5051!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.GeneratedMessageV3$Builder.parseUnknownField!!!RPCProtos.java:5056!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-replication/src/main/java/org/apache/hadoop/hbase/replication/ZKReplicationQueueStorage.java#L233!!!org.apache.hadoop.hbase.replication.ZKReplicationQueueStorage.setWALPosition!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.multiOrSequential!!!N/A!!!java.net.BindException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.fs.FileSystem.exists!!!HFileArchiver.java:555!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.fs.FileSystem.mkdirs!!!HFileArchiver.java:556!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.hbase.backup.HFileArchiver$File.moveAndClose!!!HFileArchiver.java:566!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterWalManager.java#L215!!!org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders!!!org.apache.hadoop.fs.FileSystem.exists!!!MasterWalManager.java:233!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterWalManager.java#L215!!!org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders!!!org.apache.hadoop.hbase.util.CommonFSUtils.listStatus!!!MasterWalManager.java:234!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.setPeerNewSyncReplicationState!!!TransitPeerSyncReplicationStateProcedure.java:265!!!ReplicationException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.setLastPushedSequenceId!!!TransitPeerSyncReplicationStateProcedure.java:296!!!ReplicationException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.removeAllReplicationQueues !!!TransitPeerSyncReplicationStateProcedure.java:314!!!ReplicationException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.transitPeerSyncReplicationState!!!TransitPeerSyncReplicationStateProcedure.java:329!!!ReplicationException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.enablePeer!!!TransitPeerSyncReplicationStateProcedure.java:349!!!ReplicationException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.createDirForRemoteWAL!!!TransitPeerSyncReplicationStateProcedure.java:367!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.postTransit!!!TransitPeerSyncReplicationStateProcedure.java:381!!!ReplicationException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/zksyncer/ClientZKSyncer.java#L169!!!org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.createNodeIfNotExistsNoWatch!!!ClientZKSyncer.java:173!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/zksyncer/ClientZKSyncer.java#L169!!!org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.setData!!!ClientZKSyncer.java:175!!!org.apache.zookeeper.KeeperExceptionNoNodeException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/zksyncer/ClientZKSyncer.java#L169!!!org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.deleteDataForClientZkUntilSuccess!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.deleteNode!!!ClientZKSyncer.java:198!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/zksyncer/ClientZKSyncer.java#L169!!!org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.reconnectAfterExpiration!!!ZKWatcher.reconnectAfterExpiration!!!ClientZKSyncer.java:216!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/zksyncer/ClientZKSyncer.java#L195!!!org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.deleteDataForClientZkUntilSuccess!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.deleteNode!!!ClientZKSyncer.java:198!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/MetaRegionLocationCache.java#L107!!!org.apache.hadoop.hbase.MetaRegionLocationCache.loadMetaLocationsFromZk!!!org.apache.hadoop.hbase.zookeeper.ZKWatcher.getMetaReplicaNodesAndWatchChildren!!!MetaRegionLocationCache.java:109!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/MetaRegionLocationCache.java#L171!!!org.apache.hadoop.hbase.MetaRegionLocationCache.updateMetaLocation!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.watchAndCheckExists!!!MetaRegionLocationCache.java:174!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/MetaRegionLocationCache.java#L171!!!org.apache.hadoop.hbase.MetaRegionLocationCache.updateMetaLocation!!!org.apache.hadoop.hbase.MetaRegionLocationCache.getMetaRegionLocation!!!MetaRegionLocationCache.java:181!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/namequeues/WALEventTrackerTableAccessor.java#L70!!!org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor.doPut!!!org.apache.hadoop.hbase.client.Connection.getTable!!!WALEventTrackerTableAccessor.java:71!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/namequeues/WALEventTrackerTableAccessor.java#L70!!!org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor.doPut!!!org.apache.hadoop.hbase.client.Table.put!!!WALEventTrackerTableAccessor.java:72!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/handler/RegionReplicaFlushHandler.java#L107!!!org.apache.hadoop.hbase.regionserver.handler.RegionReplicaFlushHandler.triggerFlushInPrimaryRegion!!!org.apache.hadoop.hbase.util.FutureUtils.get!!!RegionReplicaFlushHandler.java:114!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionFileSystem.java#L1078!!!org.apache.hadoop.hbase.regionserver.HRegionFileSystem.createDir!!!org.apache.hadoop.hbase.regionserver.HRegionFileSystem.mkdirs!!!HRegionFileSystem.java:1080!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionFileSystem.java#L1101!!!org.apache.hadoop.hbase.regionserver.HRegionFileSystem.rename!!!org.apache.hadoop.fs.FileSystem.rename!!!HRegionFileSystem.java:1103!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionFileSystem.java#L1126!!!org.apache.hadoop.hbase.regionserver.HRegionFileSystem.deleteDir!!!org.apache.hadoop.fs.FileSystem.delete!!!HRegionFileSystem.java:1128!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionFileSystem.java#L1165!!!org.apache.hadoop.hbase.regionserver.HRegionFileSystem.createDirOnFileSystem!!!org.apache.hadoop.fs.FileSystem.mkdirs!!!HRegionFileSystem.java:1167!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java#L2505!!!org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub!!!org.apache.hadoop.hbase.security.UserProvider.getCurrent!!!HRegionServer.java:2590!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java#L817!!!org.apache.hadoop.hbase.regionserver.HStore.flushCache!!!org.apache.hadoop.hbase.regionserver.StoreFlusher.flushSnapshot!!!HStore.java:828!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.java#L71!!!org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RegionServerStatusProtos$ReportProcedureDoneRequest$Builder.addResult!!!RemoteProcedureResultReporter.java:74!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.java#L71!!!org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run!!!org.apache.hadoop.hbase.regionserver.HRegionServer.reportProcedureDone!!!RemoteProcedureResultReporter.java:89!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/snapshot/FlushSnapshotSubprocedure.java#L113!!!org.apache.hadoop.hbase.regionserver.snapshot.FlushSnapshotSubprocedure$RegionSnapshotTask.call!!!org.apache.hadoop.hbase.regionserver.HRegion.flush!!!FlushSnapshotSubprocedure.java:114!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SnapshotRegionCallable.java#L57!!!org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall!!!org.apache.hadoop.hbase.regionserver.HRegion.flush!!!SnapshotRegionCallable.java:58!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/AbstractFSWAL.java#L783!!!org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive!!!org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archiveLogFile!!!AbstractFSWAL.java:923!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/DualAsyncFSWAL.java#L76!!!org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance!!!org.apache.hadoop.hbase.regionserver.wal.AsyncFSWAL.createAsyncWriter!!!N/A!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java#L452!!!org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint.replicate!!!org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint.parallelReplicate!!!HBaseInterClusterReplicationEndpoint.java:461!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HFileReplicator.java#L169!!!org.apache.hadoop.hbase.replication.regionserver.HFileReplicator.doBulkLoad!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.loadHFileQueue!!!HFileReplicator.java:179!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/RecoveredReplicationSourceShipper.java#L57!!!org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSourceShipper.getStartPosition!!!org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSource.locateRecoveredPaths!!!N/A!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java#L432!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.uncaughtException!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.refreshSources!!!N/A!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java#L512!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.createReplicationEndpoint!!!ReplicationSource.java:555!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java#L512!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initAndStartReplicationEndpoint!!!ReplicationSource.java:565!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.java#L706!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.cleanOldLogs!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.removeRemoteWALs!!!ReplicationSourceManager.java:739!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceShipper.java#L179!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper.shipEdits!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper.cleanUpHFileRefs!!!ReplicationSourceShipper.java:195!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceWALReader.java#L130!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.tryAdvanceStreamAndCreateWALBatch!!!N/A!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceWALReader.java#L130!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run!!!org.apache.hadoop.hbase.replication.regionserver.WALEntryStream.reset!!!N/A!!!WALEntryFilterRetryableException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceWALReader.java#L130!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.readWALEntries!!!ReplicationSourceWALReader.java:171!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupInfoManagerImpl.java#L1019!!!org.apache.hadoop.hbase.rsgroup.RSGroupInfoManagerImpl.moveRegionsBetweenGroups!!!moveAsync!!!RSGroupInfoManagerImpl.java:1037!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/tool/BulkLoadHFilesTool.java#L908!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad!!!org.apache.hadoop.hbase.util.FutureUtils.get!!!BulkLoadHFilesTool.java:966!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/tool/BulkLoadHFilesTool.java#L908!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.groupOrSplitPhase!!!BulkLoadHFilesTool.java:981!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/tool/BulkLoadHFilesTool.java#L908!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.bulkLoadPhase!!!BulkLoadHFilesTool.java:990!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSTableDescriptors.java#L622!!!org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor!!!org.apache.hadoop.fs.FileSystem.create!!!FSTableDescriptors.java:626!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSTableDescriptors.java#L622!!!org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor!!!java.io.FilterOutputStream.write!!!FSTableDescriptors.java:627!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSTableDescriptors.java#L622!!!org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor!!!org.apache.hadoop.hbase.util.FSTableDescriptors.deleteTableDescriptorFiles!!!FSTableDescriptors.java:635!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L444!!!org.apache.hadoop.hbase.util.FSUtils.setVersion!!!org.apache.hadoop.fs.FileSystem.create!!!FSUtils.java:440!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L499!!!org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists!!!org.apache.hadoop.fs.FileSystem.exists!!!FSUtils.java:495!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L601!!!org.apache.hadoop.hbase.util.FSUtils.setClusterId!!!org.apache.hadoop.fs.FileSystem.create!!!FSUtils.java:598!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L601!!!org.apache.hadoop.hbase.util.FSUtils.setClusterId!!!java.io.FilterOutputStream.write!!!FSUtils.java:599!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L601!!!org.apache.hadoop.hbase.util.FSUtils.setClusterId!!!org.apache.hadoop.fs.FileSystem.rename!!!FSUtils.java:609!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java#L426!!!org.apache.hadoop.hbase.util.HBaseFsck$FileLockCallable.createFileWithRetries!!!org.apache.hadoop.hbase.util.CommonFSUtils.create!!!HBaseFsck.java:428!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java#L481!!!org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck!!!org.apache.hbase.thirdparty.com.google.common.io.Closeables.close!!!HBaseFsck.java:483!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java#L481!!!org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck!!!org.apache.hadoop.hbase.util.CommonFSUtils.delete!!!HBaseFsck.java:484!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java#L481!!!org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck!!!org.apache.hadoop.hbase.util.CommonFSUtils.getCurrentFileSystem!!!HBaseFsck.java:484!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java#L720!!!org.apache.hadoop.hbase.util.HBaseFsck.setMasterInMaintenanceMode!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.createEphemeralNodeAndWatch!!!HBaseFsck.java:735!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsckRepair.java#L107!!!org.apache.hadoop.hbase.util.HBaseFsckRepair.waitUntilAssigned!!!org.apache.hadoop.hbase.client.Admin.getClusterMetrics!!!HBaseFsckRepair.java:110!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/MoveWithAck.java#L76!!!org.apache.hadoop.hbase.util.MoveWithAck.call!!!org.apache.hadoop.hbase.client.Admin.move!!!MoveWithAck.java:82!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/MoveWithAck.java#L76!!!org.apache.hadoop.hbase.util.MoveWithAck.call!!!org.apache.hadoop.hbase.util.MoveWithAck.isSameServer!!!MoveWithAck.java:85!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/wal/AbstractWALRoller.java#L174!!!org.apache.hadoop.hbase.wal.AbstractWALRoller.run!!!org.apache.hadoop.hbase.wal.AbstractWALRoller$RollController.rollWal!!!AbstractWALRoller.java:212!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALFactory.java#L339!!!org.apache.hadoop.hbase.wal.WALFactory.createStreamReader!!!org.apache.hadoop.hbase.wal.AbstractFSWALProvider$Reader.init!!!WALFactory.java:417!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L208!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.delete!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:210!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L258!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.exists!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:262!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L258!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.exists!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:264!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L320!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getChildren!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:324!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L320!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getChildren!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:326!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L373!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getData!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:377!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L373!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getData!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:379!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L425!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.setData!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:428!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L475!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getAcl!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:478!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L509!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.setAcl!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:512!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L574!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.createNonSequential!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:576!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L616!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.createSequential!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:626!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L680!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.multi!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:683!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKNodeTracker.java#L140!!!org.apache.hadoop.hbase.zookeeper.ZKNodeTracker.blockUntilAvailable!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.getDataAndWatch!!!ZKNodeTracker.java:131!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKNodeTracker.java#L140!!!org.apache.hadoop.hbase.zookeeper.ZKNodeTracker.blockUntilAvailable!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.checkExists!!!ZKNodeTracker.java:143!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java#L1400!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.waitForBaseZNode!!!org.apache.zookeeper.ZooKeeper.exists!!!ZKUtil.java:1402!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase_timeout_bounds.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase_timeout_bounds.data new file mode 100644 index 00000000..e49cb2c6 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/hbase_timeout_bounds.data @@ -0,0 +1,81 @@ +AbstractTestFSWAL.testFailedToCreateWALIfParentRenamed +AbstractTestFSWAL.testFindMemStoresEligibleForFlush +AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile +AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards +AbstractTestFSWAL.testRollWriterForClosedWAL +AbstractTestFSWAL.testSyncNoAppend +AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal +AbstractTestFSWAL.testWALCoprocessorLoaded +AbstractTestFSWAL.testWriteEntryCanBeNull +TestAsyncTable.testDisabled +TestAsyncTable.testIncrement +TestBackupDeleteRestore.testBackupDeleteRestore +TestBasicWALEntryStream.testEOFExceptionInOldWALsDirectory +TestBootstrapNodeManager.testNormal +TestBootstrapNodeManager.testOnlyMaster +TestBootstrapNodeManager.testRegionServerError +TestBulkLoadReplicationHFileRefs.testWhenExcludeCF +TestBulkLoadReplicationHFileRefs.testWhenExcludeNamespace +TestBulkLoadReplicationHFileRefs.testWhenExcludeTable +TestClassLoading.testClassLoadingFromHDFS +TestClassLoading.testClassLoadingFromLibDirInJar +TestClassLoading.testClassLoadingFromLocalFS +TestClassLoading.testClassLoadingFromRelativeLibDirInJar +TestClassLoading.testHBase3810 +TestClassLoading.testPrivateClassLoader +TestClientSideRegionScanner.testContinuesToScanIfHasMore +TestClientTimeouts.testAdminTimeout +TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +TestDrainReplicationQueuesForStandBy.test +TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +TestFSHLog.testUnflushedSeqIdTracking +TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +TestFlushSnapshotFromClient.testAsyncFlushSnapshot +TestFlushSnapshotFromClient.testFlushCreateListDestroy +TestFlushSnapshotFromClient.testFlushTableSnapshot +TestFlushSnapshotFromClient.testFlushTableSnapshotWithProcedure +TestFlushSnapshotFromClient.testSkipFlushTableSnapshot +TestFlushSnapshotFromClient.testSnapshotFailsOnNonExistantTable +TestFlushSnapshotFromClient.testSnapshotStateAfterMerge +TestFlushSnapshotFromClient.testTakeSnapshotAfterMerge +TestHelloHBase.testCreateNamespaceAndTable +TestHelloHBase.testDeleteRow +TestHelloHBase.testNamespaceExists +TestHelloHBase.testPutRowToTable +TestMetaWithReplicasShutdownHandling.testShutdownHandling +TestMultiVersions.testGetRowVersions +TestMultiVersions.testScanMultipleVersions +TestMultiVersions.testTimestamps +TestRSGroupsBalance.testGetRSGroupAssignmentsByTable +TestRSGroupsBalance.testGroupBalance +TestRSGroupsBalance.testGroupDryRunBalance +TestRSGroupsBalance.testMisplacedRegions +TestRefreshRecoveredReplication.testReplicationRefreshSource +TestRegionAssignedToMultipleRegionServers.test +TestRegionMoverWithRSGroupEnable.testUnloadRegions +TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +TestRegionObserverScannerOpenHook.testRegionObserverFlushTimeStacking +TestRegionObserverScannerOpenHook.testRegionObserverScanTimeStacking +TestRegionReplicaSplit.testAssignFakeReplicaRegion +TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +TestRegionReplicationLagEvaluation.test +TestRegionServerCrashDisableWAL.test +TestReplicator.testReplicatorBatching +TestReplicator.testReplicatorWithErrors +TestRetainAssignmentOnRestart.testForceRetainAssignment +TestRetainAssignmentOnRestart.testRetainAssignmentOnClusterRestart +TestRetainAssignmentOnRestart.testRetainAssignmentOnSingleRSRestart +TestSecurityHeadersFilter.testDefaultValues +TestSecurityHeadersFilter.testHstsAndCspSettings +TestSerialReplicationFailover.testKillRS +TestSnapshotProcedureMasterRestarts.testMasterRestarts +TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileVerifyingSnapshot +TestSuperUserQuotaPermissions.testSuperUserCanStillCompact +TestSuperUserQuotaPermissions.testSuperuserCanRemoveQuota +TestSyncReplicationWALProvider.test +TestTableMapReduceUtil.testInitCredentialsForCluster1 +TestTableMapReduceUtil.testInitCredentialsForCluster2 +TestTableMapReduceUtil.testInitCredentialsForCluster3 +TestTableMapReduceUtil.testInitCredentialsForCluster4 +TestZooKeeperScanPolicyObserver.test diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/pom-hbase.xml b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/pom-hbase.xml new file mode 100644 index 00000000..6a74163b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/pom-hbase.xml @@ -0,0 +1,4721 @@ + + + + 4.0.0 + + org.apache + apache + 23 + + + + org.apache.hbase + hbase + ${revision} + pom + Apache HBase + Apache HBase™ is the Hadoop database. Use it when you need + random, realtime read/write access to your Big Data. + This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters + of commodity hardware. + https://hbase.apache.org + 2007 + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + achouhan + Abhishek Singh Chouhan + achouhan@apache.org + +5 + + + acube123 + Amitanand S. Aiyer + acube123@apache.org + -8 + + + allan163 + Allan Yang + allan163@apache.org + +8 + + + appy + Apekshit Sharma + appy@apache.org + -8 + + + anastasia + Anastasia Braginsky + anastasia@apache.org + +2 + + + apurtell + Andrew Purtell + apurtell@apache.org + -8 + + + anoopsamjohn + Anoop Sam John + anoopsamjohn@apache.org + +5 + + + antonov + Mikhail Antonov + antonov@apache.org + -8 + + + ashishsinghi + Ashish Singhi + ashishsinghi@apache.org + +5 + + + ashu + Ashu Pachauri + ashu@apache.org + +5 + + + bharathv + Bharath Vissapragada + bharathv@apache.org + -8 + + + binlijin + Lijin Bin + binlijin@apache.org + +8 + + + brfrn169 + Toshihiro Suzuki + brfrn169@apache.org + +9 + + + busbey + Sean Busbey + busbey@apache.org + -6 + + + chenglei + Cheng Lei + chenglei@apache.org + +8 + + + chenheng + Heng Chen + chenheng@apache.org + +8 + + + chia7712 + Chia-Ping Tsai + chia7712@apache.org + +8 + + + ddas + Devaraj Das + ddas@apache.org + -8 + + + dimaspivak + Dima Spivak + dimaspivak@apache.org + -8 + + + dmeil + Doug Meil + dmeil@apache.org + -5 + + + eclark + Elliott Clark + eclark@apache.org + -8 + + + elserj + Josh Elser + elserj@apache.org + -5 + + + enis + Enis Soztutar + enis@apache.org + -8 + + + eshcar + Eshcar Hillel + eshcar@apache.org + +2 + + + fenghh + Honghua Feng + fenghh@apache.org + +8 + + + garyh + Gary Helmling + garyh@apache.org + -8 + + + gchanan + Gregory Chanan + gchanan@apache.org + -8 + + + gjacoby + Geoffrey Jacoby + gjacoby@apache.org + -5 + + + gxcheng + Guangxu Cheng + gxcheng@apache.org + +8 + + + haxiaolin + Xiaolin Ha + haxiaolin@apache.org + +8 + + + huaxiangsun + Huaxiang Sun + huaxiangsun@apache.org + -8 + + + jdcryans + Jean-Daniel Cryans + jdcryans@apache.org + -8 + + + jeffreyz + Jeffrey Zhong + jeffreyz@apache.org + -8 + + + jerryjch + Jing Chen (Jerry) He + jerryjch@apache.org + -8 + + + jyates + Jesse Yates + jyates@apache.org + -8 + + + jgray + Jonathan Gray + jgray@fb.com + -8 + + + jingchengdu + Jingcheng Du + jingchengdu@apache.org + +8 + + + esteban + Esteban Gutierrez + esteban@apache.org + -8 + + + janh + Jan Hentschel + janh@apache.org + +1 + + + jmhsieh + Jonathan Hsieh + jmhsieh@apache.org + -8 + + + jxiang + Jimmy Xiang + jxiang@apache.org + -8 + + + kannan + Kannan Muthukkaruppan + kannan@fb.com + -8 + + + karthik + Karthik Ranganathan + kranganathan@fb.com + -8 + + + larsfrancke + Lars Francke + larsfrancke@apache.org + Europe/Berlin + + + larsgeorge + Lars George + larsgeorge@apache.org + +1 + + + larsh + Lars Hofhansl + larsh@apache.org + -8 + + + liangxie + Liang Xie + liangxie@apache.org + +8 + + + liushaohui + Shaohui Liu + liushaohui@apache.org + +8 + + + liyin + Liyin Tang + liyin.tang@fb.com + -8 + + + liyu + Yu Li + liyu@apache.org + +8 + + + mbautin + Mikhail Bautin + mbautin@apache.org + -8 + + + mbertozzi + Matteo Bertozzi + mbertozzi@apache.org + 0 + + + mdrob + Mike Drob + mdrob@apache.org + -5 + + + meszibalu + Balazs Meszaros + meszibalu@apache.org + +1 + + + misty + Misty Stanley-Jones + misty@apache.org + -8 + + + ndimiduk + Nick Dimiduk + ndimiduk@apache.org + -8 + + + nihaljain + Nihal Jain + nihaljain@apache.org + +5 + + + niuyulin + Yulin Niu + niuyulin@apache.org + +8 + + + nkeywal + Nicolas Liochon + nkeywal@apache.org + +1 + + + nspiegelberg + Nicolas Spiegelberg + nspiegelberg@fb.com + -8 + + + octo47 + Andrey Stepachev + octo47@gmail.com + 0 + + + openinx + Zheng Hu + openinx@apache.org + +8 + + + pankajkumar + Pankaj Kumar + pankajkumar@apache.org + +5 + + + psomogyi + Peter Somogyi + psomogyi@apache.org + +1 + + + rajeshbabu + Rajeshbabu Chintaguntla + rajeshbabu@apache.org + +5 + + + ramkrishna + Ramkrishna S Vasudevan + ramkrishna@apache.org + +5 + + + rawson + Ryan Rawson + rawson@apache.org + -8 + + + reidchan + Reid Chan + reidchan@apache.org + +8 + + + shahrs87 + Rushabh Shah + shahrs87@apache.org + -8 + + + sakthi + Sakthi Vel + sakthi@apache.org + -8 + + + sershe + Sergey Shelukhin + sershe@apache.org + -8 + + + ssrungarapu + Srikanth Srungarapu + ssrungarapu@apache.org + -8 + + + stack + Michael Stack + stack@apache.org + -8 + + + syuanjiang + Stephen Yuan Jiang + syuanjiang@apache.org + -8 + + + taklwu + Tak-Lon (Stephen) Wu + taklwu@apache.org + -8 + + + tedyu + Ted Yu + yuzhihong@gmail.com + -8 + + + tianhang + Tianhang Tang + tianhang@apache.org + +8 + + + tianjy + tianjy@apache.org + +8 + + + todd + Todd Lipcon + todd@apache.org + -8 + + + toffer + Francis Liu + toffer@apache.org + -8 + + + vikasv + Vikas Vishwakarma + vikasv@apache.org + +5 + + + virag + Virag Kothari + virag@yahoo-inc.com + -8 + + + vjasani + Viraj Jasani + vjasani@apache.org + +5 + + + water + Xiang Li + xiangli@apache.org + +8 + + + wchevreuil + Wellington Chevreuil + wchevreuil@apache.org + 0 + + + weichiu + Wei-Chiu Chuang + weichiu@apache.org + -8 + + + xucang + Xu Cang + xucang@apache.org + -8 + + + yangzhe1991 + Phil Yang + yangzhe1991@apache.org + +8 + + + zghao + Guanghao Zhang + zghao@apache.org + +8 + + + zhangduo + Duo Zhang + zhangduo@apache.org + +8 + + + zhaobaiqiang + Baiqiang Zhao + zhaobaiqiang@apache.org + +8 + + + zjushch + Chunhui Shen + zjushch@apache.org + +8 + + + churro + Rahul Gidwani + churro@apache.org + -8 + + + yiliang + Yi Liang + yiliang@apache.org + -8 + + + zyork + Zach York + zyork@apache.org + -8 + + + meiyi + Yi Mei + meiyi@apache.org + +8 + + + wangzheng + Zheng (bsglz) Wang + wangzheng@apache.org + +8 + + + sunxin + Xin Sun + sunxin@apache.org + +8 + + + huangzhuoyue + Zhuoyue Huang + huangzhuoyue@apache.org + +8 + + + xiaoyt + Yutong Xiao + xiaoyt@apache.org + +8 + + + bbeaudreault + Bryan Beaudreault + bbeaudreault@apache.org + -5 + + + heliangjun + Liangjun He + heliangjun@apache.org + +8 + + + + + User List + user-subscribe@hbase.apache.org + user-unsubscribe@hbase.apache.org + user@hbase.apache.org + https://lists.apache.org/list.html?user@hbase.apache.org + + https://dir.gmane.org/gmane.comp.java.hadoop.hbase.user + + + + Developer List + dev-subscribe@hbase.apache.org + dev-unsubscribe@hbase.apache.org + dev@hbase.apache.org + https://lists.apache.org/list.html?dev@hbase.apache.org + + https://dir.gmane.org/gmane.comp.java.hadoop.hbase.devel + + + + Commits List + commits-subscribe@hbase.apache.org + commits-unsubscribe@hbase.apache.org + https://lists.apache.org/list.html?commits@hbase.apache.org + + + Issues List + issues-subscribe@hbase.apache.org + issues-unsubscribe@hbase.apache.org + https://lists.apache.org/list.html?issues@hbase.apache.org + + + Builds List + builds-subscribe@hbase.apache.org + builds-unsubscribe@hbase.apache.org + https://lists.apache.org/list.html?builds@hbase.apache.org + + + User (ZH) List + user-zh-subscribe@hbase.apache.org + user-zh-unsubscribe@hbase.apache.org + user-zh@hbase.apache.org + https://lists.apache.org/list.html?user-zh@hbase.apache.org + + + + + hbase-build-configuration + hbase-replication + hbase-balancer + hbase-mapreduce + hbase-resource-bundle + hbase-http + hbase-server + hbase-thrift + hbase-shell + hbase-protocol-shaded + hbase-client + hbase-hadoop-compat + hbase-common + hbase-procedure + hbase-endpoint + hbase-it + hbase-examples + hbase-assembly + hbase-testing-util + hbase-annotations + hbase-rest + hbase-checkstyle + hbase-external-blockcache + hbase-shaded + hbase-archetypes + hbase-metrics-api + hbase-metrics + hbase-backup + hbase-zookeeper + hbase-hbtop + hbase-asyncfs + hbase-logging + hbase-compression + + + scm:git:git://gitbox.apache.org/repos/asf/hbase.git + scm:git:https://gitbox.apache.org/repos/asf/hbase.git + https://gitbox.apache.org/repos/asf?p=hbase.git + + + JIRA + https://issues.apache.org/jira/browse/HBASE + + + + hbase.apache.org + HBase Website at hbase.apache.org + + file:///tmp + + + + + + 1.9.8.M1 + 1.13 + 1.0.0 + + 4.0.0-alpha-1-SNAPSHOT + + false + + false + + false + + false + + false + + false + ${project.build.finalName}.tar.gz + yyyy-MM-dd'T'HH:mm + ${maven.build.timestamp} + 1.8 + 8 + + + 3.5.0 + ${compileSource} + + 3.2.4 + + ${hadoop-three.version} + src/main/assembly/hadoop-three-compat.xml + + 3.10.5.Final + + 0.13.0 + + 0.13.0 + 1.11.0 + 2.8.1 + 1.15 + 1.7 + 2.11.0 + 3.9 + 3.6.1 + 3.4.4 + 4.5.13 + 4.4.13 + 3.2.6 + 2.14.1 + 2.14.1 + 2.3.1 + 3.1.0 + 2.1.1 + 2.3.2 + 3.0.1-b08 + 9.3.9.0 + 4.13.2 + 1.3 + 1.15.0 + 1.15.0 + 2.17.2 + 4.11.0 + 0.6.1 + thrift + 0.14.1 + 3.5.7 + 2.11 + 1.7.30 + 4.0.3 + 2.4.1 + 1.5.4 + + 2.1.43 + 1.0.57 + 2.12.2 + 1.70 + 1.5.1 + 1.0.1 + 1.1.0 + 4.2.0 + + 2.2.2 + 2.0.6 + 3.0.0 + 1.4 + + 8.29 + 3.1.0 + 2.16 + 2.4.2 + 1.0.0 + 1.8 + 3.3.0 + 3.1.0 + 2.10 + 3.0.1 + 3.4.0 + 1.1.0 + 3.1.2 + 1.5.0.Final + 1.3.9-1 + 4.7.3 + 4.7.2.1 + 3.1.0 + 2.12 + 1.0.1 + 2.27.2 + 3.12.0 + + 0.24 + 1.11.0 + 1.8.0 + 1.1.10.1 + 1.9 + 1.5.5-2 + 4.1.4 + + 0.8.8 + + 3.9.1.2184 + + + hbase-server-${project.version}-tests.jar + hbase-common-${project.version}-tests.jar + hbase-procedure-${project.version}-tests.jar + hbase-it-${project.version}-tests.jar + hbase-annotations-${project.version}-tests.jar + hbase-mapreduce-${project.version}-tests.jar + hbase-zookeeper-${project.version}-tests.jar + hbase-asyncfs-${project.version}-tests.jar + bash + surefire-junit47 + + false + false + + 0.25C + 0.25C + org.apache.hadoop.hbase.testclassification.SmallTests + org.apache.hadoop.hbase.testclassification.MediumTests + false + true + 900 + + + 2200m + 2200m + + -enableassertions -Dhbase.build.id=${build.id} -Xmx${surefire.Xmx} + -Djava.security.egd=file:/dev/./urandom -Djava.net.preferIPv4Stack=true + -Djava.awt.headless=true -Djdk.net.URLClassPath.disableClassPathURLCheck=true + -Dorg.apache.hbase.thirdparty.io.netty.leakDetection.level=advanced + -Dio.netty.eventLoopThreads=3 -Dio.opentelemetry.context.enableStrictContext=true + -enableassertions -Xmx${surefire.cygwinXmx} + -Djava.security.egd=file:/dev/./urandom -Djava.net.preferIPv4Stack=true + "-Djava.library.path=${hadoop.library.path};${java.library.path}" + -Dorg.apache.hbase.thirdparty.io.netty.leakDetection.level=advanced + -Dio.opentelemetry.context.enableStrictContext=true + -Dorg.apache.hbase.thirdparty.io.netty.tryReflectionSetAccessible=true + --add-modules jdk.unsupported + --add-opens java.base/java.nio=ALL-UNNAMED + --add-opens java.base/sun.nio.ch=ALL-UNNAMED + --add-opens java.base/java.lang=ALL-UNNAMED + --add-opens java.base/jdk.internal.ref=ALL-UNNAMED + --add-opens java.base/java.lang.reflect=ALL-UNNAMED + --add-opens java.base/java.util=ALL-UNNAMED + --add-opens java.base/java.util.concurrent=ALL-UNNAMED + --add-exports java.base/jdk.internal.misc=ALL-UNNAMED + --add-exports java.security.jgss/sun.security.krb5=ALL-UNNAMED + --add-opens java.base/jdk.internal.util.random=ALL-UNNAMED + + ${hbase-surefire.argLine} @{jacocoArgLine} + 1.5.1 + 3.0.0 + 0.14.0 + + ${project.build.directory}/test-classes + ${project.build.directory} + yyyy-MM-dd'T'HH:mm:ss'Z' + + ${maven.build.timestamp} + bash + + none + + 2.0.0.AM26 + 2.0.0 + + + + + + + + org.apache.hbase + hbase-annotations + ${project.version} + test-jar + + + + org.apache.hbase + hbase-backup + ${project.version} + + + org.apache.hbase + hbase-common + ${project.version} + + + org.apache.hbase + hbase-common + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-logging + ${project.version} + + + org.apache.hbase + hbase-logging + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-protocol-shaded + ${project.version} + + + org.apache.hbase + hbase-procedure + ${project.version} + + + org.apache.hbase + hbase-procedure + ${project.version} + test-jar + + + org.apache.hbase + hbase-hadoop-compat + ${project.version} + + + org.apache.hbase + hbase-hadoop-compat + ${project.version} + test-jar + + + org.apache.hbase + hbase-replication + ${project.version} + + + org.apache.hbase + hbase-replication + ${project.version} + test-jar + + + org.apache.hbase + hbase-balancer + ${project.version} + + + org.apache.hbase + hbase-balancer + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-http + ${project.version} + + + org.apache.hbase + hbase-http + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-server + ${project.version} + + + org.apache.hbase + hbase-server + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-mapreduce + ${project.version} + + + org.apache.hbase + hbase-mapreduce + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-endpoint + ${project.version} + + + org.apache.hbase + hbase-shell + ${project.version} + + + org.apache.hbase + hbase-shell + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-thrift + ${project.version} + + + org.apache.hbase + hbase-thrift + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-testing-util + ${project.version} + test + + + org.apache.hbase + hbase-examples + ${project.version} + + + org.apache.hbase + hbase-external-blockcache + ${project.version} + + + org.apache.hbase + hbase-it + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-client + ${project.version} + + + org.apache.hbase + hbase-client + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-metrics-api + ${project.version} + + + org.apache.hbase + hbase-metrics-api + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-metrics + ${project.version} + + + org.apache.hbase + hbase-metrics + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-rest + ${project.version} + + + org.apache.hbase + hbase-resource-bundle + ${project.version} + + + org.apache.hbase + hbase-zookeeper + ${project.version} + + + com.google.code.findbugs + jsr305 + + + com.github.spotbugs + spotbugs-annotations + + + + + org.apache.hbase + hbase-zookeeper + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-hbtop + ${project.version} + + + org.apache.hbase + hbase-shaded-client + ${project.version} + + + org.apache.hbase + hbase-shaded-client-byo-hadoop + ${project.version} + + + org.apache.hbase + hbase-shaded-mapreduce + ${project.version} + + + org.apache.hbase + hbase-asyncfs + ${project.version} + + + org.apache.hbase + hbase-asyncfs + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-compression-aircompressor + ${project.version} + + + org.apache.hbase + hbase-compression-brotli + ${project.version} + + + org.apache.hbase + hbase-compression-lz4 + ${project.version} + + + org.apache.hbase + hbase-compression-snappy + ${project.version} + + + org.apache.hbase + hbase-compression-xz + ${project.version} + + + org.apache.hbase + hbase-compression-zstd + ${project.version} + + + + com.github.stephenc.findbugs + findbugs-annotations + ${findbugs-annotations.version} + + + + org.codehaus.jettison + jettison + ${jettison.version} + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + org.slf4j + jul-to-slf4j + ${slf4j.version} + + + org.apache.logging.log4j + log4j-api + ${log4j2.version} + + + org.apache.logging.log4j + log4j-core + ${log4j2.version} + + + org.apache.logging.log4j + log4j-slf4j-impl + ${log4j2.version} + + + org.apache.logging.log4j + log4j-1.2-api + ${log4j2.version} + + + + org.apache.avro + avro + ${avro.version} + + + com.github.ben-manes.caffeine + caffeine + ${caffeine.version} + + + io.dropwizard.metrics + metrics-core + ${metrics-core.version} + + + org.apache.httpcomponents + httpclient + ${httpclient.version} + + + org.apache.httpcomponents + httpcore + ${httpcore.version} + + + commons-codec + commons-codec + ${commons-codec.version} + + + commons-validator + commons-validator + ${commons-validator.version} + + + commons-io + commons-io + ${commons-io.version} + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + org.apache.commons + commons-math3 + ${commons-math.version} + + + + commons-logging + commons-logging + 1.2 + + + org.apache.zookeeper + zookeeper + ${zookeeper.version} + + + com.google.code.findbugs + jsr305 + + + com.github.spotbugs + spotbugs-annotations + + + jline + jline + + + com.sun.jmx + jmxri + + + com.sun.jdmk + jmxtools + + + javax.jms + jms + + + io.netty + netty + + + io.netty + netty-all + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + + + jline + jline + ${jline.version} + + + org.apache.thrift + libthrift + ${thrift.version} + + + org.apache.tomcat.embed + tomcat-embed-core + + + + + org.jruby + jruby-complete + ${jruby.version} + + + org.jruby.jcodings + jcodings + ${jcodings.version} + + + org.jruby.joni + joni + ${joni.version} + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version} + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.databind.version} + + + org.jamon + jamon-runtime + ${jamon-runtime.version} + + + + javax.servlet + javax.servlet-api + ${servlet.api.version} + + + javax.ws.rs + javax.ws.rs-api + ${wx.rs.api.version} + + + com.sun.activation + javax.activation + 1.2.0 + + + javax.annotation + javax.annotation-api + 1.2 + + + + org.glassfish.web + javax.servlet.jsp + ${glassfish.jsp.version} + + + + javax.servlet.jsp + javax.servlet.jsp-api + 2.3.1 + + + org.glassfish + javax.el + ${glassfish.el.version} + + + javax.xml.bind + jaxb-api + ${jaxb-api.version} + + + javax.xml.stream + stax-api + + + + + junit + junit + ${junit.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + org.hamcrest + hamcrest-library + ${hamcrest.version} + + + org.mockito + mockito-bom + ${mockito.version} + pom + import + + + io.opentelemetry + opentelemetry-bom + ${opentelemetry.version} + pom + import + + + io.opentelemetry + opentelemetry-semconv + ${opentelemetry.version}-alpha + + + io.opentelemetry.javaagent + opentelemetry-javaagent + ${opentelemetry-javaagent.version} + + + com.lmax + disruptor + ${disruptor.version} + + + net.spy + spymemcached + ${spy.version} + true + + + org.bouncycastle + bcprov-jdk15on + ${bouncycastle.version} + test + + + org.skyscreamer + jsonassert + ${skyscreamer.version} + test + + + org.bouncycastle + bcpkix-jdk15on + ${bouncycastle.version} + test + + + org.apache.kerby + kerb-core + ${kerby.version} + + + org.apache.kerby + kerb-client + ${kerby.version} + + + org.apache.kerby + kerb-simplekdc + ${kerby.version} + + + org.apache.commons + commons-crypto + ${commons-crypto.version} + + + net.java.dev.jna + jna + + + + + org.apache.curator + curator-framework + ${curator.version} + + + org.apache.zookeeper + zookeeper + + + + + org.apache.curator + curator-client + ${curator.version} + + + com.google.guava + guava + + + org.apache.zookeeper + zookeeper + + + + + org.apache.curator + curator-recipes + ${curator.version} + + + com.google.guava + guava + + + org.apache.zookeeper + zookeeper + + + + + org.apache.yetus + audience-annotations + ${audience-annotations.version} + + + + io.airlift + aircompressor + ${aircompressor.version} + + + org.lz4 + lz4-java + ${lz4.version} + + + org.tukaani + xz + ${xz.version} + + + org.xerial.snappy + snappy-java + ${snappy.version} + + + com.github.luben + zstd-jni + ${zstd-jni.version} + + + + org.apache.hbase.thirdparty + hbase-shaded-gson + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-shaded-miscellaneous + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-shaded-netty + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-shaded-protobuf + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-shaded-jetty + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-shaded-jersey + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-shaded-jackson-jaxrs-json-provider + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-unsafe + ${hbase-thirdparty.version} + + + com.sun.xml.ws + jaxws-ri + 2.3.2 + pom + + + javax.activation + javax.activation-api + + + + + + + + + + org.aspectj + aspectjrt + ${aspectj.version} + + + edu.uchicago.cs.systems + wasabi + ${wasabi.version} + + + + + junit + junit + test + + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + org.apache.maven.plugins + maven-release-plugin + + + apache-release + + -Dmaven.test.skip.exec ${arguments} + ${goals} + pom.xml + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + true + false + false + -Xlint:-options + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven.javadoc.version} + + ${compileSource} + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + ${surefire.firstPartGroups} + false + false + false + ${surefire.skipFirstPart} + ${surefire.firstPartForkCount} + + + false + ${surefire.reportsDirectory} + ${surefire.tempDir} + ${surefire.testFailureIgnore} + ${surefire.timeout} + ${test.output.tofile} + + ${test.build.classes} + ${test.tmp.dir} + org.apache.hadoop.hbase.logging.JulToSlf4jInitializer + + + + ${test.exclude.pattern} + + + + listener + org.apache.hadoop.hbase.TimedOutTestsListener,org.apache.hadoop.hbase.HBaseClassTestRuleChecker,org.apache.hadoop.hbase.ResourceCheckerJUnitListener + + + + + + + org.apache.maven.surefire + ${surefire.provider} + ${surefire.version} + + + + + secondPartTestsExecution + + test + + test + + ${surefire.skipSecondPart} + ${surefire.testFailureIgnore} + + false + ${surefire.secondPartForkCount} + + ${surefire.secondPartGroups} + ${surefire.timeout} + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + ${buildnumber.maven.version} + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.maven.version} + + ${project.basedir}/../dev-support/spotbugs-exclude.xml + true + true + Max + + + + + com.github.spotbugs + spotbugs + ${spotbugs.version} + + + + + org.codehaus.mojo + build-helper-maven-plugin + ${build.helper.maven.version} + + + maven-antrun-plugin + ${maven.antrun.version} + + + org.jamon + jamon-maven-plugin + ${jamon.plugin.version} + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + test-jar-no-fork + + prepare-package + + + log4j2.xml + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + true + + hbase-site.xml + hdfs-site.xml + mapred-queues.xml + mapred-site.xml + + + + + + + test-jar + + prepare-package + + + + + + org.apache.rat + apache-rat-plugin + + + **/*.versionsBackup + **/*.log + **/.* + **/*.tgz + **/*.orig + **/0000000000000016310 + **/a6a6562b777440fd9c34885428f5cb61.21e75333ada3d5bafb34bb918f29576c + **/8e8ab58dcf39412da19833fcd8f687ac + **/.idea/** + **/*.iml + **/CHANGES.txt + **/generated/** + **/gen-*/** + + conf/regionservers + **/*.avpr + **/*.svg + + **/src/main/resources/META-INF/LEGAL + + **/src/main/asciidoc/hbase.css + + **/jquery.min.js + **/jquery.tablesorter.min.js + **/parser-date-iso8601.min.js + + **/src/main/resources/hbase-webapps/static/*/bootstrap* + + **/hbase-webapps/static/js/vega*.min.js + + **/*.vm + + **/control + **/conffile + + docs/* + logs/* + + .git/** + .svn/** + **/.settings/** + **/patchprocess/** + src/site/resources/repo/** + **/dependency-reduced-pom.xml + **/rat.txt + + **/shaded/com/google/protobuf/** + **/src/main/patches/** + **/vote.tmpl + + **/CC-MAIN-2021-10-warc.paths.gz + + + + + maven-assembly-plugin + + + true + + + + org.xolstice.maven.plugins + protobuf-maven-plugin + ${protobuf.plugin.version} + + ${basedir}/src/main/protobuf/ + false + true + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven.checkstyle.version} + + hbase/checkstyle.xml + hbase/checkstyle-suppressions.xml + true + + + + org.apache.hbase + hbase-checkstyle + ${project.version} + + + com.puppycrawl.tools + checkstyle + ${checkstyle.version} + + + + + net.revelc.code + warbucks-maven-plugin + ${maven.warbucks.version} + + false + + + + (?!.*(.generated.|.tmpl.|\$)).* + false + true + false + false + false + org[.]apache[.]yetus[.]audience[.]InterfaceAudience.* + + + + + + run-warbucks + + check + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${enforcer.version} + + + org.codehaus.mojo + extra-enforcer-rules + ${extra.enforcer.version} + + + de.skuzzle.enforcer + restrict-imports-enforcer-rule + ${restrict-imports.enforcer.version} + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${maven.gpg.version} + + + + + + org.codehaus.mojo + flatten-maven-plugin + 1.3.0 + + true + true + oss + + + + + flatten + + flatten + + process-resources + + + + flatten.clean + + clean + + clean + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + negate-license-bundles-property + + bsh-property + + + skip.license.check = !${license.bundles.dependencies}; + + skip.license.check + + + + + + create-license-file-path-property + + regex-property + + + license.aggregate.path + ${project.build.directory}/maven-shared-archive-resources/META-INF/LICENSE + \\ + / + false + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + display-info + + display-info + + initialize + false + + + hadoop-profile-min-maven-min-java-banned-xerces + + enforce + + + + + + System.getProperty("hadoop-profile", "").isEmpty() + The hadoop-profile property is unused, did you mean to set hadoop.profile instead? + + + + [${maven.min.version},) + Maven is out of date. + HBase requires at least version ${maven.min.version} of Maven to properly build from source. + You appear to be using an older version. You can use either "mvn -version" or + "mvn enforcer:display-info" to verify what version is active. + See the reference guide on building for more information: https://hbase.apache.org/book.html#build + + + + [${java.min.version},) + Java is out of date. + HBase requires at least version ${java.min.version} of the JDK to properly build from source. + You appear to be using an older version. You can use either "mvn -version" or + "mvn enforcer:display-info" to verify what version is active. + See the reference guide on building for more information: https://hbase.apache.org/book.html#build + + + + xerces:xercesImpl + + We avoid adding our own Xerces jars to the classpath, see HBASE-16340. + + + + + + banned-jsr305 + + enforce + + + + + + com.google.code.findbugs:jsr305 + + We don't allow the JSR305 jar from the Findbugs project, see HBASE-16321. + + + + + + banned-scala + + enforce + + + + + + org.scala-lang:scala-library + + We don't allow Scala, see HBASE-13992. + + + + + + banned-commons-logging + + enforce + + + + + + commons-logging:commons-logging + + We don't use commons-logging any more, so do not depend on it directly. + false + + + + + + banned-other-logging-framework + + enforce + + + + + + log4j:* + org.slf4j:slf4j-log4j12 + ch.qos.reload4j:* + org.slf4j:slf4j-reload4j + ch.qos.logback:* + + We do not allow other logging frameworks as now we use log4j2 + + + + + + banned-jetty + + enforce + + + + + + org.eclipse.jetty:** + + Use shaded jetty instead + false + + + + + + banned-jersey + + enforce + + + + + + org.glassfish.jersey.containers:** + org.glassfish.jersey.core:** + + Use shaded jersey instead + false + + + + + + banned-htrace + + enforce + + + + + + org.apache.htrace:** + + Use OpenTelemetry instead + false + + + + + + check-aggregate-license + + enforce + + + process-resources + + + + File license = new File("${license.aggregate.path}"); + + // Beanshell does not support try-with-resources, + // so we must close this scanner manually + Scanner scanner = new Scanner(license); + + while (scanner.hasNextLine()) { + if (scanner.nextLine().startsWith("ERROR:")) { + scanner.close(); + return false; + } + } + scanner.close(); + return true; + License errors detected, for more detail find ERROR in + ${license.aggregate.path} + + + ${skip.license.check} + + + + banned-illegal-imports + + enforce + + process-sources + + + + true + 512 + Use SLF4j for logging + + org.apache.commons.logging.** + org.apache.log4j.** + org.apache.logging.log4j.** + + + + org.apache.hadoop.hbase.logging.HBaseTestAppender + + + + false + 512 + Do not use log4j2 directly in code, see Log4jUtils in hbase-logging for more details. + + org.apache.logging.log4j.** + + + + true + 512 + Use shaded version in hbase-thirdparty + + com.google.common.** + io.netty.** + org.apache.commons.cli.** + org.apache.commons.collections.** + org.apache.commons.collections4.** + + + + true + 512 + Do not use shaded classes from other dependencies + + org.apache.curator.shaded.** + org.apache.htrace.shaded.** + + + + true + 512 + Use shaded gson in hbase-thirdparty + + org.codehaus.jackson.** + + + + true + 512 + Use commons lang 3 + + org.apache.commons.lang.** + + + + true + 512 + Use yetus IA and IS annotations + + org.apache.hadoop.classificatio.** + + + + true + 512 + Do not use htrace + + org.htrace.** + org.apache.htrace.** + + + + true + 512 + Use shaded jetty in hbase-thirdparty + + org.eclipse.jetty.** + + + + true + 512 + Use shaded jersey in hbase-thirdparty + + org.glassfish.jersey.** + + + + true + 512 + You should never use this style of annotations(i.e, 'this is for test only') + in IA.Public or IA.LimitedPrivate classes. Use IA.Private to tell users this is + not for public use. + For IA.Private classes, use RestrictedApi annotation in error prone instead. + + org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting + + + + true + 512 + Use shaded javax.ws.rs in hbase-thirdparty + + javax.ws.rs.** + + + + true + 512 + Use shaded jackson-jaxrs-json-provider in hbase-thirdparty + + com.fasterxml.jackson.jaxrs.** + + + + true + 512 + Use junit4 instead + + junit.framework.** + + + + + + + + + + org.codehaus.mojo + xml-maven-plugin + ${xml.maven.version} + false + + + + + + ${basedir}/hbase-common/src/main/resources/ + + hbase-default.xml + + ${basedir}/src/main/xslt/configuration_to_asciidoc_chapter.xsl + + + ^(.*)\.xml$ + $1.adoc + + + ${basedir}/target/asciidoc + + + + + + + + transform + + site + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + + + spotbugs + + false + + ${basedir}/dev-support/spotbugs-exclude.xml + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site.version} + + ${basedir}/src/site + ${basedir}/src/site/custom/project-info-report.properties + UTF-8 + UTF-8 + + + + + org.apache.maven.wagon + wagon-ssh + ${wagon.ssh.version} + + + + + + org.asciidoctor + asciidoctor-maven-plugin + ${asciidoctor.plugin.version} + false + + ${project.reporting.outputDirectory}/ + book + + ${project.version} + images + coderay + + + + + org.asciidoctor + asciidoctorj-pdf + ${asciidoctorj.pdf.version} + + + + + output-html + + process-asciidoc + + site + + + hbase.css + + html5 + + + + output-pdf + + process-asciidoc + + site + + pdf + + + + + - + + + + + + + org.apache.maven.plugins + maven-resources-plugin + + false + + \ + + + + copy-htaccess + + copy-resources + + site + + ${project.reporting.outputDirectory}/ + + + ${basedir}/src/site/resources/ + + .htaccess + + + + + + + + copy-empty-book-dir + + copy-resources + + site + + ${project.reporting.outputDirectory}/ + + + ${basedir}/src/site/resources/ + + book/** + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${maven.antrun.version} + false + + + + rename-pdf + + run + + site + + + + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + yyyy + build.year + + + + + create-timestamp + + validate + + + + + org.apache.felix + maven-bundle-plugin + ${maven.bundle.version} + true + true + + + com.diffplug.spotless + spotless-maven-plugin + ${spotless.version} + + + + + **/generated/* + **/package-info.java + + + + Remove unhelpful javadoc stubs + (?m)^ *\* *@(?:param|throws|return) *\w* *\n + + + + + Purge single returns tag multi line + (?m)^ */\*\*\n *\* *@return *(.*) *\n *\*/$ + /** Returns $1 */ + + + Purge single returns tag single line + ^ */\*\* *@return *(.*) *\*/$ + /** Returns $1 */ + + + + ${session.executionRootDirectory}/dev-support/hbase_eclipse_formatter.xml + + + ${session.executionRootDirectory}/dev-support/eclipse.importorder + + + + + + + + false + + + + + + + + **/*.xml + **/*.sh + **/*.py + **/Jenkinsfile* + **/*.md + *.md + **/*.txt + *.txt + + + **/target/** + **/dependency-reduced-pom.xml + + + + + + + + + src/main/java/**/*.java + src/test/java/**/*.java + + + **/generated/* + **/package-info.java + + src/main/java/org/apache/hadoop/hbase/util/AbstractByteRange.java + src/main/java/org/apache/hadoop/hbase/util/SimpleMutableByteRange.java + src/main/java/org/apache/hadoop/hbase/util/SimplePositionedMutableByteRange.java + + src/main/java/org/apache/hadoop/hbase/metrics/impl/HBaseMetrics2HadoopMetricsAdapter.java + + src/test/java/org/apache/hadoop/hbase/test/util/warc/WARCFileReader.java + src/test/java/org/apache/hadoop/hbase/test/util/warc/WARCFileWriter.java + src/test/java/org/apache/hadoop/hbase/test/util/warc/WARCInputFormat.java + src/test/java/org/apache/hadoop/hbase/test/util/warc/WARCOutputFormat.java + src/test/java/org/apache/hadoop/hbase/test/util/warc/WARCRecord.java + src/test/java/org/apache/hadoop/hbase/test/util/warc/WARCWritable.java + + + ${session.executionRootDirectory}/dev-support/license-header + package + + + + + + + + + dev.aspectj + aspectj-maven-plugin + ${aspectj-maven.version} + + + + edu.uchicago.cs.systems + wasabi + + + + + + + test-compile + compile + + + 1.8 + 1.8 + false + true + true + unmatchedSuperTypeInCall=ignore,adviceDidNotMatch=ignore,typeNotExposedToWeaver=ignore,uncheckedAdviceConversion=ignore,invalidAbsoluteTypeName=ignore,cantFindType=ignore + + + + + + org.aspectj + aspectjtools + ${aspectj.version} + + + + + + + kr.motd.maven + os-maven-plugin + ${os.maven.version} + + + + + + + + maven-project-info-reports-plugin + ${maven.project.info.report.version} + + + false + + + + + dependencies + dependency-convergence + dependency-info + dependency-management + index + issue-management + licenses + mailing-lists + plugin-management + plugins + team + scm + summary + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + apiNote + a + API Note: + + + + + + + devapi + + aggregate-no-fork + + + devapidocs + Developer API + The full HBase API, including private and unstable APIs + + **/generated/* + **/protobuf/* + + org.apache.hadoop.hbase.tmpl.common:com.google.protobuf:org.apache.hadoop.hbase.generated* + private + + true + true + 2 + true + true + true + true + all + true + en_US + + -J-Xmx2G + + + + org.mockito + mockito-core + ${mockito.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + false + + + + testdevapi + + test-aggregate-no-fork + + + testdevapidocs + Developer API + The full HBase API test code, including private and unstable APIs + + **/generated/* + **/protobuf/* + + org.apache.hadoop.hbase.tmpl.common:com.google.protobuf:org.apache.hadoop.hbase.generated* + private + + true + true + 2 + true + true + true + true + all + true + en_US + + -J-Xmx2G + + + + org.mockito + mockito-core + ${mockito.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + false + + + + + + userapi + + aggregate-no-fork + + + org.apache.yetus.audience.tools.IncludePublicAnnotationsStandardDoclet + + org.apache.yetus + audience-annotations + ${javadoc.audience-annotations.version} + + true + apidocs + User API + The HBase Application Programmer's API + org.apache.hadoop.hbase.backup*:org.apache.hadoop.hbase.catalog:org.apache.hadoop.hbase.client.coprocessor:org.apache.hadoop.hbase.client.metrics:org.apache.hadoop.hbase.codec*:org.apache.hadoop.hbase.constraint:org.apache.hadoop.hbase.coprocessor.*:org.apache.hadoop.hbase.executor:org.apache.hadoop.hbase.fs:*.generated.*:org.apache.hadoop.hbase.io.hfile.*:org.apache.hadoop.hbase.mapreduce.hadoopbackport:org.apache.hadoop.hbase.mapreduce.replication:org.apache.hadoop.hbase.master.*:org.apache.hadoop.hbase.metrics*:org.apache.hadoop.hbase.migration:org.apache.hadoop.hbase.monitoring:org.apache.hadoop.hbase.p*:org.apache.hadoop.hbase.regionserver.compactions:org.apache.hadoop.hbase.regionserver.handler:org.apache.hadoop.hbase.regionserver.snapshot:org.apache.hadoop.hbase.replication.*:org.apache.hadoop.hbase.rest.filter:org.apache.hadoop.hbase.rest.model:org.apache.hadoop.hbase.rest.p*:org.apache.hadoop.hbase.security.*:org.apache.hadoop.hbase.thrift*:org.apache.hadoop.hbase.tmpl.*:org.apache.hadoop.hbase.tool:org.apache.hadoop.hbase.trace:org.apache.hadoop.hbase.util.byterange*:org.apache.hadoop.hbase.util.test:org.apache.hadoop.hbase.util.vint:org.apache.hadoop.metrics2*:org.apache.hadoop.hbase.io.compress* + + false + **/generated/* + protected + + true + true + 2 + true + true + true + true + all + true + en_US + + -J-Xmx2G + + + + org.mockito + mockito-core + ${mockito.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + false + + + + + testuserapi + + test-aggregate-no-fork + + + org.apache.yetus.audience.tools.IncludePublicAnnotationsStandardDoclet + + org.apache.yetus + audience-annotations + ${javadoc.audience-annotations.version} + + true + testapidocs + User API + The HBase Application Programmer's API + org.apache.hadoop.hbase.backup*:org.apache.hadoop.hbase.catalog:org.apache.hadoop.hbase.client.coprocessor:org.apache.hadoop.hbase.client.metrics:org.apache.hadoop.hbase.codec*:org.apache.hadoop.hbase.constraint:org.apache.hadoop.hbase.coprocessor.*:org.apache.hadoop.hbase.executor:org.apache.hadoop.hbase.fs:*.generated.*:org.apache.hadoop.hbase.io.hfile.*:org.apache.hadoop.hbase.mapreduce.hadoopbackport:org.apache.hadoop.hbase.mapreduce.replication:org.apache.hadoop.hbase.master.*:org.apache.hadoop.hbase.metrics*:org.apache.hadoop.hbase.migration:org.apache.hadoop.hbase.monitoring:org.apache.hadoop.hbase.p*:org.apache.hadoop.hbase.regionserver.compactions:org.apache.hadoop.hbase.regionserver.handler:org.apache.hadoop.hbase.regionserver.snapshot:org.apache.hadoop.hbase.replication.*:org.apache.hadoop.hbase.rest.filter:org.apache.hadoop.hbase.rest.model:org.apache.hadoop.hbase.rest.p*:org.apache.hadoop.hbase.security.*:org.apache.hadoop.hbase.thrift*:org.apache.hadoop.hbase.tmpl.*:org.apache.hadoop.hbase.tool:org.apache.hadoop.hbase.trace:org.apache.hadoop.hbase.util.byterange*:org.apache.hadoop.hbase.util.test:org.apache.hadoop.hbase.util.vint:org.apache.hadoop.metrics2*:org.apache.hadoop.hbase.io.compress* + + false + **/generated/* + protected + + true + true + 2 + true + true + true + true + all + true + en_US + + -J-Xmx2G + + + + org.mockito + mockito-core + ${mockito.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + false + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven.checkstyle.version} + + target/** + + + + + + + + + + build-with-jdk8 + + 1.8 + + + ${compileSource} + ${compileSource} + + + + build-with-jdk11 + + [11,) + + + ${releaseTarget} + + ${hbase-surefire.jdk11.flags} + ${hbase-surefire.argLine} + @{jacocoArgLine} + + 2200m + + 0.14.1 + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven.javadoc.version} + + ${compileSource} + + --ignore-source-errors + + -J-Xmx2G + -J--add-exports + -Jjdk.javadoc/jdk.javadoc.internal.tool=ALL-UNNAMED + + + + + + + + + build-with-jdk17 + + [17,) + + + ${hbase-surefire.jdk11.flags} + ${hbase-surefire.jdk17.flags} + ${hbase-surefire.argLine} + @{jacocoArgLine} + + + + + jenkins.patch + + false + + HBasePatchProcess + + + + 2 + + + + + org.apache.maven.plugins + maven-antrun-plugin + false + + + + run + + validate + + + Maven Execution Environment + MAVEN_OPTS="${env.MAVEN_OPTS}" + + + + + + + + + + jacoco + + false + + + **/generated/**/* + **/generated/**/*,hbase-it/**,**/hbase-logging/**/*,**/hbase-testing-util/**/*, + **/hbase-protocol-shaded/**/*,**/hbase-external-blockcache/**/*,**/hbase-examples/**/*, + **/hbase-archetypes/**/* + + + + + org.jacoco + jacoco-maven-plugin + ${jacoco.version} + + + **/generated/**/* + + + + + prepare-agent + + prepare-agent + + initialize + + jacocoArgLine + true + + + + report + + report + + prepare-package + + + + + org.sonarsource.scanner.maven + sonar-maven-plugin + ${sonar-maven-plugin.version} + + + + + + os.linux + + false + + Linux + + + + ${os.name}-${os.arch}-${sun.arch.data.model} + + + + os.mac + + + Mac + + + + Mac_OS_X-${sun.arch.data.model} + + + + os.windows + + + Windows + + + + cygwin + ${hbase-surefire.cygwin-argLine} @{jacocoArgLine} + + + + + apache-release + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + https://repository.apache.org/ + apache.releases.https + + + + + + + + release + + + + org.apache.rat + apache-rat-plugin + + + + check + + package + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${enforcer.version} + + + + ${compileSource} + HBase has unsupported dependencies. + HBase requires that all dependencies be compiled with version ${compileSource} or earlier + of the JDK to properly build from source. You appear to be using a newer dependency. You can use + either "mvn -version" or "mvn enforcer:display-info" to verify what version is active. + Non-release builds can temporarily build with a newer JDK version by setting the + 'compileSource' property (eg. mvn -DcompileSource=1.8 clean package). + + module-info + + + + + + + org.codehaus.mojo + extra-enforcer-rules + ${extra.enforcer.version} + + + + + org.cyclonedx + cyclonedx-maven-plugin + 2.7.6 + + + + makeBom + + package + + + + + + + + + + + hadoop-3.0 + + + !hadoop.profile + + + + ${hadoop-three.version} + src/main/assembly/hadoop-three-compat.xml + + + + + org.apache.hadoop + hadoop-mapreduce-client-core + ${hadoop-three.version} + + + com.google.guava + guava + + + com.sun.jersey + jersey-core + + + javax.xml.bind + jaxb-api + + + javax.ws.rs + jsr311-api + + + org.codehaus.jackson + * + + + io.netty + netty + + + io.netty + netty-all + + + javax.servlet + servlet-api + + + javax.inject + javax.inject + + + com.google.guava + guava + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-mapreduce-client-app + ${hadoop-three.version} + test-jar + + + org.codehaus.jackson + jackson-mapper-asl + + + org.codehaus.jackson + jackson-core-asl + + + javax.xml.bind + jaxb-api + + + javax.ws.rs + jsr311-api + + + org.codehaus.jackson + * + + + javax.xml.bind + jaxb-api + + + javax.ws.rs + jsr311-api + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-mapreduce-client-jobclient + ${hadoop-three.version} + + + com.sun.jersey + jersey-core + + + io.netty + netty + + + io.netty + netty-all + + + javax.servlet + servlet-api + + + org.slf4j + slf4j-log4j12 + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-mapreduce-client-jobclient + ${hadoop-three.version} + test-jar + test + + + com.sun.jersey + jersey-core + + + io.netty + netty + + + io.netty + netty-all + + + javax.servlet + servlet-api + + + org.slf4j + slf4j-log4j12 + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-hdfs + ${hadoop-three.version} + + + com.sun.jersey + jersey-core + + + com.sun.jersey + jersey-server + + + javax.servlet.jsp + jsp-api + + + javax.servlet + servlet-api + + + stax + stax-api + + + xerces + xercesImpl + + + org.codehaus.jackson + * + + + com.google.guava + guava + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + org.fusesource.leveldbjni + leveldbjni-all + + + org.openlabtesting.leveldbjni + leveldbjni-all + + + + + org.apache.hadoop + hadoop-hdfs + ${hadoop-three.version} + test-jar + test + + + javax.servlet.jsp + jsp-api + + + javax.servlet + servlet-api + + + stax + stax-api + + + xerces + xercesImpl + + + org.codehaus.jackson + * + + + com.google.guava + guava + + + com.sun.jersey + jersey-core + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-auth + ${hadoop-three.version} + + + com.google.guava + guava + + + net.minidev + json-smart + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-common + ${hadoop-three.version} + + + com.sun.jersey + jersey-core + + + com.sun.jersey + jersey-json + + + com.sun.jersey + jersey-servlet + + + com.sun.jersey + jersey-server + + + javax.servlet.jsp + jsp-api + + + javax.servlet + javax.servlet-api + + + stax + stax-api + + + io.netty + netty + + + + com.google.code.findbugs + jsr305 + + + junit + junit + + + org.codehaus.jackson + * + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + io.netty + netty + + + io.netty + netty-all + + + + + + javax.activation + javax.activation-api + 1.2.0 + test + + + org.apache.hadoop + hadoop-common + ${hadoop-three.version} + test-jar + + + com.sun.jersey + jersey-core + + + com.google.code.findbugs + jsr305 + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + org.codehaus.jackson + * + + + javax.servlet.jsp + jsp-api + + + javax.xml.bind + jaxb-api + + + javax.ws.rs + jsr311-api + + + + + + org.apache.hadoop + hadoop-client + ${hadoop-three.version} + + + org.apache.hadoop + hadoop-annotations + ${hadoop-three.version} + + + + org.apache.hadoop + hadoop-minicluster + ${hadoop-three.version} + + + + commons-httpclient + commons-httpclient + + + javax.servlet.jsp + jsp-api + + + javax.servlet + servlet-api + + + stax + stax-api + + + io.netty + netty + + + io.netty + netty-all + + + com.google.code.findbugs + jsr305 + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-minikdc + ${hadoop-three.version} + test + + + org.slf4j + slf4j-log4j12 + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + bouncycastle + bcprov-jdk15 + + + + + org.apache.hadoop + hadoop-distcp + ${hadoop-three.version} + + + + org.apache.hadoop + hadoop-hdfs-client + ${hadoop-three.version} + + + + + + + + + singleJVMTests + + false + + + 1 + false + true + + + + + + runSmallTests + + false + + + false + true + org.apache.hadoop.hbase.testclassification.SmallTests + + + + + + runMediumTests + + false + + + false + true + org.apache.hadoop.hbase.testclassification.MediumTests + + + + + + runLargeTests + + false + + + false + true + org.apache.hadoop.hbase.testclassification.LargeTests + + + + + + runDevTests + + false + + + 1 + false + false + org.apache.hadoop.hbase.testclassification.SmallTests + org.apache.hadoop.hbase.testclassification.MediumTests + + + + + runAllTests + + false + + + false + false + org.apache.hadoop.hbase.testclassification.SmallTests + org.apache.hadoop.hbase.testclassification.MediumTests,org.apache.hadoop.hbase.testclassification.LargeTests + + + + runMiscTests + + false + + + false + true + org.apache.hadoop.hbase.testclassification.MiscTests + + + + + runCoprocessorTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.CoprocessorTests + + + + + runClientTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.ClientTests + + + + + runMasterTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.MasterTests + + + + + runMapredTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.MapredTests + + + + + runMapreduceTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.MapReduceTests + + + + + runRegionServerTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.RegionServerTests + + + + + runVerySlowMapReduceTests + + false + + + 2 + 1 + false + true + org.apache.hadoop.hbase.testclassification.VerySlowMapReduceTests + + + + + + runVerySlowRegionServerTests + + false + + + 2 + 1 + false + true + org.apache.hadoop.hbase.testclassification.VerySlowRegionServerTests + + + + + + runFilterTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.FilterTests + + + + + runIOTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.IOTests + + + + + runRestTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.RestTests + + + + + runRPCTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.RPCTests + + + + + runReplicationTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.ReplicationTests + + + + + runSecurityTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.SecurityTests + + + + + runFlakeyTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.FlakeyTests + + + + + runZKTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.ZKTests + + + + + runRSGroupTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.RSGroupTests + + + + + + + localTests + + + test + + + + surefire-junit4 + false + true + + + + + + clover + + false + + clover + + + + ${user.home}/.clover.license + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + com.atlassian.maven.plugins + maven-clover2-plugin + ${clover.version} + + + + + com.atlassian.maven.plugins + maven-clover2-plugin + ${clover.version} + + true + true + 50% + true + true + + **/generated/** + + + + + clover-setup + + setup + + process-sources + + + clover + + clover + + site + + + + + + + + + site-install-step + + true + true + true + true + true + true + + + + + site-build-step + + true + true + true + true + true + true + true + + + + eclipse-specific + + + m2e.version + + + + + + + + org.apache.maven.plugins + maven-eclipse-plugin + ${maven.eclipse.version} + + + + org.eclipse.m2e + lifecycle-mapping + ${lifecycle.mapping.version} + + + + + + org.jacoco + jacoco-maven-plugin + [0.6.2.201302030002,) + + prepare-agent + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${enforcer.version} + + enforce + + + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + [1.5,) + + process + bundle + + + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + [1.3,) + + create-timestamp + + + + + true + true + + + + + + + + + + + + + aarch64 + + + linux + aarch64 + + + + org.openlabtesting.protobuf + + + + \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.conf new file mode 100644 index 00000000..d5ccdcab --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.data new file mode 100644 index 00000000..49dd7e4e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L491!!!org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists!!!org.apache.hadoop.fs.FileSystem.exists!!!FSUtils.java:494!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.conf new file mode 100644 index 00000000..ae32237b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.data new file mode 100644 index 00000000..62344dac --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/handler/RegionReplicaFlushHandler.java#L107!!!org.apache.hadoop.hbase.regionserver.handler.RegionReplicaFlushHandler.triggerFlushInPrimaryRegion!!!org.apache.hadoop.hbase.util.FutureUtils.get!!!RegionReplicaFlushHandler.java:114!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.conf new file mode 100644 index 00000000..bb834696 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.data new file mode 100644 index 00000000..0bf27050 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/tool/BulkLoadHFilesTool.java#L963!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.bulkLoadPhase!!!BulkLoadHFilesTool.java:990!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.conf new file mode 100644 index 00000000..383bd64b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.data new file mode 100644 index 00000000..342154a3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L5026!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBool!!!RPCProtos.java:5060!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.conf new file mode 100644 index 00000000..fff77a77 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.data new file mode 100644 index 00000000..9c88deb7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/TransitRegionStateProcedure.java#L409!!!org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState!!!confirmOpened!!!TransitRegionStateProcedure.java:437!!!java.io.IOException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.conf new file mode 100644 index 00000000..3a43c78e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.data new file mode 100644 index 00000000..a44778da --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/BlockingRpcConnection.java#L250!!!org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection!!!org.apache.hadoop.net.NetUtils.connect!!!BlockingRpcConnection.java:259!!!java.net.SocketException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.conf new file mode 100644 index 00000000..cb7e668f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.data new file mode 100644 index 00000000..5506033e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.hbase.backup.HFileArchiver$File.moveAndClose!!!HFileArchiver.java:566!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.conf new file mode 100644 index 00000000..94e807cb --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.data new file mode 100644 index 00000000..488008f1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.java#L71!!!org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run!!!org.apache.hadoop.hbase.regionserver.HRegionServer.reportProcedureDone!!!RemoteProcedureResultReporter.java:89!!!java.io.IOException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.conf new file mode 100644 index 00000000..73ff36cd --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.data new file mode 100644 index 00000000..5506033e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.hbase.backup.HFileArchiver$File.moveAndClose!!!HFileArchiver.java:566!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.conf new file mode 100644 index 00000000..efd03df7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.data new file mode 100644 index 00000000..b97f8839 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L593!!!org.apache.hadoop.hbase.util.FSUtils.setClusterId!!!org.apache.hadoop.fs.FileSystem.write!!!FSUtils.java:598!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.conf new file mode 100644 index 00000000..e69de29b diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.data new file mode 100644 index 00000000..b97f8839 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L593!!!org.apache.hadoop.hbase.util.FSUtils.setClusterId!!!org.apache.hadoop.fs.FileSystem.write!!!FSUtils.java:598!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.conf new file mode 100644 index 00000000..9563643f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.data new file mode 100644 index 00000000..5bf1851d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.java#L71!!!org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run!!!org.apache.hadoop.hbase.regionserver.HRegionServer.reportProcedureDone!!!RemoteProcedureResultReporter.java:89!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.conf new file mode 100644 index 00000000..ddd75ec1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.data new file mode 100644 index 00000000..f55d877d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-asyncfs/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java#L589!!!org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.complete!!!FanOutOneBlockAsyncDFSOutputHelper.java:591!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.conf new file mode 100644 index 00000000..8ce0058d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.data new file mode 100644 index 00000000..2e8b30d1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java#L2524!!!org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub!!!org.apache.hadoop.hbase.security.UserProvider.getCurrent!!!HRegionServer.java:2544!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.conf new file mode 100644 index 00000000..27480884 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.data new file mode 100644 index 00000000..7c637b59 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L593!!!org.apache.hadoop.hbase.util.FSUtils.setClusterId!!!org.apache.hadoop.fs.FileSystem.rename!!!FSUtils.java:608!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.conf new file mode 100644 index 00000000..1547bbc9 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.data new file mode 100644 index 00000000..f55d877d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-asyncfs/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java#L589!!!org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.complete!!!FanOutOneBlockAsyncDFSOutputHelper.java:591!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.conf new file mode 100644 index 00000000..fa27b8d9 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.data new file mode 100644 index 00000000..5506033e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.hbase.backup.HFileArchiver$File.moveAndClose!!!HFileArchiver.java:566!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.conf new file mode 100644 index 00000000..7e376b76 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.data new file mode 100644 index 00000000..b0c79f70 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SnapshotRegionCallable.java#L57!!!org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall!!!org.apache.hadoop.hbase.regionserver.HRegion.flush!!!SnapshotRegionCallable.java:58!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.conf new file mode 100644 index 00000000..011eaeaa --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.data new file mode 100644 index 00000000..b0c79f70 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SnapshotRegionCallable.java#L57!!!org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall!!!org.apache.hadoop.hbase.regionserver.HRegion.flush!!!SnapshotRegionCallable.java:58!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.conf new file mode 100644 index 00000000..20247157 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.data new file mode 100644 index 00000000..ee608d9c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L402!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.getLogFiles!!!WALProcedureStore.java:410!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.conf new file mode 100644 index 00000000..5d7abee8 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.data new file mode 100644 index 00000000..342154a3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L5026!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBool!!!RPCProtos.java:5060!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.conf new file mode 100644 index 00000000..2f0d763d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.data new file mode 100644 index 00000000..432f7dce --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/BootstrapNodeManager.java#L135!!!org.apache.hadoop.hbase.regionserver.BootstrapNodeManager.getFromMaster!!!org.apache.hadoop.hbase.util.FutureUtils.get!!!BootstrapNodeManager.java:140!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.conf new file mode 100644 index 00000000..99593176 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.data new file mode 100644 index 00000000..2dc7a9e7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java#L539!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initAndStartReplicationEndpoint!!!ReplicationSource.java:552!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.conf new file mode 100644 index 00000000..21d0c5c5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.data new file mode 100644 index 00000000..5506033e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.hbase.backup.HFileArchiver$File.moveAndClose!!!HFileArchiver.java:566!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.conf new file mode 100644 index 00000000..29dc8945 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.data new file mode 100644 index 00000000..2e8b30d1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java#L2524!!!org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub!!!org.apache.hadoop.hbase.security.UserProvider.getCurrent!!!HRegionServer.java:2544!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.conf new file mode 100644 index 00000000..0115d5d5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.data new file mode 100644 index 00000000..cc983cac --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/AbstractFSWAL.java#L914!!!org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive!!!org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archiveLogFile!!!AbstractFSWAL.java:916!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.conf new file mode 100644 index 00000000..3ef2bb84 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.data new file mode 100644 index 00000000..44b4c95c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/ServerCrashProcedure.java#L136!!!org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState!!!org.apache.hadoop.hbase.master.MasterServices.getProcedures!!!ServerCrashProcedure.java:272!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.conf new file mode 100644 index 00000000..a9e31ef1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.data new file mode 100644 index 00000000..0f616884 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/SyncReplicationReplayWALProcedure.java#L59!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.isReplayWALFinished!!!SyncReplicationReplayWALProcedure.java:75!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.conf new file mode 100644 index 00000000..0e646cf9 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.data new file mode 100644 index 00000000..0f616884 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/SyncReplicationReplayWALProcedure.java#L59!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.isReplayWALFinished!!!SyncReplicationReplayWALProcedure.java:75!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.conf new file mode 100644 index 00000000..ce4da4cd --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.data new file mode 100644 index 00000000..2dc7a9e7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java#L539!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initAndStartReplicationEndpoint!!!ReplicationSource.java:552!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.conf new file mode 100644 index 00000000..41700205 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.data new file mode 100644 index 00000000..2e8b30d1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java#L2524!!!org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub!!!org.apache.hadoop.hbase.security.UserProvider.getCurrent!!!HRegionServer.java:2544!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.conf new file mode 100644 index 00000000..5a9a57c7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.data new file mode 100644 index 00000000..8ed03bb5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L5026!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBool!!!RPCProtos.java:5055!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.conf new file mode 100644 index 00000000..a3bf63be --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.data new file mode 100644 index 00000000..49dd7e4e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L491!!!org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists!!!org.apache.hadoop.fs.FileSystem.exists!!!FSUtils.java:494!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.conf new file mode 100644 index 00000000..373f6db4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.data new file mode 100644 index 00000000..85eb4119 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupInfoManagerImpl.java#L1019!!!org.apache.hadoop.hbase.rsgroup.RSGroupInfoManagerImpl.moveRegionsBetweenGroups!!!moveAsync!!!RSGroupInfoManagerImpl.java:1037!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.conf new file mode 100644 index 00000000..35f7c318 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.data new file mode 100644 index 00000000..aac0fbe6 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/snapshot/FlushSnapshotSubprocedure.java#L113!!!org.apache.hadoop.hbase.regionserver.snapshot.FlushSnapshotSubprocedure$RegionSnapshotTask.call!!!org.apache.hadoop.hbase.regionserver.HRegion.flush!!!FlushSnapshotSubprocedure.java:114!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.conf new file mode 100644 index 00000000..3cc01cc8 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.data new file mode 100644 index 00000000..a4e361b9 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/util/MoveWithAck.java#L76!!!org.apache.hadoop.hbase.util.MoveWithAck.call!!!org.apache.hadoop.hbase.client.Admin.move!!!MoveWithAck.java:82!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.conf new file mode 100644 index 00000000..d3f5a448 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.data new file mode 100644 index 00000000..ca47f588 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/DualAsyncFSWAL.java#L76!!!org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance!!!org.apache.hadoop.hbase.regionserver.wal.AsyncFSWAL.createAsyncWriter!!!DualAsyncFSWAL.java:82!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.conf new file mode 100644 index 00000000..88b0419c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.data new file mode 100644 index 00000000..9c88deb7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/TransitRegionStateProcedure.java#L409!!!org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState!!!confirmOpened!!!TransitRegionStateProcedure.java:437!!!java.io.IOException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive.conf new file mode 100644 index 00000000..6888129b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive.conf @@ -0,0 +1,3 @@ +retry_data_file: /home/bastoica/projects/current/wasabi/tool/config/hive/hive_retry_locations.data +injection_policy: max-count +max_injection_count: 0 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive_retry_bounds.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive_retry_bounds.data new file mode 100644 index 00000000..7e745685 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive_retry_bounds.data @@ -0,0 +1,32 @@ +Var name!!!Assigned value!!!Assign method!!!Test class +HIVE_SERVER2_THRIFT_CLIENT_CONNECTION_RETRY_LIMIT!!!0!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestRetryingThriftCLIServiceClient +HIVE_SERVER2_THRIFT_CLIENT_CONNECTION_RETRY_LIMIT!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestRetryingThriftCLIServiceClient +HIVE_SERVER2_THRIFT_CLIENT_CONNECTION_RETRY_LIMIT!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestRetryingThriftCLIServiceClient +HIVE_SERVER2_THRIFT_CLIENT_RETRY_LIMIT!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestRetryingThriftCLIServiceClient +HIVE_LOCK_SLEEP_BETWEEN_RETRIES!!!100!!!org.apache.hadoop.hive.conf.HiveConf.setTimeVar!!!TestConcurrentDppInserts +HIVE_LOCK_NUMRETRIES!!!2!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestDbTxnManager2 +METASTORE_THRIFT_FAILURE_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestPermsGrp +METASTORE_THRIFT_FAILURE_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHiveClientCache +METASTORE_THRIFT_FAILURE_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHCatMultiOutputFormat +METASTORE_THRIFT_FAILURE_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHCatPartitionPublish +METASTORE_THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHCatClient +METASTORE_THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestPermsGrp +METASTORE_THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHiveClientCache +METASTORE_THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHCatMultiOutputFormat +METASTORE_THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHCatPartitionPublish +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestFilterHooks +THRIFT_CONNECTION_RETRIES!!!10!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestHiveMetaStoreGetMetaConf +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestHiveMetaStorePartitionSpecs +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestHiveMetaStoreWithEnvironmentContext +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestHmsServerAuthorization +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestMetaStoreEndFunctionListener +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestMetaStoreEventListener +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestMetaStoreEventListenerOnlyOnCommit +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestMetaStoreEventListenerWithOldConf +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestMetaStoreInitListener +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestRetryingHMSHandler +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestHiveMetaStoreAuthorizer +HMS_HANDLER_ATTEMPTS!!!4!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestObjectStoreInitRetry +HMS_HANDLER_ATTEMPTS!!!2!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestRetryingHMSHandler +HIVE_COMPACTOR_CLEANER_MAX_RETRY_ATTEMPTS!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestCleaner +JOB_TIMEOUT_TASK_RETRY_COUNT!!!4!!!org.apache.hadoop.conf.Configuration.setInt!!!TestConcurrentJobRequestsThreadsAndTimeout diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive_retry_locations.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive_retry_locations.data new file mode 100644 index 00000000..11cc901d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive_retry_locations.data @@ -0,0 +1,74 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/llap/ProactiveEviction.java#L134!!!org.apache.hadoop.hive.llap.ProactiveEviction.run!!!evictEntity!!!ProactiveEviction.java:143!!!org.apache.hive.service.ServiceException +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/YarnQueueHelper.java#L120!!!org.apache.hadoop.hive.ql.exec.tez.YarnQueueHelper.checkQueueAccessInternal!!!checkQueueAccessFromSingleRm!!!YarnQueueHelper.java:131!!!java.io.IOException +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/leader/LeaseLeaderElection.java#L175!!!org.apache.hadoop.hive.metastore.leader.LeaseLeaderElection.tryBeLeader!!!lock!!!LeaseLeaderElection.java:177!!!org.apache.hadoop.hive.metastore.api.MetaException +https://github.com/apache/hive/blob/e427ce0d572c9adf6f194693a1b3ba85f246f3b7/hcatalog/server-extensions/src/main/java/org/apache/hive/hcatalog/listener/NotificationListener.java#L304!!!org.apache.hive.hcatalog.listener.NotificationListener.send!!!createProducer!!!NotificationListener.java:316!!!JMSException +https://github.com/apache/hive/tree//e427ce0//common/src/java/org/apache/hive/common/util/RetryUtilities.java#L87!!!org.apache.hive.common.util.RetryUtilities$ExponentiallyDecayingBatchWork.run!!!org.apache.hive.common.util.RetryUtilities$ExponentialBackOffRetry.execute!!!RetryUtilities.java:93!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//common/src/test/org/apache/hive/common/util/Retry.java#L59!!!org.apache.hive.common.util.Retry$RetryingStatement.evaluate!!!org.junit.runners.model.Statement.evaluate!!!Retry.java:61!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//druid-handler/src/java/org/apache/hadoop/hive/druid/DruidStorageHandlerUtils.java#L765!!!org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec!!!org.apache.hadoop.fs.FileSystem.mkdirs!!!DruidStorageHandlerUtils.java:774!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//druid-handler/src/java/org/apache/hadoop/hive/druid/DruidStorageHandlerUtils.java#L765!!!org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec!!!org.apache.hadoop.fs.FileSystem.rename!!!DruidStorageHandlerUtils.java:776!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//druid-handler/src/java/org/apache/hadoop/hive/druid/DruidStorageHandlerUtils.java#L765!!!org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec!!!org.apache.hadoop.fs.FileSystem.exists!!!DruidStorageHandlerUtils.java:777!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/LauncherDelegator.java#L234!!!org.apache.hive.hcatalog.templeton.LauncherDelegator.killTempletonJobWithRetry!!!org.apache.hive.hcatalog.templeton.LauncherDelegator.killJob!!!LauncherDelegator.java:237!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//jdbc/src/java/org/apache/hive/jdbc/HiveConnection.java#L379!!!org.apache.hive.jdbc.HiveConnection.HiveConnection!!!org.apache.hive.jdbc.HiveConnection.executeInitSql!!!HiveConnection.java:387!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//jdbc/src/java/org/apache/hive/jdbc/HiveConnection.java#L379!!!org.apache.hive.jdbc.HiveConnection.HiveConnection!!!org.apache.hive.jdbc.HiveConnection.openSession!!!HiveConnection.java:386!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//jdbc/src/java/org/apache/hive/jdbc/HiveConnection.java#L379!!!org.apache.hive.jdbc.HiveConnection.HiveConnection!!!org.apache.hive.jdbc.HiveConnection.openTransport!!!HiveConnection.java:382!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//kafka-handler/src/java/org/apache/hadoop/hive/kafka/RetryUtils.java#L90!!!org.apache.hadoop.hive.kafka.RetryUtils.retry!!!org.apache.hadoop.hive.kafka.RetryUtils$Task.perform!!!RetryUtils.java:93!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//llap-client/src/java/org/apache/hadoop/hive/registry/impl/ZkRegistryBase.java#L609!!!org.apache.hadoop.hive.registry.impl.ZkRegistryBase.ensureInstancesCache!!!org.apache.curator.framework.recipes.cache.PathChildrenCache.start!!!ZkRegistryBase.java:644!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//llap-common/src/java/org/apache/hadoop/hive/llap/AsyncPbRpcProxy.java#L442!!!org.apache.hadoop.hive.llap.AsyncPbRpcProxy$AsyncCallableRequest.call!!!org.apache.hadoop.hive.llap.AsyncPbRpcProxy$AsyncCallableRequest.callInternal!!!AsyncPbRpcProxy.java:444!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/repl/atlas/RetryingClientTimeBased.java#L49!!!org.apache.hadoop.hive.ql.exec.repl.atlas.RetryingClientTimeBased.invokeWithRetry!!!java.util.concurrent.Callable.call!!!RetryingClientTimeBased.java:52!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.hadoop.hive.ql.Context.checkHeartbeaterLockException!!!TezJobMonitor.java:171!!!org.apache.hadoop.hive.ql.lockmgr.LockException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/util/Retryable.java#L71!!!org.apache.hadoop.hive.ql.exec.util.Retryable.executeCallable!!!org.apache.hadoop.security.UserGroupInformation.doAs!!!Retryable.java:75!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/util/Retryable.java#L71!!!org.apache.hadoop.hive.ql.exec.util.Retryable.executeCallable!!!org.apache.hadoop.security.UserGroupInformation.getLoginUser!!!Retryable.java:75!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/util/Retryable.java#L71!!!org.apache.hadoop.hive.ql.exec.util.Retryable.executeCallable!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.reloginExpiringKeytabUser!!!Retryable.java:74!!!org.apache.hadoop.hive.metastore.api.MetaException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java#L3133!!!org.apache.hadoop.hive.ql.exec.Utilities.executeWithRetry!!!org.apache.hadoop.hive.ql.exec.Utilities$SQLCommand.run!!!Utilities.java:3144!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java#L3173!!!org.apache.hadoop.hive.ql.exec.Utilities.connectWithRetry!!!java.sql.DriverManager.getConnection!!!Utilities.java:3144!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java#L3214!!!org.apache.hadoop.hive.ql.exec.Utilities.prepareWithRetry!!!java.sql.Connection.prepareStatement!!!Utilities.java:3225!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/hooks/HiveProtoLoggingHook.java#L315!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.writeEvent!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.maybeRolloverWriterForDay!!!HiveProtoLoggingHook.java:327!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/hooks/HiveProtoLoggingHook.java#L315!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.writeEvent!!!org.apache.tez.dag.history.logging.proto.ProtoMessageWriter.writeProto!!!HiveProtoLoggingHook.java:328!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/hooks/HiveProtoLoggingHook.java#L315!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.writeEvent!!!org.apache.tez.dag.history.logging.proto.ProtoMessageWriter.hflush!!!HiveProtoLoggingHook.java:329!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/hooks/HiveProtoLoggingHook.java#L315!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.writeEvent!!!org.apache.tez.dag.history.logging.proto.DatePartitionedLogger.getWriter!!!HiveProtoLoggingHook.java:321!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DbLockManager.java#L114!!!org.apache.hadoop.hive.ql.lockmgr.DbLockManager.lock!!!org.apache.hadoop.hive.ql.lockmgr.DbTxnManager.getMS!!!DbLockManager.java:104!!!org.apache.hadoop.hive.ql.lockmgr.LockException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DbLockManager.java#L114!!!org.apache.hadoop.hive.ql.lockmgr.DbLockManager.lock!!!org.apache.hadoop.hive.metastore.IMetaStoreClient.checkLock!!!DbLockManager.java:118!!!org.apache.hadoop.hive.metastore.api.NoSuchLockException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/lockmgr/EmbeddedLockManager.java#L113!!!org.apache.hadoop.hive.ql.lockmgr.EmbeddedLockManager.lock!!!org.apache.hadoop.hive.ql.lockmgr.EmbeddedLockManager.lockPrimitive!!!EmbeddedLockManager.java:117!!!org.apache.hadoop.hive.ql.lockmgr.LockException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/lockmgr/zookeeper/ZooKeeperHiveLockManager.java#L298!!!org.apache.hadoop.hive.ql.lockmgr.zookeeper.ZooKeeperHiveLockManager.lock!!!org.apache.hadoop.hive.ql.lockmgr.zookeeper.ZooKeeperHiveLockManager.lockPrimitive!!!ZooKeeperHiveLockManager.java:306!!!org.apache.hadoop.hive.ql.lockmgr.LockException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/lockmgr/zookeeper/ZooKeeperHiveLockManager.java#L487!!!org.apache.hadoop.hive.ql.lockmgr.zookeeper.ZooKeeperHiveLockManager.unlockWithRetry!!!org.apache.hadoop.hive.ql.lockmgr.zookeeper.ZooKeeperHiveLockManager.unlockPrimitive!!!ZooKeeperHiveLockManager.java:493!!!org.apache.hadoop.hive.ql.lockmgr.LockException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/parse/repl/CopyUtils.java#L232!!!org.apache.hadoop.hive.ql.parse.repl.CopyUtils.doCopyRetry!!!org.apache.hadoop.hive.ql.parse.repl.CopyUtils.getFilesToRetry!!!CopyUtils.java:257!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/parse/repl/CopyUtils.java#L232!!!org.apache.hadoop.hive.ql.parse.repl.CopyUtils.doCopyRetry!!!org.apache.hadoop.hive.ql.parse.repl.CopyUtils.doCopyOnce!!!CopyUtils.java:268!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//service/src/java/org/apache/hive/service/cli/thrift/RetryingThriftCLIServiceClient.java#L290!!!org.apache.hive.service.cli.thrift.RetryingThriftCLIServiceClient.connectWithRetry!!!org.apache.hive.service.cli.thrift.RetryingThriftCLIServiceClient.connect!!!RetryingThriftCLIServiceClient.java:292!!!org.apache.hive.service.cli.HiveSQLException +https://github.com/apache/hive/tree//e427ce0//service/src/java/org/apache/hive/service/cli/thrift/RetryingThriftCLIServiceClient.java#L382!!!org.apache.hive.service.cli.thrift.RetryingThriftCLIServiceClient.invoke!!!org.apache.hive.service.cli.thrift.RetryingThriftCLIServiceClient.connectWithRetry!!!RetryingThriftCLIServiceClient.java:391!!!org.apache.hive.service.cli.HiveSQLException +https://github.com/apache/hive/tree//e427ce0//service/src/java/org/apache/hive/service/cli/thrift/RetryingThriftCLIServiceClient.java#L382!!!org.apache.hive.service.cli.thrift.RetryingThriftCLIServiceClient.invoke!!!org.apache.hive.service.cli.thrift.RetryingThriftCLIServiceClient.invokeInternal!!!RetryingThriftCLIServiceClient.java:385!!!org.apache.hive.service.cli.HiveSQLException +https://github.com/apache/hive/tree//e427ce0//service/src/java/org/apache/hive/service/server/HiveServer2.java#L1089!!!org.apache.hive.service.server.HiveServer2.startHiveServer2!!!org.apache.hive.service.server.HiveServer2.init!!!HiveServer2.java:1112!!!org.apache.hive.service.ServiceException +https://github.com/apache/hive/tree//e427ce0//service/src/java/org/apache/hive/service/server/HiveServer2.java#L1089!!!org.apache.hive.service.server.HiveServer2.startHiveServer2!!!org.apache.hive.service.server.HiveServer2.start!!!HiveServer2.java:1113!!!org.apache.hive.service.ServiceException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.createHttpClient!!!HiveMetaStoreClient.java:798!!!org.apache.thrift.transport.TTransportException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.createBinaryClient!!!HiveMetaStoreClient.java:800!!!org.apache.thrift.transport.TTransportException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.thrift.transport.TTransport.open!!!HiveMetaStoreClient.java:816!!!org.apache.thrift.transport.TTransportException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.getUGI!!!HiveMetaStoreClient.java:848!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.hadoop.hive.metastore.api.ThriftHiveMetastore$Iface.set_ugi!!!HiveMetaStoreClient.java:849!!!org.apache.thrift.TException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/RetryingMetaStoreClient.java#L178!!!org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.invoke!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.reloginExpiringKeytabUser!!!RetryingMetaStoreClient.java:175!!!org.apache.hadoop.hive.metastore.api.MetaException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/RetryingMetaStoreClient.java#L178!!!org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.invoke!!!org.apache.hadoop.security.UserGroupInformation.doAs!!!RetryingMetaStoreClient.java:184!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/target/generated-sources/org/apache/hadoop/hive/metastore/grpc/HiveMetastore.java#L323587!!!org.apache.hadoop.hive.metastore.grpc.HiveMetastore$CompactionInfoStruct.CompactionInfoStruct!!!com.google.protobuf.CodedInputStream.readBool!!!N/A!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/target/generated-sources/org/apache/hadoop/hive/metastore/grpc/HiveMetastore.java#L323587!!!org.apache.hadoop.hive.metastore.grpc.HiveMetastore$CompactionInfoStruct.CompactionInfoStruct!!!com.google.protobuf.CodedInputStream.readEnum!!!N/A!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/target/generated-sources/org/apache/hadoop/hive/metastore/grpc/HiveMetastore.java#L323587!!!org.apache.hadoop.hive.metastore.grpc.HiveMetastore$CompactionInfoStruct.CompactionInfoStruct!!!com.google.protobuf.CodedInputStream.readInt64!!!N/A!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/target/generated-sources/org/apache/hadoop/hive/metastore/grpc/HiveMetastore.java#L323587!!!org.apache.hadoop.hive.metastore.grpc.HiveMetastore$CompactionInfoStruct.CompactionInfoStruct!!!com.google.protobuf.CodedInputStream.readStringRequireUtf8!!!N/A!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/target/generated-sources/org/apache/hadoop/hive/metastore/grpc/HiveMetastore.java#L323587!!!org.apache.hadoop.hive.metastore.grpc.HiveMetastore$CompactionInfoStruct.CompactionInfoStruct!!!com.google.protobuf.CodedInputStream.readTag!!!N/A!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/target/generated-sources/org/apache/hadoop/hive/metastore/grpc/HiveMetastore.java#L323587!!!org.apache.hadoop.hive.metastore.grpc.HiveMetastore$CompactionInfoStruct.CompactionInfoStruct!!!com.google.protobuf.GeneratedMessageV3.parseUnknownField!!!N/A!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java#L11654!!!org.apache.hadoop.hive.metastore.ObjectStore$RetryingExecutor.run!!!org.apache.hadoop.hive.metastore.ObjectStore$RetryingExecutor$Command.process!!!ObjectStore.java:11999!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/RetryingHMSHandler.java#L138!!!org.apache.hadoop.hive.metastore.RetryingHMSHandler.invokeInternal!!!org.apache.hadoop.hive.metastore.MetaStoreInit.updateConnectionURL!!!RetryingHMSHandler.java:172!!!org.apache.hadoop.hive.metastore.api.MetaException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/RetryingHMSHandler.java#L138!!!org.apache.hadoop.hive.metastore.RetryingHMSHandler.invokeInternal!!!org.apache.hadoop.hive.metastore.Deadline.startTimer!!!RetryingHMSHandler.java:89!!!org.apache.hadoop.hive.metastore.api.MetaException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/CompactionTxnHandler.java#L414!!!org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean!!!java.sql.ResultSet.getInt!!!N/A!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/CompactionTxnHandler.java#L414!!!org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean!!!java.sql.ResultSet.getLong!!!N/A!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/CompactionTxnHandler.java#L414!!!org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean!!!java.sql.ResultSet.getString!!!N/A!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/CompactionTxnHandler.java#L414!!!org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean!!!java.sql.ResultSet.next!!!N/A!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/CompactionTxnHandler.java#L414!!!org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean!!!org.apache.hadoop.hive.metastore.txn.TxnUtils.dbCompactionType2ThriftType!!!N/A!!!org.apache.hadoop.hive.metastore.api.MetaException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/utils/MetaStoreServerUtils.java#L847!!!org.apache.hadoop.hive.metastore.utils.MetaStoreServerUtils.loopUntilHMSReady!!!java.net.Socket.close!!!MetaStoreServerUtils.java:917!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/utils/MetaStoreServerUtils.java#L847!!!org.apache.hadoop.hive.metastore.utils.MetaStoreServerUtils.loopUntilHMSReady!!!java.net.Socket.connect!!!MetaStoreServerUtils.java:916!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/utils/RetryUtilities.java#L85!!!org.apache.hadoop.hive.metastore.utils.RetryUtilities$ExponentiallyDecayingBatchWork.run!!!org.apache.hadoop.hive.metastore.utils.RetryUtilities$ExponentialBackOffRetry.execute!!!RetryUtilities.java:91!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.api.ThriftHiveMetastore$Iface.set_ugi!!!HiveMetaStoreClientPreCatalog.java:560!!!org.apache.thrift.TException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.getPassword!!!HiveMetaStoreClientPreCatalog.java:462!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.security.HadoopThriftAuthBridge$Client.createClientTransport!!!HiveMetaStoreClientPreCatalog.java:507!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.security.HadoopThriftAuthBridge$Client.createClientTransport!!!HiveMetaStoreClientPreCatalog.java:514!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.getSSLSocket!!!HiveMetaStoreClientPreCatalog.java:470!!!org.apache.thrift.transport.TTransportException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.getTokenStrForm!!!HiveMetaStoreClientPreCatalog.java:502!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.getUGI!!!HiveMetaStoreClientPreCatalog.java:559!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.thrift.transport.TTransport.open!!!HiveMetaStoreClientPreCatalog.java:542!!!org.apache.thrift.transport.TTransportException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive_timeout_bounds.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive_timeout_bounds.data new file mode 100644 index 00000000..34df60d1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/hive_timeout_bounds.data @@ -0,0 +1,424 @@ +TestAbortedTxnCleaner.testAbortedCleaningWithThreeTxnsWithDiffWriteIds +TestAbortedTxnCleaner.testCleaningOfAbortedDirectoriesBelowBase +TestAbortedTxnCleaner.testCleaningOfAbortedDirectoriesForMultiplePartitions +TestAbortedTxnCleaner.testCleaningOfAbortedDirectoriesForSinglePartition +TestAbortedTxnCleaner.testCleaningOfAbortedDirectoriesForUnpartitionedTables +TestAbortedTxnCleaner.testCleaningOfAbortedDirectoriesOnTopOfBase +TestAbortedTxnCleaner.testCleaningOfAbortedDirectoriesWithLongRunningOpenWriteTxn +TestCliDriverMethods.testprocessInitFiles +TestCliDriverMethods.testProcessSelectDatabase +TestCliDriverMethods.testRun +TestCLIServiceConnectionLimits.testConnectionForwardedIpAddresses +TestCLIServiceConnectionLimits.testConnectionLimitPerIpAddress +TestCLIServiceConnectionLimits.testConnectionLimitPerUser +TestCLIServiceConnectionLimits.testConnectionLimitPerUserIpAddress +TestCLIServiceConnectionLimits.testConnectionMultipleLimitsIPAndUserIP +TestCLIServiceConnectionLimits.testConnectionMultipleLimitsUserAndIP +TestCLIServiceConnectionLimits.testConnectionMultipleLimitsUserIPAndUser +TestCLIServiceConnectionLimits.testIncrementAndDecrementConnectionsUser +TestCLIServiceConnectionLimits.testInvalidIpaddress +TestCLIServiceConnectionLimits.testInvalidUserIpaddress +TestCLIServiceConnectionLimits.testInvalidUserName +TestCLIServiceConnectionLimits.testNoLimit +TestCLIServiceRestore.testRestore +TestColumnAccess.testJoinTable1AndTable2 +TestColumnAccess.testJoinView1AndTable2 +TestColumnAccess.testQueryTable1 +TestColumnAccess.testShowPartitions +TestCommands.testBasicReplEximCommands +TestCommands.testBeelineCommands +TestCommands.testDropDatabaseCommand +TestCommands.testMetadataReplEximCommands +TestCommands.testNoopReplEximCommands +TestCommandWithSpace.testCommandWithPrefixSpace +TestCompactionMetrics.testInitiatorPerfMetricsEnabled +TestCompactionMetrics.testOldestReadyForCleaningAge +TestCompactionMetrics.testWorkerPerfMetrics +TestDbTxnManager.testDDLExclusive +TestDbTxnManager.testDDLNoLock +TestDbTxnManager.testDDLShared +TestDbTxnManager.testDelete +TestDbTxnManager.testExceptions +TestDbTxnManager.testHeartbeater +TestDbTxnManager.testHeartbeaterReplicationTxn +TestDbTxnManager.testJoin +TestDbTxnManager.testLockAcquisitionAndRelease +TestDbTxnManager.testReadWrite +TestDbTxnManager.testRollback +TestDbTxnManager.testSingleReadMultiPartition +TestDbTxnManager.testSingleReadPartition +TestDbTxnManager.testSingleReadTable +TestDbTxnManager.testSingleWritePartition +TestDbTxnManager.testSingleWriteTable +TestDbTxnManager.testUpdate +TestDbTxnManager.testWriteDynamicPartition +TestDbTxnManager2.testMergePartitioned +TestDbTxnManagerIsolationProperties.testRebuildMVWhenOpenTxnPresents +TestDeltaFilesMetricFlags.testDeltaFilesMetricFromCleanerWithAcidMetricsThreadDisabled +TestDeltaFilesMetricFlags.testDeltaFilesMetricFromCleanerWithMetricsDisabled +TestDeltaFilesMetricFlags.testDeltaFilesMetricFromInitiatorWithAcidMetricsThreadDisabled +TestDeltaFilesMetricFlags.testDeltaFilesMetricFromInitiatorWithMetricsDisabled +TestDeltaFilesMetricFlags.testDeltaFilesMetricFromWorkerWithAcidMetricsThreadDisabled +TestDeltaFilesMetricFlags.testDeltaFilesMetricFromWorkerWithMetricsDisabled +TestDeltaFilesMetrics.testDeltaFileMetricMultiPartitionedTable +TestDeltaFilesMetrics.testDeltaFileMetricPartitionedTable +TestDeltaFilesMetrics.testDeltaFileMetricUnpartitionedTable +TestDMLSemanticAnalyzer.testDeleteAllNonPartitioned +TestDMLSemanticAnalyzer.testDeleteAllPartitioned +TestDMLSemanticAnalyzer.testDeleteAllWherePartitioned +TestDMLSemanticAnalyzer.testDeleteOnePartition +TestDMLSemanticAnalyzer.testDeleteOnePartitionWhere +TestDMLSemanticAnalyzer.testDeleteWhereNoPartition +TestDMLSemanticAnalyzer.testInsertSelect +TestDMLSemanticAnalyzer.testInsertValues +TestDMLSemanticAnalyzer.testInsertValuesPartitioned +TestDMLSemanticAnalyzer.testUpdateAllNonPartitioned +TestDMLSemanticAnalyzer.testUpdateAllNonPartitionedWhere +TestDMLSemanticAnalyzer.testUpdateAllPartitioned +TestDMLSemanticAnalyzer.testUpdateAllPartitionedWhere +TestDMLSemanticAnalyzer.testUpdateOnePartition +TestDMLSemanticAnalyzer.testUpdateOnePartitionWhere +TestDruidStorageHandler.testCommitCreateTablePlusCommitDropTableWithoutPurge +TestDruidStorageHandler.testCommitCreateTablePlusCommitDropTableWithPurge +TestDruidStorageHandler.testCommitInsertIntoTable +TestDruidStorageHandler.testCommitInsertIntoWhenDestinationSegmentFileExist +TestDruidStorageHandler.testCommitInsertIntoWithConflictingIntervalSegment +TestDruidStorageHandler.testCommitInsertIntoWithNonExtendableSegment +TestDruidStorageHandler.testCommitInsertOverwriteTable +TestDruidStorageHandler.testCommitInsertTable +TestDruidStorageHandler.testCommitMultiInsertOverwriteTable +TestDruidStorageHandler.testInsertIntoAppendOneMorePartition +TestDummyTxnManager.testSingleReadTable +TestE2EScenarios.testReadOrcAndRCFromPig +TestEmbeddedLockManager.testLocking +TestExecDriver.testMapPlan1 +TestExecDriver.testMapPlan2 +TestExecDriver.testMapRedPlan1 +TestExecDriver.testMapRedPlan2 +TestExecDriver.testMapRedPlan3 +TestExecDriver.testMapRedPlan4 +TestExecDriver.testMapRedPlan5 +TestExecDriver.testMapRedPlan6 +TestExprProcessorGetFuncExpr.testLookupFunctionOnDemand +TestFileSinkOperator.testDeleteDynamicPartitioning +TestFileSinkOperator.testInsertDynamicPartitioning +TestFileSinkOperator.testNonAcidDynamicPartitioning +TestFileSinkOperator.testNonAcidRemoveDuplicate +TestFileSinkOperator.testNonAcidWrite +TestFileSinkOperator.testUpdateDynamicPartitioning +TestFilterHooks.testHMSClientWithFilter +TestFilterHooks.testHMSClientWithoutFilter +TestFilterHooks.testHMSServerWithFilter +TestFilterHooks.testHMSServerWithoutFilter +TestGenericUDTFGetSQLSchema.testWithComplexTypes +TestGenericUDTFGetSQLSchema.testWithDDL +TestGenericUDTFGetSQLSchema.testWithSimpleTypes +TestGetInputSummary.testGetInputSummaryWithInputEstimator +TestGetPartitionAuthWithBatches.testSmallNumberOfPartitions +TestGetPartitionInBatches.testGetAllPartitionsOf +TestHBaseQueries.testRollbackDoesNotDeleteOriginTableWhenCTLTFails +TestHCatClient.testBasicDDLCommands +TestHCatClient.testCreateTableLike +TestHCatClient.testDatabaseLocation +TestHCatClient.testDropPartitionsWithPartialSpec +TestHCatClient.testDropTableException +TestHCatClient.testEmptyTableInstantiation +TestHCatClient.testGetMessageBusTopicName +TestHCatClient.testGetPartitionsWithPartialSpec +TestHCatClient.testObjectNotFoundException +TestHCatClient.testOtherFailure +TestHCatClient.testPartitionRegistrationWithCustomSchema +TestHCatClient.testPartitionSchema +TestHCatClient.testPartitionsHCatClientImpl +TestHCatClient.testPartitionSpecRegistrationWithCustomSchema +TestHCatClient.testRenameTable +TestHCatClient.testReplicationTaskIter +TestHCatClient.testTableSchemaPropagation +TestHCatClient.testTransportFailure +TestHCatClient.testUpdateTableSchema +TestHCatDynamicPartitioned.testHCatDynamicPartitionedTable +TestHCatDynamicPartitioned.testHCatDynamicPartitionedTableMultipleTask +TestHCatExternalDynamicPartitioned.testHCatExternalDynamicCustomLocation +TestHCatInputFormat.testBadRecordHandlingPasses +TestHCatInputFormatMethods.testGetPartitionAndDataColumns +TestHCatLoaderComplexSchema.testMapNullKey +TestHCatLoaderComplexSchema.testMapWithComplexData +TestHCatLoaderComplexSchema.testSyntheticComplexSchema +TestHCatLoaderComplexSchema.testTupleInBagInTupleInBag +TestHCatLoaderEncryption.testReadDataFromEncryptedHiveTableByPig +TestHCatLoaderStorer.testReadWrite +TestHCatLoaderStorer.testSmallTinyInt +TestHCatMultiOutputFormat.testOutputFormat +TestHCatNonPartitioned.testHCatNonPartitionedTable +TestHCatOutputFormat.testGetTableSchema +TestHCatOutputFormat.testSetOutput +TestHCatPartitioned.testHCatPartitionedTable +TestHCatPartitionPublish.testPartitionPublish +TestHCatStorerMulti.testStorePartitionedTable +TestHCatStorerWrapper.testStoreExternalTableWithExternalDir +TestHive.testAutoPurgeTablesAndPartitions +TestHive.testDropMissingPartitionsByFilter +TestHive.testDropPartitionsWithPurge +TestHive.testDropTableTrash +TestHive.testGetAndDropTables +TestHive.testGetPartitionsWithMaxLimit +TestHive.testHiveCloseCurrent +TestHive.testHiveRefreshOnConfChange +TestHive.testMetaStoreApiTiming +TestHive.testPartition +TestHive.testTable +TestHive.testThriftTable +TestHive.testWmNamespaceHandling +TestHiveAuthorizationTaskFactory.testGrantGroupTable +TestHiveAuthorizationTaskFactory.testGrantRoleGroup +TestHiveAuthorizationTaskFactory.testGrantRoleRole +TestHiveAuthorizationTaskFactory.testGrantRoleTable +TestHiveAuthorizationTaskFactory.testGrantRoleUser +TestHiveAuthorizationTaskFactory.testGrantServer +TestHiveAuthorizationTaskFactory.testGrantUri +TestHiveAuthorizationTaskFactory.testGrantUserTable +TestHiveAuthorizationTaskFactory.testRevokeGroupTable +TestHiveAuthorizationTaskFactory.testRevokeRoleGroup +TestHiveAuthorizationTaskFactory.testRevokeRoleRole +TestHiveAuthorizationTaskFactory.testRevokeRoleTable +TestHiveAuthorizationTaskFactory.testRevokeRoleUser +TestHiveAuthorizationTaskFactory.testRevokeUserTable +TestHiveCli.testCmd +TestHiveCli.testCommentStripping +TestHiveCli.testDatabaseOptions +TestHiveCli.testErrOutput +TestHiveCli.testInValidCmd +TestHiveCli.testInvalidDatabaseOptions +TestHiveCli.testNoErrorDB +TestHiveCli.testSetHeaderValue +TestHiveCli.testSetPromptValue +TestHiveCli.testSourceCmd +TestHiveCli.testSourceCmd3 +TestHiveCli.testSourceCmd4 +TestHiveCli.testSqlFromCmd +TestHiveCli.testSqlFromCmdWithComments1 +TestHiveCli.testSqlFromCmdWithComments2 +TestHiveCli.testSqlFromCmdWithComments3 +TestHiveCli.testSqlFromCmdWithDBName +TestHiveCli.testSqlFromCmdWithEmbeddedQuotes +TestHiveCli.testUseCurrentDB1 +TestHiveCli.testUseCurrentDB2 +TestHiveCli.testUseCurrentDB3 +TestHiveCli.testUseInvalidDB +TestHiveCli.testVariables +TestHiveCli.testVariablesForSource +TestHiveClientCache.testCacheExpiry +TestHiveClientCache.testCacheHit +TestHiveClientCache.testCacheMiss +TestHiveClientCache.testCloseAllClients +TestHiveClientCache.testMultipleThreadAccess +TestHiveDecimalParse.testDecimalType +TestHiveDecimalParse.testDecimalType1 +TestHiveDecimalParse.testDecimalType2 +TestHiveDecimalParse.testDecimalType3 +TestHiveDecimalParse.testDecimalType4 +TestHiveDecimalParse.testDecimalType5 +TestHiveDecimalParse.testDecimalType6 +TestHiveDecimalParse.testDecimalType7 +TestHiveDecimalParse.testDecimalType8 +TestHiveDecimalParse.testDecimalType9 +TestHiveFunctionHelper.testGetUDTFFunction +TestHiveFunctionHelper.testGetUDTFFunctionThrowingException +TestHiveMetaStoreChecker.testSingleThreadedDeeplyNestedTables +TestHiveMetaStoreClientApiArgumentsChecker.testGetPartitionNames2 +TestHiveMetaStoreClientApiArgumentsChecker.testGetPartitions +TestHiveMetaStoreGetMetaConf.testGetMetaConfDefault +TestHiveMetaStoreTxns.testAllocateTableWriteIdForReadOnlyTxn +TestHiveMetaStoreTxns.testGetLatestCommittedCompactionInfo +TestHiveMetaStoreTxns.testGetValidWriteIds +TestHiveMetaStoreTxns.testLocks +TestHiveMetaStoreTxns.testLocksWithTxn +TestHiveMetaStoreTxns.testOpenReadOnlyTxnExcluded +TestHiveMetaStoreTxns.testOpenTxnNotExcluded +TestHiveMetaStoreTxns.testOpenTxnWithType +TestHiveMetaStoreTxns.testTxns +TestHiveMetaStoreTxns.testTxnTypePersisted +TestHiveMetaStoreTxns.testTxNWithKeyValue +TestHiveMetaStoreTxns.testTxNWithKeyValueNoTableId +TestHiveMetaStoreTxns.testTxNWithKeyWrongPrefix +TestHiveMetaStoreWithEnvironmentContext.testEnvironmentContext +TestHivePrivilegeObjectOwnerNameAndType.testActionTypeForPartitionedTable +TestHivePrivilegeObjectOwnerNameAndType.testOwnerNames +TestHivePrivilegeObjectOwnerNameAndType.testOwnerType +TestHivePrivilegeObjectOwnerNameAndType.testSingleInstanceOfHPOForPartitionedTable +TestHiveProtoLoggingHook.testFailureEventLog +TestHiveProtoLoggingHook.testNonPartionedTable +TestHiveProtoLoggingHook.testPartitionedTable +TestHiveProtoLoggingHook.testPostEventLog +TestHiveProtoLoggingHook.testPreAndPostEventBoth +TestHiveProtoLoggingHook.testPreEventLog +TestHiveProtoLoggingHook.testQueueLogs +TestHiveProtoLoggingHook.testRolloverFiles +TestHiveStrictManagedMigration.testUpgrade +TestHMSFetchPartitionsWithoutCols.testPartitionsWithoutCols +TestHmsServerAuthorization.testGetFields +TestHooks.testQueryRedactor +TestHS2HttpServer.testApiServletActiveSessions +TestHS2HttpServer.testApiServletHistoricalQueries +TestHS2HttpServerPamConfiguration.testPamCorrectConfiguration +TestHS2HttpServerPamConfiguration.testPamServicesAreNotConfigured +TestHS2HttpServerPamConfiguration.testSslIsFalse +TestInitiator.testFindUserToRunAs +TestInitiator.testInitiatorFailure +TestInitiator.testInitiatorHostAndVersion +TestInitiator.testMetaCache +TestListPartitions.testListPartitionSpecsByFilterInvalidFilter +TestListPartitionsWithXIncludeParams.testListPartitionsByExr +TestLlapZookeeperRegistryImpl.testRegister +TestLlapZookeeperRegistryImpl.testUpdate +TestMacroSemanticAnalyzer.testDropMacro +TestMacroSemanticAnalyzer.testDropMacroDoesNotExist +TestMacroSemanticAnalyzer.testDropMacroExistsDoNotIgnoreErrors +TestMacroSemanticAnalyzer.testDropMacroNonExistent +TestMacroSemanticAnalyzer.testDropMacroNonExistentWithIfExists +TestMacroSemanticAnalyzer.testDropMacroNonExistentWithIfExistsDoNotIgnoreNonExistent +TestMacroSemanticAnalyzer.testOneInputParamters +TestMacroSemanticAnalyzer.testOneUnusedParameterName +TestMacroSemanticAnalyzer.testThreeDuplicateParameters +TestMacroSemanticAnalyzer.testThreeInputParamters +TestMacroSemanticAnalyzer.testTwoDuplicateParameterNames +TestMacroSemanticAnalyzer.testTwoInputParamters +TestMacroSemanticAnalyzer.testTwoUnusedParameterNames +TestMacroSemanticAnalyzer.testUnknownInputParameter +TestMacroSemanticAnalyzer.testZeroInputParamters +TestMetaStoreAcidCleanup.testDropDatabaseShouldRollback_whenAcidCleanupFails +TestMetaStoreAcidCleanup.testDropTableShouldRollback_whenAcidCleanupFails +TestMetaStoreEndFunctionListener.testEndFunctionListener +TestMetaStoreEventListener.testListener +TestMetaStoreEventListener.testMetaConfDuplicateNotification +TestMetaStoreEventListener.testMetaConfNotifyListenersClosingClient +TestMetaStoreEventListener.testMetaConfNotifyListenersNonClosingClient +TestMetaStoreEventListener.testMetaConfSameHandler +TestMetaStoreEventListenerOnlyOnCommit.testEventStatus +TestMetaStoreEventListenerWithOldConf.testMetaConfDuplicateNotification +TestMetaStoreEventListenerWithOldConf.testMetaConfNotifyListenersClosingClient +TestMetaStoreEventListenerWithOldConf.testMetaConfNotifyListenersNonClosingClient +TestMetaStoreEventListenerWithOldConf.testMetaConfSameHandler +TestMetastoreExpr.testPartitionExpr +TestMetaStoreListenersError.testEventListenerException +TestMetaStoreListenersError.testInitListenerException +TestMetastoreScheduledQueries.testCreate +TestMetastoreScheduledQueries.testCreateWithInvalidSchedule +TestMetastoreScheduledQueries.testDeleteNonExistent +TestMetastoreScheduledQueries.testDisable1 +TestMetastoreScheduledQueries.testDisable2 +TestMetastoreScheduledQueries.testDuplicateCreate +TestMetastoreScheduledQueries.testExclusivePoll +TestMetastoreScheduledQueries.testNonExistent +TestMetastoreScheduledQueries.testNormalDelete +TestMetastoreScheduledQueries.testNormalDeleteWithExec +TestMetastoreScheduledQueries.testPoll +TestMetastoreScheduledQueries.testSkip2 +TestMetastoreScheduledQueries.testUpdate +TestMsckCreatePartitionsInBatches.testSmallNumberOfPartitions +TestMsckDropPartitionsInBatches.testSmallNumberOfPartitions +TestMSCKRepairOnAcid.testAddPartitionMinorCompacted +TestObjectStore.testMaxEventResponse +TestObjectStore.testNotificationOps +TestOperationLogManager.testGetOperationLog +TestOperationLogManager.testOperationLogManager +TestOperators.testFetchOperatorContext +TestOperators.testLlapMemoryOversubscriptionMaxExecutorsPerQueryCalculation +TestPartitionManagement.testNoPartitionDiscoveryForReplTable +TestPartitionManagement.testNoPartitionRetentionForReplTarget +TestPartitionManagement.testPartitionDiscoveryDBPattern +TestPartitionManagement.testPartitionDiscoveryDisabledByDefault +TestPartitionManagement.testPartitionDiscoveryEnabledBothTableTypes +TestPartitionManagement.testPartitionDiscoveryNonDefaultCatalog +TestPartitionManagement.testPartitionDiscoverySkipInvalidPath +TestPartitionManagement.testPartitionDiscoveryTablePattern +TestPartitionManagement.testPartitionDiscoveryTransactionalTable +TestPartitionManagement.testPartitionExprFilter +TestPartitionManagement.testPartitionRetention +TestPartitionNameWhitelistValidation.testAddPartitionWithCommas +TestPartitionNameWhitelistValidation.testAddPartitionWithUnicode +TestPartitionNameWhitelistValidation.testAddPartitionWithValidPartVal +TestPartitionNameWhitelistValidation.testAppendPartitionWithCommas +TestPartitionNameWhitelistValidation.testAppendPartitionWithUnicode +TestPartitionNameWhitelistValidation.testAppendPartitionWithValidCharacters +TestPassProperties.testSequenceTableWriteReadMR +TestPermsGrp.testCustomPerms +TestPlainSaslHelper.testDoAsSetting +TestPluggableHiveSessionImpl.testSessionImpl +TestPluggableHiveSessionImpl.testSessionImplWithUGI +TestPrivilegesV1.testPrivInGrant +TestPrivilegesV1.testPrivInGrantNotAccepted +TestPrivilegesV2.testPrivInGrant +TestHCatMultiOutputFormat.testOutputFormat +TestQBCompact.testBogusLevel +TestQBCompact.testMajor +TestQBCompact.testMinor +TestQBCompact.testNonPartitionedTable +TestQueryHooks.testAllQueryLifeTimeHooks +TestQueryHooks.testAllQueryLifeTimeWithParseHooks +TestQueryHooks.testQueryLifeTimeWithCompileError +TestQueryHooks.testQueryLifeTimeWithParseHooksWithCompileError +TestQueryHooks.testQueryLifeTimeWithParseHooksWithParseError +TestQueryLifeTimeHooksWithSQLOperation.testQueryInfoInHookContext +TestReadEntityDirect.testSelectEntityDirect +TestReadEntityDirect.testSelectEntityInDirect +TestReadEntityDirect.testSelectEntityInDirectJoinAlias +TestReadEntityDirect.testSelectEntityViewDirectJoin +TestReadEntityDirect.testSelectEntityViewDirectUnion +TestReaderWriter.test +TestRemoteHiveMetastoreWithHttpJwt.testExpiredJWT +TestRemoteHiveMetastoreWithHttpJwt.testInvalidJWT +TestRemoteHiveMetastoreWithHttpJwt.testValidJWT +TestReplicationMetrics.testAddMetrics +TestReplicationMetrics.testDeleteMetrics +TestReplicationMetrics.testGetMetricsByScheduleId +TestReplicationMetrics.testUpdateMetrics +TestReplicationMetricUpdateOnFailure.testReplLoadFailure +TestReplicationMetricUpdateOnFailure.testReplLoadNonRecoverableMissingStage +TestReplicationMetricUpdateOnFailure.testReplLoadRecoverableMissingStage +TestReplicationTask.testCreate +TestRetryable.testRetrySuccessSecureCallable +TestRetryingThriftCLIServiceClient.testRetryBehaviour +TestRetryingThriftCLIServiceClient.testSessionLifeAfterTransportClose +TestRetryingThriftCLIServiceClient.testTransportClose +TestRuntimeStats.testCleanup +TestRuntimeStats.testReading +TestRuntimeStats.testRuntimeStatHandling +TestSemanticAnalysis.testStoredAs +TestSemanticAnalyzerFactory.testCreate +TestSemanticAnalyzerFactory.testDrop +TestSessionCleanup.testTempSessionFileCleanup +TestSessionGlobalInitFile.testSessionGlobalInitFile +TestSessionHiveMetastoreClientAddPartitionsTempTable.testAddPartitionsNullLocationInTableToo +TestSessionHiveMetastoreClientAlterPartitionsTempTable.testAlterPartitionsCheckRollbackNullPartition +TestSessionHiveMetastoreClientExchangePartitionsTempTable.testExchangePartitionsNonExistingPartLocation +TestSessionHiveMetastoreClientListPartitionsTempTable.testListPartitionsSpecByExprNullResult +TestSessionHooks.testProxyUser +TestSessionHooks.testSessionHook +TestSessionManagerMetrics.testAbandonedSessionMetrics +TestSessionManagerMetrics.testActiveSessionTimeMetrics +TestSessionManagerMetrics.testOpenSessionMetrics +TestSessionManagerMetrics.testOpenSessionTimeMetrics +TestSessionManagerMetrics.testThreadPoolMetrics +TestShowPartitionAnalyzer.testGetShowPartitionsFilter +TestStatsUpdaterThread.testPartitionsWithDifferentColsAll +TestStreamingDynamicPartitioning.testWriteBeforeBegin +TestSymlinkTextInputFormat.testCombine +TestTempAcidTable.testTempFullAcidTableTranslate +TestTempAcidTable.testTempInsertOnlyTableTranslate +TestTezTask.testBuildDag +TestTezTask.testEmptyWork +TestTxnCommands.testMergeUpdateDelete +TestTxnCommands3.testSdpoBucketed +TestTxnCommandsForMmTable.testInsertOverwriteForMmTable +TestTxnConcatenate.testConcatenate +TestTxnExIm.testMMFlatSource +TestTxnNoBuckets.testInsertFromUnion +TestUpgradeTool.testPostUpgrade +TestUseDatabase.testAlterTablePass +TestViewEntity.testSubQueryInSubView +TestViewEntity.testUnionAllInSubView +TestViewEntity.testUnionView +TestViewEntity.testViewInSubQuery +TestViewEntity.testViewInSubQueryWithWhereClauseCbo +TestViewEntity.testViewInSubQueryWithWhereClauseRbo diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/pom-hive-standalone-metastore.xml b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/pom-hive-standalone-metastore.xml new file mode 100644 index 00000000..d6c23715 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/pom-hive-standalone-metastore.xml @@ -0,0 +1,719 @@ + + + + 4.0.0 + + org.apache + apache + 23 + + org.apache.hive + hive-standalone-metastore + 4.0.0-beta-2-SNAPSHOT + pom + Hive Standalone Metastore + + metastore-common + metastore-server + metastore-tools + + + 4.0.0-beta-2-SNAPSHOT + 4.0.0-beta-2 + . + + UTF-8 + UTF-8 + 1.8 + 1.8 + false + ${settings.localRepository} + 3.1.0 + ${basedir}/${standalone.metastore.path.to.root}/checkstyle + + ${project.basedir}/src/test/resources + ${project.build.directory}/tmp + ${project.build.directory}/warehouse + ${project.build.directory}/external + file:// + 1 + true + org.apache.hadoop.hive.metastore.annotation.MetastoreUnitTest + + 1.0b3 + 2.17 + 2.16.0 + 3.0.0-M4 + + 4.9.3 + 1.5.7 + 3.12.0 + 1.1.3 + 2.9.0 + 1.1.0-incubating + 5.2.8 + 5.2.10 + 3.2.0-release + 5.2.10 + 10.14.2.0 + 2.5.0 + 6.2.1.jre8 + 8.0.31 + 42.5.1 + 21.3.0.0 + 0.1.2 + + 3.1.0 + 22.0 + 3.3.6 + 4.0.3 + 2.13.5 + 3.3 + 5.5.1 + 4.13.2 + 5.6.2 + 5.6.3 + 0.9.3 + 0.16.0 + 2.18.0 + 3.3.3 + 1.8.5 + 3.21.7 + 1.51.0 + 1.9.0 + 2.14.6 + 4.0.4 + 4.0.0-beta-2-SNAPSHOT + 1.9.4 + 1.3 + 5.2.0 + 3.7.2 + 9.1.6 + 4.0.3 + 2.8.4 + 1.7.30 + 4.4.13 + 4.5.13 + 4.5.5 + 9.31 + 9.4.40.v20210413 + 1.3.2 + 5.2.24.RELEASE + + you-must-set-this-to-run-thrift + ${basedir}/src/gen/thrift + -I ${thrift.home} -strict --gen java:beans,generated_annotations=undated --gen cpp --gen php --gen py --gen rb + + + + 1.9.8.M1 + 1.13 + 1.0.0 + + + + + + org.apache.orc + orc-core + ${orc.version} + + + com.fasterxml.jackson + jackson-bom + ${jackson.version} + pom + import + + + com.github.joshelser + dropwizard-metrics-hadoop-metrics2-reporter + ${dropwizard-metrics-hadoop-metrics2-reporter.version} + + + com.google.guava + guava + ${guava.version} + + + com.google.protobuf + protobuf-java + ${protobuf.version} + + + com.zaxxer + HikariCP + ${hikaricp.version} + + + io.dropwizard.metrics + metrics-core + ${dropwizard.version} + + + io.dropwizard.metrics + metrics-jvm + ${dropwizard.version} + + + io.dropwizard.metrics + metrics-json + ${dropwizard.version} + + + javolution + javolution + ${javolution.version} + + + org.antlr + antlr4-runtime + ${antlr.version} + + + org.antlr + ST4 + ${ST4.version} + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + org.apache.datasketches + datasketches-hive + ${datasketches.version} + + + org.slf4j + slf4j-simple + + + + + org.apache.hadoop + hadoop-common + ${hadoop.version} + + + org.apache.zookeeper + zookeeper + + + org.apache.curator + curator-test + + + org.apache.curator + curator-client + + + org.apache.curator + curator-framework + + + org.apache.curator + curator-recipes + + + org.eclipse.jetty + * + + + + + org.apache.hadoop + hadoop-distcp + ${hadoop.version} + provided + + + org.apache.hadoop + hadoop-hdfs + ${hadoop.version} + + + org.eclipse.jetty + * + + + + + org.apache.hadoop + hadoop-hdfs-client + ${hadoop.version} + + + org.apache.hadoop + hadoop-mapreduce-client-core + ${hadoop.version} + + + org.jline + jline + + + io.netty + netty + + + + + org.apache.hive + hive-storage-api + ${storage-api.version} + + + org.apache.commons + commons-dbcp2 + ${commons-dbcp2.version} + + + org.apache.logging.log4j + log4j-slf4j-impl + ${log4j2.version} + + + org.apache.logging.log4j + log4j-1.2-api + ${log4j2.version} + + + org.apache.thrift + libfb303 + ${libfb303.version} + + + org.apache.thrift + libthrift + ${libthrift.version} + + + org.datanucleus + datanucleus-api-jdo + ${datanucleus-api-jdo.version} + + + org.datanucleus + datanucleus-core + ${datanucleus-core.version} + + + org.datanucleus + datanucleus-rdbms + ${datanucleus-rdbms.version} + + + org.datanucleus + javax.jdo + ${datanucleus-jdo.version} + + + org.skyscreamer + jsonassert + 1.4.0 + test + + + sqlline + sqlline + ${sqlline.version} + + + jline + jline + ${jline.version} + + + commons-logging + commons-logging + ${commons-logging.version} + + + com.cronutils + cron-utils + ${cron-utils.version} + + + com.github.ben-manes.caffeine + caffeine + ${caffeine.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.springframework + spring-jdbc + ${spring.version} + + + org.springframework + spring-core + ${spring.version} + + + + com.microsoft.sqlserver + mssql-jdbc + ${mssql.version} + runtime + + + com.oracle.database.jdbc + ojdbc8 + ${oracle.version} + runtime + + + com.mysql + mysql-connector-j + ${mysql.version} + runtime + + + org.apache.derby + derby + ${derby.version} + runtime + + + org.mariadb.jdbc + mariadb-java-client + ${mariadb.version} + runtime + + + org.postgresql + postgresql + ${postgres.version} + runtime + + + org.apache.httpcomponents + httpcore + ${httpcomponents.core.version} + + + org.eclipse.jetty + jetty-util + ${jetty.version} + + + org.eclipse.jetty + jetty-server + ${jetty.version} + + + org.eclipse.jetty + jetty-servlet + ${jetty.version} + + + + junit + junit + ${junit.version} + test + + + org.junit.jupiter + junit-jupiter-engine + ${junit.jupiter.version} + test + + + org.junit.vintage + junit-vintage-engine + ${junit.vintage.version} + test + + + org.apache.directory.server + apacheds-server-integ + ${apache-directory-server.version} + test + + + dom4j + dom4j + + + + + org.apache.directory.server + apacheds-test-framework + ${apache-directory-server.version} + test + + + org.mockito + mockito-core + ${mockito-core.version} + test + + + + org.hamcrest + hamcrest-all + ${hamcrest.version} + test + + + org.apache.curator + curator-test + ${curator.version} + test + + + org.junit.jupiter + junit-jupiter-api + + + + + org.slf4j + slf4j-simple + ${slf4j.version} + test + + + + + + + + org.aspectj + aspectjrt + ${aspectj.version} + + + edu.uchicago.cs.systems + wasabi + ${wasabi.version} + + + + com.fasterxml.jackson.core + jackson-databind + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.codehaus.mojo + versions-maven-plugin + ${maven.versions.plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven.surefire.plugin.version} + + false + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven.checkstyle.plugin.version} + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + assemble + package + + single + + + apache-${project.artifactId}-${project.version} + + tar.gz + + + src/assembly/src.xml + + posix + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + ${checkstyle.conf.dir}/checkstyle.xml + config_loc=${checkstyle.conf.dir} + true + + + + org.apache.rat + apache-rat-plugin + + + process-resources + + check + + + + + + *.patch + DEV-README + **/src/main/sql/** + **/README.md + **/*.iml + **/*.txt + **/*.log + **/*.arcconfig + **/package-info.java + **/*.properties + **/*.q + **/*.q.out + **/*.xml + **/gen/** + **/patchprocess/** + **/metastore_db/** + **/test/resources/**/*.ldif + **/test/resources/sql/** + **/test/resources/**/*.json + + + + + + + dev.aspectj + aspectj-maven-plugin + ${aspectj-maven.version} + + + + edu.uchicago.cs.systems + wasabi + + + + + + + test-compile + compile + + + 1.8 + 1.8 + false + true + true + unmatchedSuperTypeInCall=ignore,adviceDidNotMatch=ignore,typeNotExposedToWeaver=ignore,uncheckedAdviceConversion=ignore,invalidAbsoluteTypeName=ignore,cantFindType=ignore + + + + + + org.aspectj + aspectjtools + ${aspectj.version} + + + + + + + + + javadoc + + + + org.apache.maven.plugins + maven-javadoc-plugin + + none + false + + + + attach-javadocs + + jar + + + + + + + + + spotbugs + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.0.0 + + + + com.github.spotbugs + spotbugs + ${spotbugs.version} + + + + true + 2048 + -Djava.awt.headless=true -Xmx2048m -Xms512m + ${basedir}/${standalone.metastore.path.to.root}/spotbugs/spotbugs-exclude.xml + + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.0.0 + + true + 2048 + -Djava.awt.headless=true -Xmx2048m -Xms512m + ${basedir}/${standalone.metastore.path.to.root}/spotbugs/spotbugs-exclude.xml + + + + + + + diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/pom-hive.xml b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/pom-hive.xml new file mode 100644 index 00000000..1310a6da --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/pom-hive.xml @@ -0,0 +1,2115 @@ + + + + 4.0.0 + + org.apache + apache + 23 + + org.apache.hive + hive + 4.0.0-beta-2-SNAPSHOT + pom + Hive + https://hive.apache.org + + storage-api + accumulo-handler + vector-code-gen + beeline + classification + cli + common + contrib + druid-handler + hbase-handler + jdbc-handler + hcatalog + hplsql + jdbc + metastore + parser + udf + ql + serde + service-rpc + service + streaming + llap-common + llap-client + llap-ext-client + llap-tez + llap-server + shims + kudu-handler + testutils + packaging + standalone-metastore + kafka-handler + + + 4.0.0-beta-2-SNAPSHOT + 4.0.0-beta-2 + + 1.8 + 1.8 + false + ${settings.localRepository} + . + standalone + ${basedir}/${hive.path.to.root}/checkstyle + + ${project.groupId}:${project.artifactId} + + + + ${maven.test.classpath} + file:// + ${project.build.directory}/tmp + ${project.build.directory}/testconf + file://${test.tmp.dir} + + INFO + ${project.build.directory}/warehouse + ${project.build.directory}/localfs/warehouse + pfile:// + + + + 1.0b3 + -Xmx2048m -DJETTY_AVAILABLE_PROCESSORS=4 + 2.17 + 3.4.0 + 2.10 + 3.1.0 + 2.16.0 + 3.5.0 + 3.0.0-M4 + 2.7.10 + 2.3.0 + + 1.10.1 + 1.10.13 + 3.5.2 + + 4.9.3 + 1.5.7 + + 12.0.0 + 1.12.0 + 1.11.3 + 1.68 + 1.25.0 + 5.2.8 + 5.2.10 + 3.2.0-release + 5.2.10 + 1.5.0 + 1.15 + 3.2.2 + 4.1 + 1.23.0 + 1.10 + 1.1 + 2.12.0 + 2.11.1 + 3.12.0 + 3.6.1 + 2.9.0 + 1.10.0 + 10.14.2.0 + 3.1.0 + 0.1.2 + 0.17.1 + 2.2.4 + 1.12.0 + 22.0 + 2.4.21 + 2.2.220 + 3.3.6 + ${basedir}/${hive.path.to.root}/testutils/hadoop + 1.3 + 2.5.6-hadoop3 + 0.7.2 + + 3.3.7 + 4.0.3 + + 4.5.13 + 4.4.13 + 2.5.2 + 2.13.5 + 2.3.4 + 2.4.1 + 3.1.0 + 5.5.1 + 1.5.4 + 9.4.45.v20220203 + 1.19 + 2.14.6 + 2.0.2 + 2.9.9 + 6.0.0 + 1.8 + 4.13.2 + 5.6.2 + 5.6.3 + 2.5.0 + 5.5.0 + 1.11.9 + 1.12.0 + + 0.9.3 + 0.16.0 + 2.18.0 + 2.5.0 + 6.2.1.jre8 + 8.0.31 + 42.5.1 + 21.3.0.0 + 2.3 + 1.8.5 + 3.4.4 + 4.11.0 + 2.0.0-M5 + 4.1.77.Final + 3.10.5.Final + + 4.5.5 + 2.8 + 1.13.1 + 0.16.0 + 1.5.6 + 3.21.7 + 1.0.1 + 1.7.30 + 4.0.4 + 4.0.0-beta-2-SNAPSHOT + 0.10.2 + 2.2.0 + 1.1 + 1.1.10.4 + 1.4 + 2.3 + 2.12.2 + 2.3.4 + 3.7.2 + 1.1 + 2.4.0 + 5.2.0 + 3.0.0 + 2.9.0 + 0.10.5 + 1.2 + 2.0.1 + 2.8.0 + 3.0.11 + 1.1.0-incubating + 4.0.3 + 1.1.0.Final + 1.0.1 + 1.12.499 + 2.4.0 + 5.2.24.RELEASE + + + 1.9.8.M1 + 1.13 + 1.0.0 + + + + + + central + central + https://repo.maven.apache.org/maven2 + default + + true + warn + + + + repository-release + https://repository.apache.org/content/repositories/releases/ + + true + + + true + + + + + shibboleth + https://build.shibboleth.net/nexus/content/groups/public + + true + warn + + + false + + + + + + + + com.amazonaws + aws-java-sdk-bundle + ${aws-java-sdk.version} + + + io.netty + * + + + + + com.amazonaws.secretsmanager + aws-secretsmanager-caching-java + ${aws-secretsmanager-caching.version} + + + com.amazonaws + aws-java-sdk-secretsmanager + + + + + com.esotericsoftware + kryo + ${kryo.version} + + + com.esotericsoftware + reflectasm + ${reflectasm.version} + + + com.google.guava + guava + ${guava.version} + + + com.google.protobuf + protobuf-java + ${protobuf.version} + + + com.google.code.tempus-fugit + tempus-fugit + ${tempus-fugit.version} + + + org.hamcrest + hamcrest-core + + + + + com.zaxxer + HikariCP + ${hikaricp.version} + + + com.thoughtworks.paranamer + paranamer + ${paranamer.version} + + + org.apache.parquet + parquet + ${parquet.version} + + + org.apache.parquet + parquet-column + ${parquet.version} + tests + + + org.apache.parquet + parquet-hadoop-bundle + ${parquet.version} + + + com.sun.jersey + jersey-core + ${jersey.version} + + + com.sun.jersey + jersey-json + ${jersey.version} + + + com.sun.jersey + jersey-server + ${jersey.version} + + + com.sun.jersey.contribs + wadl-resourcedoc-doclet + ${wadl-resourcedoc-doclet.version} + + + com.sun.jersey + jersey-servlet + ${jersey.version} + + + commons-cli + commons-cli + ${commons-cli.version} + + + commons-codec + commons-codec + ${commons-codec.version} + + + commons-collections + commons-collections + ${commons-collections.version} + + + org.apache.commons + commons-collections4 + ${commons-collections4.version} + + + commons-io + commons-io + ${commons-io.version} + + + org.apache.commons + commons-dbcp2 + ${commons-dbcp2.version} + + + org.apache.commons + commons-math3 + ${commons-math3.version} + + + io.jsonwebtoken + jjwt-api + ${jjwt.version} + + + io.jsonwebtoken + jjwt-impl + ${jjwt.version} + + + io.jsonwebtoken + jjwt-jackson + ${jjwt.version} + + + io.netty + netty-all + ${netty.version} + + + jakarta.jms + jakarta.jms-api + ${jms.version} + + + javolution + javolution + ${javolution.version} + + + jline + jline + ${jline.version} + + + joda-time + joda-time + ${joda.version} + + + junit + junit + ${junit.version} + + + org.junit.jupiter + junit-jupiter-engine + ${junit.jupiter.version} + + + org.junit.jupiter + junit-jupiter-params + ${junit.jupiter.version} + + + org.junit.vintage + junit-vintage-engine + ${junit.vintage.version} + + + org.apache.commons + commons-text + ${commons-text.version} + + + org.apache.logging.log4j + log4j-1.2-api + ${log4j2.version} + + + org.apache.logging.log4j + log4j-web + ${log4j2.version} + + + org.apache.logging.log4j + log4j-slf4j-impl + ${log4j2.version} + + + org.antlr + antlr-runtime + ${antlr.version} + + + org.antlr + ST4 + ${ST4.version} + + + org.apache.commons + commons-compress + ${commons-compress.version} + + + org.apache.commons + commons-exec + ${commons-exec.version} + + + org.apache.accumulo + accumulo-core + ${accumulo.version} + + + org.apache.accumulo + accumulo-fate + ${accumulo.version} + + + org.apache.accumulo + accumulo-minicluster + ${accumulo.version} + + + org.apache.accumulo + accumulo-start + ${accumulo.version} + + + org.apache.accumulo + accumulo-trace + ${accumulo.version} + + + org.apache.calcite.avatica + avatica + ${avatica.version} + + + org.apache.calcite.avatica + avatica-core + ${avatica.version} + + + org.apache.calcite.avatica + avatica-metrics + ${avatica.version} + + + org.apache.calcite.avatica + avatica-server + ${avatica.version} + + + org.apache.avro + avro + ${avro.version} + + + org.apache.avro + avro-mapred + ${avro.version} + + + org.mortbay.jetty + jetty-util + + + org.mortbay.jetty + servlet-api + + + io.netty + netty + + + + + org.apache.httpcomponents + httpclient + ${httpcomponents.client.version} + + + org.apache.httpcomponents + httpcore + ${httpcomponents.core.version} + + + org.apache.velocity + velocity-engine-core + ${velocity.version} + + + stax + stax-api + ${stax.version} + + + org.apache.calcite + calcite-core + ${calcite.version} + + + org.apache.calcite + calcite-linq4j + ${calcite.version} + + + org.apache.calcite + calcite-druid + ${calcite.version} + + + org.apache.curator + curator-test + ${curator.version} + test + + + org.junit.jupiter + junit-jupiter-api + + + + + org.apache.datasketches + datasketches-hive + ${datasketches.version} + + + org.slf4j + slf4j-simple + + + + + org.apache.orc + orc-core + ${orc.version} + + + org.apache.hadoop + hadoop-common + + + org.apache.hive + hive-storage-api + + + + + org.apache.hive + hive-storage-api + ${storage-api.version} + + + org.apache.zookeeper + zookeeper + + + org.apache.curator + curator-client + + + org.apache.curator + curator-recipes + + + + + org.apache.pig + pig + ${pig.version} + + + org.apache.thrift + libfb303 + ${libfb303.version} + + + org.apache.thrift + libthrift + ${libthrift.version} + + + org.apache.zookeeper + zookeeper + ${zookeeper.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-reload4j + + + ch.qos.reload4j + reload4j + + + commons-logging + commons-logging + + + org.apache.httpcomponents + httpcore + + + org.apache.httpcomponents + httpclient + + + io.netty + netty-all + + + + + org.apache.curator + curator-client + ${curator.version} + + + org.apache.curator + curator-framework + ${curator.version} + + + org.apache.curator + curator-recipes + ${curator.version} + + + org.codehaus.groovy + groovy-all + ${groovy.version} + + + com.fasterxml.jackson + jackson-bom + ${jackson.version} + pom + import + + + org.codehaus.jettison + jettison + ${jettison.version} + + + stax + stax-api + + + + + org.eclipse.jetty + jetty-rewrite + ${jetty.version} + + + org.eclipse.jetty + jetty-server + ${jetty.version} + + + org.eclipse.jetty + jetty-servlet + ${jetty.version} + + + org.eclipse.jetty + jetty-runner + ${jetty.version} + + + org.eclipse.jetty + jetty-webapp + ${jetty.version} + + + org.eclipse.jetty + jetty-http + ${jetty.version} + + + org.eclipse.jetty + jetty-util + ${jetty.version} + + + javax.servlet + javax.servlet-api + ${javax-servlet.version} + + + org.datanucleus + datanucleus-api-jdo + ${datanucleus-api-jdo.version} + + + org.datanucleus + datanucleus-core + ${datanucleus-core.version} + + + org.datanucleus + datanucleus-rdbms + ${datanucleus-rdbms.version} + + + org.datanucleus + javax.jdo + ${datanucleus-jdo.version} + + + org.pac4j + pac4j-saml-opensamlv3 + ${pac4j-saml.version} + + + com.google.code.findbugs + jsr305 + + + ch.qos.logback + logback-classic + + + xalan + xalan + + + org.springframework + spring-core + + + dom4j + dom4j + + + commons-collections + commons-collections + + + org.slf4j + * + + + org.jboss.logging + * + + + org.hibernate + * + + + org.hibernate.javax.persistence + * + + + org.springframework + * + + + org.javassist + javassist + + + + org.bouncycastle + org.bouncycastle + + + org.apache.santuario + xmlsec + + + + + org.bouncycastle + bcprov-jdk15on + ${bcprov-jdk15on.version} + + + org.apache.santuario + xmlsec + ${xmlsec.version} + + + com.fasterxml.woodstox + woodstox-core + + + + + com.tdunning + json + ${json.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + xerces + xercesImpl + ${xerces.version} + + + org.apache.hadoop + hadoop-client + ${hadoop.version} + + + commons-logging + commons-logging + + + + + org.apache.hadoop + hadoop-auth + ${hadoop.version} + + + commons-logging + commons-logging + + + org.apache.zookeeper + zookeeper + + + org.apache.curator + curator-framework + + + org.apache.curator + curator-test + + + + + org.apache.hadoop + hadoop-common + ${hadoop.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-reload4j + + + ch.qos.reload4j + reload4j + + + commons-logging + commons-logging + + + org.apache.httpcomponents + httpcore + + + org.apache.httpcomponents + httpclient + + + org.apache.zookeeper + zookeeper + + + org.apache.curator + curator-test + + + org.apache.curator + curator-client + + + org.apache.curator + curator-recipes + + + javax.servlet.jsp + jsp-api + + + + + org.apache.hadoop + hadoop-hdfs + ${hadoop.version} + + + io.netty + netty + + + + + org.apache.hadoop + hadoop-mapreduce-client-jobclient + ${hadoop.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-reload4j + + + ch.qos.reload4j + reload4j + + + commons-logging + commons-logging + + + com.codahale.metrics + metrics-core + + + io.netty + netty-all + + + io.netty + netty + + + + + org.apache.hadoop + hadoop-mapreduce-client-common + ${hadoop.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-reload4j + + + ch.qos.reload4j + reload4j + + + commons-logging + commons-logging + + + io.netty + netty-all + + + io.netty + netty + + + + + org.apache.hadoop + hadoop-mapreduce-client-core + ${hadoop.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-reload4j + + + ch.qos.reload4j + reload4j + + + org.jline + jline + + + commons-logging + commons-logging + + + io.netty + netty-all + + + io.netty + netty + + + + + org.apache.hadoop + hadoop-minikdc + ${hadoop.version} + + + io.netty + netty-all + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-reload4j + + + ch.qos.reload4j + reload4j + + + commons-logging + commons-logging + + + + + org.apache.hadoop + hadoop-yarn-api + ${hadoop.version} + + + org.apache.hadoop + hadoop-yarn-client + ${hadoop.version} + + + org.jline + jline + + + + + org.apache.hadoop + hadoop-yarn-common + ${hadoop.version} + + + org.apache.hadoop + hadoop-yarn-registry + ${hadoop.version} + + + org.apache.hadoop + hadoop-yarn-server-web-common + ${hadoop.version} + + + org.apache.hadoop + hadoop-yarn-server-web-proxy + ${hadoop.version} + + + io.netty + netty-all + + + + + org.apache.hbase + hbase-common + ${hbase.version} + + + org.apache.hbase + hbase-client + ${hbase.version} + + + org.apache.hbase + hbase-hadoop-compat + ${hbase.version} + + + org.apache.hbase + hbase-hadoop2-compat + ${hbase.version} + + + javax.servlet + servlet-api + + + javax.servlet.jsp + jsp-api + + + org.jruby + jruby-complete + + + io.netty + netty-all + + + io.netty + netty + + + com.sun.jersey + jersey-core + + + com.sun.jersey + jersey-json + + + com.sun.jersey + jersey-server + + + com.codahale.metrics + metrics-core + + + + + org.apache.hbase + hbase-server + ${hbase.version} + + + org.glassfish.web + javax.servlet.jsp + + + + + org.apache.hbase + hbase-mapreduce + ${hbase.version} + + + org.apache.hbase + hbase-zookeeper + tests + ${hbase.version} + + + org.apache.hadoop + hadoop-minicluster + ${hadoop.version} + + + org.jamon + jamon-runtime + ${jamon-runtime.version} + + + org.xerial.snappy + snappy-java + ${snappy.version} + + + com.google.re2j + re2j + ${re2j.version} + + + com.jayway.jsonpath + json-path + ${json-path.version} + runtime + + + org.codehaus.janino + commons-compiler + ${janino.version} + runtime + + + org.codehaus.janino + janino + ${janino.version} + runtime + + + org.apache.tez + tez-runtime-internals + ${tez.version} + + + org.apache.tez + tez-runtime-library + ${tez.version} + + + io.netty + netty + + + + + org.apache.tez + tez-api + ${tez.version} + + + org.apache.tez + tez-dag + ${tez.version} + + + org.apache.tez + tez-mapreduce + ${tez.version} + + + io.netty + netty + + + + + org.apache.tez + tez-common + ${tez.version} + + + org.springframework + spring-jdbc + ${spring.version} + + + org.springframework + spring-core + ${spring.version} + + + + com.microsoft.sqlserver + mssql-jdbc + ${mssql.version} + runtime + + + com.oracle.database.jdbc + ojdbc8 + ${oracle.version} + runtime + + + com.mysql + mysql-connector-j + ${mysql.version} + runtime + + + org.apache.derby + derby + ${derby.version} + runtime + + + org.mariadb.jdbc + mariadb-java-client + ${mariadb.version} + runtime + + + org.postgresql + postgresql + ${postgres.version} + runtime + + + + + + + + org.aspectj + aspectjrt + ${aspectj.version} + + + edu.uchicago.cs.systems + wasabi + ${wasabi.version} + + + + + + org.slf4j + slf4j-api + + + + + + + + org.antlr + antlr3-maven-plugin + ${antlr.version} + + + org.apache.avro + avro-maven-plugin + ${avro.version} + + + org.apache.maven.plugins + maven-antrun-plugin + + + ant-contrib + ant-contrib + ${ant.contrib.version} + + + ant + ant + + + + + + + org.apache.maven.plugins + maven-eclipse-plugin + ${maven.eclipse.plugin.version} + + false + true + target/eclipse/classes + Hive + ${basedir}/dev-support/eclipse-styles.xml + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven.checkstyle.plugin.version} + + + org.codehaus.mojo + versions-maven-plugin + ${maven.versions.plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven.surefire.plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${felix.version} + + + org.apache.maven.plugins + maven-shade-plugin + ${maven.shade.plugin.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${maven.build-helper.plugin.version} + + + org.codehaus.mojo + exec-maven-plugin + ${maven.exec.plugin.version} + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + define-classpath + process-resources + + run + + + true + + + + + + + setup-test-dirs + process-test-resources + + run + + + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-clean-plugin + + + + ./ + + datanucleus.log + derby.log + + false + + + build + false + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + ${checkstyle.conf.dir}/checkstyle.xml + config_loc=${checkstyle.conf.dir} + true + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + de.skuzzle.enforcer + restrict-imports-enforcer-rule + 0.9.0 + + + + + enforce-no-snapshots + + enforce + + + + + Release builds are not allowed to have SNAPSHOT depenendencies + true + true + + + true + + + + enforce-banned-dependencies-licenses + + enforce + + + + + + + com.google.code.findbugs:annotations + + A banned license dependency was found! + + + true + + + + enforce-banned-dependencies-logging + + enforce + + + + + + + commons-logging:commons-logging + log4j:log4j + ch.qos.reload4j:reload4j + + false + A banned logging dependency was found! + + + true + + + + check-banned-imports + initialize + + enforce + + + + + Do not use shaded imports + + **.shaded.** + jersey.repackaged.com.google.** + org.codehaus.jackson.** + org.apache.hive.com.** + org.apache.hive.org.** + + + org.apache.hadoop.hbase.shaded.protobuf.** + + true + + + Do not use commons-lang + + org.apache.commons.lang.** + + true + + + Do not use commons-logging; use slf4j + + org.apache.commons.logging.** + + true + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/TestSerDe.java + **/TestHiveMetaStore.java + **/ql/exec/vector/util/*.java + **/ql/exec/vector/udf/legacy/*.java + **/ql/exec/vector/udf/generic/*.java + **/TestHiveServer2Concurrency.java + ${test.excludes.additional} + + true + false + false + ${maven.test.jvm.args} + false + + ${test.conf.dir} + ${basedir}/${hive.path.to.root}/conf + + + US/Pacific + en_US.UTF-8 + ${test.conf.dir}:${basedir}/${hive.path.to.root}/conf + ${test.hive.hadoop.classpath} + ${env.PATH}${test.extra.path} + + + ${project.build.directory} + + ${test.tmp.dir} + + ${derby.version} + ${test.tmp.dir}/derby.log + ${hadoop.bin.path} + + ${test.tmp.dir} + ${basedir}/${hive.path.to.root}/ + ${project.version} + + ${maven.repo.local} + local + ${test.log4j.scheme}${test.conf.dir}/hive-log4j2.properties + ${test.console.log.level} + true + + ${test.tmp.dir} + + ${test.tmp.dir} + + ${basedir}/${hive.path.to.root}/data/files + ${basedir}/${hive.path.to.root}/data/files + ${test.tmp.dir} + ${test.tmp.dir.uri} + ${test.dfs.mkdir} + ${test.output.overwrite} + ${test.warehouse.scheme}${test.warehouse.dir} + ${test.warehouse.scheme}${test.local.warehouse.dir} + true + + + ${test.conf.dir}/krb5.conf + ${hadoop.version} + ${qfile} + ${initScript} + ${clustermode} + ${qfile_regex} + ${run_disabled} + + + + + org.apache.rat + apache-rat-plugin + + + process-resources + + check + + + + + + *.patch + .github/** + data/** + conf/** + checkstyle/** + docs/Gemfile + bin/** + itests/** + **/README.md + **/*.iml + **/*.txt + **/*.log + **/.factorypath + **/.classpath + **/.project + **/.settings/** + **/*.arcconfig + **/package-info.java + **/*.properties + **/*.q + **/*.q.out + **/*.q.out_* + **/*.xml + **/*.yml + **/*json + **/gen/** + **/target/** + **/scripts/** + **/resources/** + **/*.rc + **/*.rcfile + **/*.qv + **/*.out + **/RecordTestObj.java + **/*.m + **/gen-java/** + **/testdata/** + **/test/org/apache/hadoop/hive/hbase/avro/** + **/avro_test.avpr + **/xmlReport.pl + **/*.html + **/sit + **/test/queries/**/*.sql + **/patchprocess/** + **/metastore_db/** + **/test/resources/**/*.ldif + hcatalog/core/mapred/**/part-m* + hcatalog/core/mapred/**/*_SUCCESS* + **/PriorityBlockingDeque.java + LICENSE-binary + + + + + org.jamon + jamon-maven-plugin + ${jamon.plugin.version} + + + + + dev.aspectj + aspectj-maven-plugin + ${aspectj-maven.version} + + + + edu.uchicago.cs.systems + wasabi + + + + + + + test-compile + compile + + + 1.8 + 1.8 + false + true + true + unmatchedSuperTypeInCall=ignore,adviceDidNotMatch=ignore,typeNotExposedToWeaver=ignore,uncheckedAdviceConversion=ignore,invalidAbsoluteTypeName=ignore,cantFindType=ignore + + + + + + org.aspectj + aspectjtools + ${aspectj.version} + + + + + + + + + thriftif + + + + org.codehaus.mojo + exec-maven-plugin + + + check-thrift-version + generate-sources + + exec + + + sh + ${basedir} + + -c + ${thrift.home}/bin/thrift -version | fgrep 'Thrift version ${libthrift.version}' && exit 0; + echo "================================================================================="; + echo "========== [FATAL] Build is configured to require Thrift version ${libthrift.version} ========="; + echo "========== Currently installed: "; + ${thrift.home}/bin/thrift -version; + echo "================================================================================="; + exit 1 + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + generate-thrift-sources + generate-sources + + + + + + + + + + + + + + + + + + + + + + run + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-property + + enforce + + + + + thrift.home + + + true + + + + + + + + + sources + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + + + + javadoc + + + + org.apache.maven.plugins + maven-javadoc-plugin + + none + false + + + + attach-javadocs + + jar + + + + + + + + + spotbugs + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.0.0 + + + + com.github.spotbugs + spotbugs + ${spotbugs.version} + + + + true + 2048 + -Djava.awt.headless=true -Xmx2048m -Xms512m + ${basedir}/${hive.path.to.root}/spotbugs/spotbugs-exclude.xml + + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.0.0 + + true + 2048 + -Djava.awt.headless=true -Xmx2048m -Xms512m + ${basedir}/${hive.path.to.root}/spotbugs/spotbugs-exclude.xml + + + + + + + + windows-test + + + Windows + + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 2.8 + + + copy-dependencies + package + + copy-dependencies + + + ${project.build.directory}/deplibs/ + false + false + true + + + + + + + + ${basedir}/${hive.path.to.root}/testutils/hadoop.cmd + + ;${env.HADOOP_HOME}/bin + ${project.build.directory}/deplibs/* + file:///${test.tmp.dir} + file:/ + + + + itests + + itests + + + + iceberg + + iceberg + + + + customhbase + + + hbase.version + + + + + dist + + + + org.cyclonedx + cyclonedx-maven-plugin + ${maven.cyclonedx.plugin.version} + + + package + + makeBom + + + + + + + + + diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.conf new file mode 100644 index 00000000..5e335794 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.data new file mode 100644 index 00000000..bab3f821 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/druid-handler/src/java/org/apache/hadoop/hive/druid/DruidStorageHandlerUtils.java#L765!!!org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec!!!org.apache.hadoop.fs.FileSystem.mkdirs!!!DruidStorageHandlerUtils.java:774!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.conf new file mode 100644 index 00000000..d42903b7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.data new file mode 100644 index 00000000..932680e0 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/llap-client/src/java/org/apache/hadoop/hive/registry/impl/ZkRegistryBase.java#L640!!!org.apache.hadoop.hive.registry.impl.ZkRegistryBase.ensureInstancesCache!!!org.apache.curator.framework.recipes.cache.PathChildrenCache.start!!!ZkRegistryBase.java:644!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.conf new file mode 100644 index 00000000..4e9d1dc5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.data new file mode 100644 index 00000000..50c1ed80 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/RetryingHMSHandler.java#L83!!!org.apache.hadoop.hive.metastore.RetryingHMSHandler.invokeInternal!!!org.apache.hadoop.hive.metastore.Deadline.startTimer!!!RetryingHMSHandler.java:89!!!org.apache.hadoop.hive.metastore.api.MetaException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.conf new file mode 100644 index 00000000..c858eaa4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.data new file mode 100644 index 00000000..971f560b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.getUGI!!!HiveMetaStoreClient.java:848!!!java.io.IOException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.conf new file mode 100644 index 00000000..5d18da41 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.data new file mode 100644 index 00000000..8141f8f6 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java#L11654!!!org.apache.hadoop.hive.metastore.ObjectStore$RetryingExecutor.run!!!org.apache.hadoop.hive.metastore.ObjectStore$RetryingExecutor$Command.process!!!ObjectStore.java:11999!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.conf new file mode 100644 index 00000000..0d72c0c6 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.data new file mode 100644 index 00000000..35ee5865 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DbLockManager.java#L101!!!org.apache.hadoop.hive.ql.lockmgr.DbLockManager.lock!!!org.apache.hadoop.hive.ql.lockmgr.DbTxnManager.getMS!!!DbLockManager.java:104!!!org.apache.hadoop.hive.ql.lockmgr.LockException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.conf new file mode 100644 index 00000000..dfdb29ae --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.data new file mode 100644 index 00000000..35ee5865 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DbLockManager.java#L101!!!org.apache.hadoop.hive.ql.lockmgr.DbLockManager.lock!!!org.apache.hadoop.hive.ql.lockmgr.DbTxnManager.getMS!!!DbLockManager.java:104!!!org.apache.hadoop.hive.ql.lockmgr.LockException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.conf new file mode 100644 index 00000000..04359835 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.data new file mode 100644 index 00000000..b1214e6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.conf new file mode 100644 index 00000000..07caf1e4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.data new file mode 100644 index 00000000..316ee87d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/util/Retryable.java#L71!!!org.apache.hadoop.hive.ql.exec.util.Retryable.executeCallable!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.reloginExpiringKeytabUser!!!Retryable.java:74!!!org.apache.hadoop.hive.metastore.api.MetaException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.conf new file mode 100644 index 00000000..5d2f2d1d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.data new file mode 100644 index 00000000..86dedf9f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/hooks/HiveProtoLoggingHook.java#L315!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.writeEvent!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.maybeRolloverWriterForDay!!!HiveProtoLoggingHook.java:327!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.conf new file mode 100644 index 00000000..482a2d5d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.data new file mode 100644 index 00000000..b1214e6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.conf new file mode 100644 index 00000000..ee35077d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.data new file mode 100644 index 00000000..b1214e6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.conf new file mode 100644 index 00000000..376b0ebd --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.data new file mode 100644 index 00000000..b1214e6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.conf new file mode 100644 index 00000000..35359a09 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.data new file mode 100644 index 00000000..b1214e6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.conf new file mode 100644 index 00000000..60012f49 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.data new file mode 100644 index 00000000..7e3a3a47 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/CopyUtils.java#L253!!!org.apache.hadoop.hive.ql.parse.repl.CopyUtils.doCopyRetry!!!org.apache.hadoop.hive.ql.parse.repl.CopyUtils.getFilesToRetry!!!CopyUtils.java:257!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.conf new file mode 100644 index 00000000..918cd310 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.data new file mode 100644 index 00000000..971f560b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.getUGI!!!HiveMetaStoreClient.java:848!!!java.io.IOException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.conf new file mode 100644 index 00000000..d00d154c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.data new file mode 100644 index 00000000..b1214e6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/config/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/pom-java11.xml b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/pom-java11.xml new file mode 100644 index 00000000..3928be3e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/pom-java11.xml @@ -0,0 +1,535 @@ + + + + 4.0.0 + edu.uchicago.cs.systems + wasabi + Wasabi Fault Injection Instrumentation Library + Wasabi Library + 1.0.0 + jar + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + default.conf + 1.9.19 + 1.13.1 + + 3.0.0-beta-1 + 3.3.5 + 4.0.0-beta-1 + 3.9.1 + 0.15.0 + + + + + + org.opentest4j + opentest4j + 1.2.0 + test + + + + + + + org.aspectj + aspectjrt + ${aspectj.version} + + + org.slf4j + slf4j-simple + 2.0.6 + + + junit + junit + 4.13.2 + + + org.junit.jupiter + junit-jupiter-api + 5.8.2 + + + commons-codec + commons-codec + 1.16.0 + + + org.assertj + assertj-core + 3.20.2 + test + + + + + + + + central + Central Repository + https://repo.maven.apache.org/maven2 + default + + false + + + true + never + + + + ossrh-snapshots + Sonatype OSSRH snapshots + https://oss.sonatype.org/content/repositories/snapshots + default + + true + always + + + false + + + + repository-release + https://repository.apache.org/content/repositories/releases/ + + true + + + true + + + + + shibboleth + https://build.shibboleth.net/nexus/content/groups/public + + true + warn + + + false + + + + + + + + config + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + + default-compile + none + + + default-testCompile + none + + + + + dev.aspectj + aspectj-maven-plugin + ${aspectj-maven.version} + + + + test-compile + compile + + + + + true + true + 11 + 11 + 11 + UTF-8 + false + + + + org.aspectj + aspectjtools + ${aspectj.version} + + + javax.xml.stream + stax-api + + + + + + + + + + + hadoop + + + instrumentation.target + hadoop + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 11 + 11 + 11 + compile + true + true + + **/InterceptHadoop.aj + + + + + + + + + src/main/java + + + + + + org.junit.jupiter + junit-jupiter-api + 5.8.2 + + + org.apache.hadoop + hadoop-common + ${hadoop.version} + + + + + + hbase + + + instrumentation.target + hbase + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 11 + 11 + 11 + compile + true + true + + **/InterceptHBase.aj + + + + + + + + + src/main/java + + + + + + + org.junit.jupiter + junit-jupiter-api + 5.8.2 + + org.apache.hbase + hbase-client + ${hbase.version} + + + + + + hive + + + instrumentation.target + hive + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 11 + 11 + 11 + compile + true + true + + **/InterceptHive.aj + + + + + + + + + src/main/java + + + + + + org.apache.hive + hive-metastore + ${hive.version} + + + org.apache.hive + hive-service + ${hive.version} + + + org.apache.hive + hive-exec + ${hive.version} + + + org.apache.thrift + libthrift + ${trift.version} + + + + + + cassandra + + + instrumentation.target + cassandra + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 11 + 11 + 11 + compile + true + true + + **/InterceptCassandra.aj + + + + + + + + + src/main/java + + + + + + + elasticsearch + + + instrumentation.target + elasticsearch + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 11 + 11 + 11 + compile + true + true + + **/InterceptElasticSearch.aj + + + + + + + + + src/main/java + + + + + + + \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/pom-java8.xml b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/pom-java8.xml new file mode 100644 index 00000000..e8a52640 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/pom-java8.xml @@ -0,0 +1,530 @@ + + + + 4.0.0 + edu.uchicago.cs.systems + wasabi + Wasabi Fault Injection Instrumentation Library + Wasabi Library + 1.0.0 + jar + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + default.conf + 1.9.8.M1 + 1.13 + + 3.0.0-beta-1 + 3.3.5 + 4.0.0-beta-1 + 3.9.1 + 0.15.0 + + + + + + org.opentest4j + opentest4j + 1.2.0 + test + + + + + + + org.aspectj + aspectjrt + ${aspectj.version} + + + org.slf4j + slf4j-simple + 2.0.6 + + + junit + junit + 4.13.2 + + + commons-codec + commons-codec + 1.16.0 + + + org.assertj + assertj-core + 3.20.2 + test + + + + + + + + central + Central Repository + https://repo.maven.apache.org/maven2 + default + + false + + + true + never + + + + ossrh-snapshots + Sonatype OSSRH snapshots + https://oss.sonatype.org/content/repositories/snapshots + default + + true + always + + + false + + + + repository-release + https://repository.apache.org/content/repositories/releases/ + + true + + + true + + + + + shibboleth + https://build.shibboleth.net/nexus/content/groups/public + + true + warn + + + false + + + + + + + + config + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + + default-compile + none + + + default-testCompile + none + + + + + dev.aspectj + aspectj-maven-plugin + ${aspectj-maven.version} + + + + test-compile + compile + + + + + true + true + 1.8 + 1.8 + 1.8 + UTF-8 + false + + + + org.aspectj + aspectjtools + ${aspectj.version} + + + javax.xml.stream + stax-api + + + + + + + + + + + hadoop + + + instrumentation.target + hadoop + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 1.8 + 1.8 + 1.8 + compile + true + true + + **/InterceptHadoop.aj + + + + + + + + + src/main/java + + + + + + org.junit.jupiter + junit-jupiter-api + 5.8.2 + + + org.apache.hadoop + hadoop-common + ${hadoop.version} + + + + + + hbase + + + instrumentation.target + hbase + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 1.8 + 1.8 + 1.8 + compile + true + true + + **/InterceptHBase.aj + + + + + + + + + src/main/java + + + + + + org.apache.hbase + hbase-client + ${hbase.version} + + + org.junit.jupiter + junit-jupiter-api + 5.8.2 + + + + + + hive + + + instrumentation.target + hive + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 1.8 + 1.8 + 1.8 + compile + true + true + + **/InterceptHive.aj + + + + + + + + + src/main/java + + + + + + org.apache.hive + hive-metastore + ${hive.version} + + + org.apache.hive + hive-service + ${hive.version} + + + org.apache.hive + hive-exec + ${hive.version} + + + org.apache.thrift + libthrift + ${trift.version} + + + + + + cassandra + + + instrumentation.target + cassandra + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 1.8 + 1.8 + 1.8 + compile + true + true + + **/InterceptCassandra.aj + + + + + + + + + src/main/java + + + + + + + elasticsearch + + + instrumentation.target + elasticsearch + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 1.8 + 1.8 + 1.8 + compile + true + true + + **/InterceptElasticSearch.aj + + + + + + + + + src/main/java + + + + + + + \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/pom.xml b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/pom.xml new file mode 100644 index 00000000..e8a52640 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/pom.xml @@ -0,0 +1,530 @@ + + + + 4.0.0 + edu.uchicago.cs.systems + wasabi + Wasabi Fault Injection Instrumentation Library + Wasabi Library + 1.0.0 + jar + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + default.conf + 1.9.8.M1 + 1.13 + + 3.0.0-beta-1 + 3.3.5 + 4.0.0-beta-1 + 3.9.1 + 0.15.0 + + + + + + org.opentest4j + opentest4j + 1.2.0 + test + + + + + + + org.aspectj + aspectjrt + ${aspectj.version} + + + org.slf4j + slf4j-simple + 2.0.6 + + + junit + junit + 4.13.2 + + + commons-codec + commons-codec + 1.16.0 + + + org.assertj + assertj-core + 3.20.2 + test + + + + + + + + central + Central Repository + https://repo.maven.apache.org/maven2 + default + + false + + + true + never + + + + ossrh-snapshots + Sonatype OSSRH snapshots + https://oss.sonatype.org/content/repositories/snapshots + default + + true + always + + + false + + + + repository-release + https://repository.apache.org/content/repositories/releases/ + + true + + + true + + + + + shibboleth + https://build.shibboleth.net/nexus/content/groups/public + + true + warn + + + false + + + + + + + + config + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + + default-compile + none + + + default-testCompile + none + + + + + dev.aspectj + aspectj-maven-plugin + ${aspectj-maven.version} + + + + test-compile + compile + + + + + true + true + 1.8 + 1.8 + 1.8 + UTF-8 + false + + + + org.aspectj + aspectjtools + ${aspectj.version} + + + javax.xml.stream + stax-api + + + + + + + + + + + hadoop + + + instrumentation.target + hadoop + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 1.8 + 1.8 + 1.8 + compile + true + true + + **/InterceptHadoop.aj + + + + + + + + + src/main/java + + + + + + org.junit.jupiter + junit-jupiter-api + 5.8.2 + + + org.apache.hadoop + hadoop-common + ${hadoop.version} + + + + + + hbase + + + instrumentation.target + hbase + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 1.8 + 1.8 + 1.8 + compile + true + true + + **/InterceptHBase.aj + + + + + + + + + src/main/java + + + + + + org.apache.hbase + hbase-client + ${hbase.version} + + + org.junit.jupiter + junit-jupiter-api + 5.8.2 + + + + + + hive + + + instrumentation.target + hive + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 1.8 + 1.8 + 1.8 + compile + true + true + + **/InterceptHive.aj + + + + + + + + + src/main/java + + + + + + org.apache.hive + hive-metastore + ${hive.version} + + + org.apache.hive + hive-service + ${hive.version} + + + org.apache.hive + hive-exec + ${hive.version} + + + org.apache.thrift + libthrift + ${trift.version} + + + + + + cassandra + + + instrumentation.target + cassandra + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 1.8 + 1.8 + 1.8 + compile + true + true + + **/InterceptCassandra.aj + + + + + + + + + src/main/java + + + + + + + elasticsearch + + + instrumentation.target + elasticsearch + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + + + + + dev.aspectj + aspectj-maven-plugin + + + + compile + + + 1.8 + 1.8 + 1.8 + compile + true + true + + **/InterceptElasticSearch.aj + + + + + + + + + src/main/java + + + + + + + \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptCassandra.aj b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptCassandra.aj new file mode 100644 index 00000000..76e2954b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptCassandra.aj @@ -0,0 +1,779 @@ +package edu.uchicago.cs.systems.wasabi; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.IOException; +import java.io.EOFException; +import java.io.FileNotFoundException; +import java.net.BindException; +import java.net.ConnectException; +import java.net.SocketException; +import java.net.SocketTimeoutException; +import java.net.UnknownHostException; +import java.lang.InterruptedException; +import java.sql.SQLException; +import java.sql.SQLTransientException; + +import java.util.concurrent.ConcurrentHashMap; +import java.util.Set; + +import org.apache.cassandra.exceptions.MarshalException; +import org.apache.cassandra.exceptions.InvalidRequestException; +import org.apache.cassandra.exceptions.RequestFailureException; +import org.apache.cassandra.exceptions.RequestTimeoutException; +import org.apache.cassandra.exceptions.UnavailableException; +import org.apache.cassandra.exceptions.SSTableAcquisitionException; + +import edu.uchicago.cs.systems.wasabi.ConfigParser; +import edu.uchicago.cs.systems.wasabi.WasabiLogger; +import edu.uchicago.cs.systems.wasabi.WasabiContext; +import edu.uchicago.cs.systems.wasabi.InjectionPolicy; +import edu.uchicago.cs.systems.wasabi.StackSnapshot; +import edu.uchicago.cs.systems.wasabi.InjectionPoint; +import edu.uchicago.cs.systems.wasabi.ExecutionTrace; + +public aspect InterceptCassandra { + private WasabiContext wasabiCtx = null; + + private static final String UNKNOWN = "UNKNOWN"; + + private static final WasabiLogger LOG = new WasabiLogger(); + private static final String configFile = (System.getProperty("configFile") != null) ? System.getProperty("configFile") : "default.conf"; + private static final ConfigParser configParser = new ConfigParser(LOG, configFile); + + private Set activeInjectionLocations = ConcurrentHashMap.newKeySet(); + private String testMethodName = UNKNOWN; + + pointcut testMethod(): + (@annotation(org.junit.Test) || + @annotation(org.junit.jupiter.api.Test)) && + !within(org.apache.hadoop.*.TestDFSClientFailover.*) && + !within(org.apache.hadoop.hdfs.*.TestOfflineImageViewer.*) && + !within(org.apache.hadoop.example.ITUseHadoopCodec.*); + + + before() : testMethod() { + this.wasabiCtx = new WasabiContext(LOG, configParser); + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-BEFORE]: Test ---%s--- started", thisJoinPoint.toString()) + ); + + if (this.testMethodName != this.UNKNOWN) { + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-BEFORE]: [ALERT]: Test method ---%s--- executes concurrentlly with test method ---%s---", + this.testMethodName, thisJoinPoint.toString()) + ); + } + + this.testMethodName = thisJoinPoint.toString(); + } + + after() returning: testMethod() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-AFTER]: [SUCCESS]: Test ---%s--- done", thisJoinPoint.toString()) + ); + + this.wasabiCtx.printExecTrace(this.LOG, String.format(" Test: %s", this.testMethodName)); + + this.testMethodName = this.UNKNOWN; + this.wasabiCtx = null; + this.activeInjectionLocations.clear(); + } + + after() throwing (Throwable t): testMethod() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + this.wasabiCtx.printExecTrace(this.LOG, String.format(" Test: %s", this.testMethodName)); + + StringBuilder exception = new StringBuilder(); + for (Throwable e = t; e != null; e = e.getCause()) { + exception.append(e); + exception.append(" :-: "); + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-AFTER] [FAILURE] Test ---%s--- | Failure message :-: %s| Stack trace:\n%s\n:-:-:\n\n", + thisJoinPoint.toString(), exception.toString(), stackSnapshot.toString()) + ); + + this.testMethodName = this.UNKNOWN; + this.activeInjectionLocations.clear(); + } + + /* + * Callback before calling Thread.sleep(...) + */ + + pointcut recordThreadSleep(): + (call(* java.lang.Object.wait(..)) || + call(* java.lang.Thread.sleep(..)) || + call(* java.util.concurrent.locks.LockSupport.parkNanos(..)) || + call(* java.util.concurrent.locks.LockSupport.parkUntil(..)) || + call(* java.util.concurrent.ScheduledExecutorService.schedule(..)) || + call(* java.util.concurrent.TimeUnit.*scheduledExecutionTime(..)) || + call(* java.util.concurrent.TimeUnit.*sleep(..)) || + call(* java.util.concurrent.TimeUnit.*timedWait(..)) || + call(* java.util.Timer.schedule*(..)) || + call(* java.util.TimerTask.wait(..)) || + call(* org.apache.hadoop.hbase.*.Procedure.suspend(..))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + before() : recordThreadSleep() { + try { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + for (String retryCallerFunction : this.activeInjectionLocations) { + if (stackSnapshot.hasFrame(retryCallerFunction.split("\\(", 2)[0])) { + String sleepLocation = String.format("%s(%s:%d)", + retryCallerFunction.split("\\(", 2)[0], + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + this.wasabiCtx.addToExecTrace(sleepLocation, OpEntry.THREAD_SLEEP_OP, stackSnapshot); + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[THREAD-SLEEP] Test ---%s--- | Sleep location ---%s--- | Retry location ---%s---\n", + this.testMethodName, + sleepLocation, + retryCallerFunction.split("\\(", 2)[0]) + ); + } + } + } catch (Exception e) { + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_ERROR, + String.format("Exception occurred in recordThreadSleep(): %s", e.getMessage()) + ); + e.printStackTrace(); + } + } + + + /* Inject IOException */ + + pointcut injectIOException(): + ((withincode(* org.apache.cassandra.db.compaction.Scrubber.scrub(..)) && + call(* org.apache.cassandra.db.compaction.Scrubber.*ScrubInfo.getCompactionInfo(..) throws *Exception*)) || + (withincode(* org.apache.cassandra.db.compaction.Scrubber.scrub(..)) && + call(* org.apache.cassandra.utils.ByteBufferUtil.readWithShortLength(..) throws *Exception*)) || + (withincode(* org.apache.cassandra.hadoop.cql3.CqlRecordWriter.*RangeClient.run(..)) && + call(* org.apache.cassandra.hadoop.cql3.CqlRecordWriter.*RangeClient.preparedStatement(..) throws *Exception*)) || + (withincode(* org.apache.cassandra.hadoop.cql3.CqlRecordWriter.*RangeClient.run(..)) && + call(* java.util.concurrent.BlockingQueue.*.take(..) throws *Exception*)) || + (withincode(* org.apache.cassandra.hadoop.cql3.CqlRecordWriter.*RangeClient.run(..)) && + call(* org.apache.cassandra.hadoop.cql3.CqlRecordWriter.*RangeClient.preparedStatement(..) throws *Exception*)) || + (withincode(* org.apache.cassandra.service.StorageService.repairPaxosForTopologyChange(..)) && + call(* org.apache.cassandra.service.StorageService.tryRepairPaxosForTopologyChange(..) throws *Exception*)) || + (withincode(* org.apache.cassandra.utils.binlog.ExternalArchiver.ExternalArchiver(..)) && + call(* org.apache.cassandra.utils.binlog.ExternalArchiver.archiveFile(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws IOException : injectIOException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "IOException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new IOException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject MarshalException */ + + pointcut injectMarshalException(): + ((withincode(* org.apache.cassandra.db.compaction.Scrubber.scrub(..)) && + call(* org.apache.cassandra.db.marshal.AbstractType.*.validate(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws MarshalException : injectMarshalException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "MarshalException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new MarshalException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject AssertionError */ + + pointcut injectAssertionError(): + ((withincode(* org.apache.cassandra.service.StorageService.repairPaxosForTopologyChange(..)) && call(* org.apache.cassandra.service.StorageService.tryRepairPaxosForTopologyChange(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws AssertionError : injectAssertionError() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "AssertionError"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new AssertionError( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject InvalidRequestException */ + + pointcut injectInvalidRequestException(): + ((withincode(* org.apache.cassandra.service.paxos.Paxos.cas(..)) && call(* org.apache.cassandra.service.CASRequest.makeUpdates(..) throws *Exception*)) || + (withincode(* org.apache.cassandra.service.paxos.Paxos.cas(..)) && call(* org.apache.cassandra.service.CASRequest.appliesTo(..) throws *Exception*)) || + (withincode(* org.apache.cassandra.service.paxos.Paxos.cas(..)) && call(* org.apache.cassandra.triggers.TriggerExecutor.execute(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws InvalidRequestException : injectInvalidRequestException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "InvalidRequestException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new InvalidRequestException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject RequestFailureException */ + + pointcut injectRequestFailureException(): + ((withincode(* org.apache.cassandra.service.paxos.Paxos.cas(..)) && call(* org.apache.cassandra.service.paxos.Paxos.*MaybeFailure.markAndThrowAsTimeoutOrFailure(..) throws *Exception*)) || + (withincode(* org.apache.cassandra.service.paxos.Paxos.begin(..)) && call(* org.apache.cassandra.service.paxos.Paxos.*MaybeFailure.markAndThrowAsTimeoutOrFailure(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws RequestFailureException : injectRequestFailureException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "RequestFailureException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new RequestFailureException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject RequestTimeoutException */ + + pointcut injectRequestTimeoutException(): + ((withincode(* org.apache.cassandra.service.paxos.Paxos.cas(..)) && call(* org.apache.cassandra.service.paxos.Paxos.*MaybeFailure.markAndThrowAsTimeoutOrFailure(..) throws *Exception*)) || + (withincode(* org.apache.cassandra.service.paxos.Paxos.begin(..)) && call(* org.apache.cassandra.service.paxos.Paxos.*MaybeFailure.markAndThrowAsTimeoutOrFailure(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws RequestTimeoutException : injectRequestTimeoutException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "RequestTimeoutException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new RequestTimeoutException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject UnavailableException */ + + pointcut injectUnavailableException(): + ((withincode(* org.apache.cassandra.service.paxos.Paxos.begin(..)) && call(* org.apache.cassandra.service.paxos.Paxos.*Participants.assureSufficientLiveNodes(..) throws *Exception*)) || + (withincode(* org.apache.cassandra.service.paxos.Paxos.begin(..)) && call(* org.apache.cassandra.service.paxos.PaxosPrepare.prepare(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws UnavailableException : injectUnavailableException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "UnavailableException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new UnavailableException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject IllegalArgumentException */ + + pointcut injectIllegalArgumentException(): + ((withincode(* org.apache.cassandra.service.paxos.Paxos.begin(..)) && + call(* org.apache.cassandra.service.reads.ResponseResolver.preprocess(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws IllegalArgumentException : injectIllegalArgumentException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "IllegalArgumentException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new IllegalArgumentException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject IllegalStateException */ + + pointcut injectIllegalStateException(): + ((withincode(* org.apache.cassandra.service.paxos.Paxos.begin(..)) && + call(* org.apache.cassandra.service.reads.ResponseResolver.preprocess(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws IllegalStateException : injectIllegalStateException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "IllegalStateException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new IllegalStateException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject SSTableAcquisitionException */ + + pointcut injectSSTableAcquisitionException(): + ((withincode(* PendingAntiCompaction.AcquisitionCallable.call(..)) && + call(* PendingAntiCompaction.AcquisitionCallable.acquireSSTables(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws SSTableAcquisitionException : injectSSTableAcquisitionException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "SSTableAcquisitionException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new SSTableAcquisitionException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + +} \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptElasticSearch.aj b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptElasticSearch.aj new file mode 100644 index 00000000..fb0d7b4f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptElasticSearch.aj @@ -0,0 +1,372 @@ +package edu.uchicago.cs.systems.wasabi; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.IOException; +import java.net.SocketException; + +import java.util.concurrent.ConcurrentHashMap; +import java.util.Set; + +import edu.uchicago.cs.systems.wasabi.ConfigParser; +import edu.uchicago.cs.systems.wasabi.WasabiLogger; +import edu.uchicago.cs.systems.wasabi.WasabiContext; +import edu.uchicago.cs.systems.wasabi.InjectionPolicy; +import edu.uchicago.cs.systems.wasabi.StackSnapshot; +import edu.uchicago.cs.systems.wasabi.InjectionPoint; +import edu.uchicago.cs.systems.wasabi.ExecutionTrace; + +public aspect InterceptElasticSearch { + private WasabiContext wasabiCtx = null; + + private static final String UNKNOWN = "UNKNOWN"; + + private static final WasabiLogger LOG = new WasabiLogger(); + private static final String configFile = (System.getProperty("configFile") != null) ? System.getProperty("configFile") : "default.conf"; + private static final ConfigParser configParser = new ConfigParser(LOG, configFile); + + private Set activeInjectionLocations = ConcurrentHashMap.newKeySet(); + private String testMethodName = UNKNOWN; + + pointcut testMethod(): + (@annotation(org.junit.Test) || + @annotation(org.junit.jupiter.api.Test)) && + !within(org.apache.hadoop.*.TestDFSClientFailover.*) && + !within(org.apache.hadoop.hdfs.*.TestOfflineImageViewer.*) && + !within(org.apache.hadoop.example.ITUseHadoopCodec.*); + + + before() : testMethod() { + this.wasabiCtx = new WasabiContext(LOG, configParser); + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-BEFORE]: Test ---%s--- started", thisJoinPoint.toString()) + ); + + if (this.testMethodName != this.UNKNOWN) { + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-BEFORE]: [ALERT]: Test method ---%s--- executes concurrentlly with test method ---%s---", + this.testMethodName, thisJoinPoint.toString()) + ); + } + + this.testMethodName = thisJoinPoint.toString(); + } + + after() returning: testMethod() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-AFTER]: [SUCCESS]: Test ---%s--- done", thisJoinPoint.toString()) + ); + + this.wasabiCtx.printExecTrace(this.LOG, String.format(" Test: %s", this.testMethodName)); + + this.testMethodName = this.UNKNOWN; + this.wasabiCtx = null; + this.activeInjectionLocations.clear(); + } + + after() throwing (Throwable t): testMethod() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + this.wasabiCtx.printExecTrace(this.LOG, String.format(" Test: %s", this.testMethodName)); + + StringBuilder exception = new StringBuilder(); + for (Throwable e = t; e != null; e = e.getCause()) { + exception.append(e); + exception.append(" :-: "); + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-AFTER] [FAILURE] Test ---%s--- | Failure message :-: %s| Stack trace:\n%s\n:-:-:\n\n", + thisJoinPoint.toString(), exception.toString(), stackSnapshot.toString()) + ); + + this.testMethodName = this.UNKNOWN; + this.activeInjectionLocations.clear(); + } + + /* + * Callback before calling Thread.sleep(...) + */ + + pointcut recordThreadSleep(): + (call(* java.lang.Object.wait(..)) || + call(* java.lang.Thread.sleep(..)) || + call(* java.util.concurrent.locks.LockSupport.parkNanos(..)) || + call(* java.util.concurrent.locks.LockSupport.parkUntil(..)) || + call(* java.util.concurrent.ScheduledExecutorService.schedule(..)) || + call(* java.util.concurrent.TimeUnit.*scheduledExecutionTime(..)) || + call(* java.util.concurrent.TimeUnit.*sleep(..)) || + call(* java.util.concurrent.TimeUnit.*timedWait(..)) || + call(* java.util.Timer.schedule*(..)) || + call(* java.util.TimerTask.wait(..)) || + call(* org.apache.hadoop.hbase.*.Procedure.suspend(..))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + before() : recordThreadSleep() { + try { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + for (String retryCallerFunction : this.activeInjectionLocations) { + if (stackSnapshot.hasFrame(retryCallerFunction.split("\\(", 2)[0])) { + String sleepLocation = String.format("%s(%s:%d)", + retryCallerFunction.split("\\(", 2)[0], + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + this.wasabiCtx.addToExecTrace(sleepLocation, OpEntry.THREAD_SLEEP_OP, stackSnapshot); + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[THREAD-SLEEP] Test ---%s--- | Sleep location ---%s--- | Retry location ---%s---\n", + this.testMethodName, + sleepLocation, + retryCallerFunction.split("\\(", 2)[0]) + ); + } + } + } catch (Exception e) { + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_ERROR, + String.format("Exception occurred in recordThreadSleep(): %s", e.getMessage()) + ); + e.printStackTrace(); + } + } + + + /* Inject IOException */ + + pointcut injectIOException(): + ((withincode(* org.elasticsearch.indices.IndicesService.processPendingDeletes(..)) && call(* org.elasticsearch.env.NodeEnvironment.deleteIndexDirectoryUnderLock(..) throws *Exception*)) || + (withincode(* org.elasticsearch.indices.IndicesService.processPendingDeletes(..)) && call(* org.elasticsearch.indices.IndicesService.deleteShardStore(..) throws *Exception*)) || + (withincode(* org.elasticsearch.xpack.watcher.notification.email.attachment.ReportingAttachmentParser.toAttachment(..)) && call(* org.elasticsearch.xpack.watcher.common.http.HttpClient.execute(..) throws *Exception*)) || + (withincode(* org.elasticsearch.index.IndexService.onShardClose(..)) && call(* beforeIndexShardDeleted(..) throws *Exception*)) || + (withincode(* org.elasticsearch.gateway.PersistedClusterStateService.completeCommit(..)) && call(* org.elasticsearch.gateway.PersistedClusterStateService.commit(..) throws *Exception*)) || + (withincode(* org.elasticsearch.indices.IndicesService.processPendingDeletes(..)) && call(* org.elasticsearch.env.NodeEnvironment.deleteIndexDirectoryUnderLock(..) throws *Exception*)) || + (withincode(* org.elasticsearch.indices.IndicesService.processPendingDeletes(..)) && call(* org.elasticsearch.indices.IndicesService.deleteShardStore(..) throws *Exception*)) || + (withincode(* org.elasticsearch.common.blobstore.fs.FsBlobContainer.moveBlobAtomic(..)) && call(* java.nio.file.Files.move(..) throws *Exception*)) || + (withincode(* org.elasticsearch.common.file.AbstractFileWatchingService.enableDirectoryWatcher(..)) && call(* org.elasticsearch.monitor.fs.FsInfo.Path.register(..) throws *Exception*)) || + (withincode(* org.elasticsearch.repositories.gcs.GoogleCloudStorageBlobStore.writeBlobResumable(..)) && call(* org.elasticsearch.core.internal.io.Streams.copy(..) throws *Exception*)) || + (withincode(* org.elasticsearch.repositories.gcs.GoogleCloudStorageBlobStore.writeBlobResumable(..)) && call(* org.elasticsearch.repositories.gcs.SocketAccess.doPrivilegedIOException(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.action.update.UpdateRequest.fromXContent(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.booleanValue(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.longValue(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.intValue(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.text(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.currentName(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.nextToken(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.search.fetch.subphase.FetchSourceContext.fromXContent(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.action.bulk.BulkRequestParser.createParser(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.booleanValue(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.longValue(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.intValue(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.text(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.currentName(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.nextToken(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.search.fetch.subphase.FetchSourceContext.fromXContent(..) throws *Exception*)) || + (withincode(* org.elasticsearch.index.reindex.BulkByScrollTask.*Status.innerFromXContent(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.floatValue(..) throws *Exception*)) || + (withincode(* org.elasticsearch.index.reindex.BulkByScrollTask.*Status.innerFromXContent(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.longValue(..) throws *Exception*)) || + (withincode(* org.elasticsearch.index.reindex.BulkByScrollTask.*Status.innerFromXContent(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.intValue(..) throws *Exception*)) || + (withincode(* org.elasticsearch.index.reindex.BulkByScrollTask.*Status.innerFromXContent(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.text(..) throws *Exception*)) || + (withincode(* org.elasticsearch.index.reindex.BulkByScrollTask.*Status.innerFromXContent(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.currentName(..) throws *Exception*)) || + (withincode(* org.elasticsearch.index.reindex.BulkByScrollTask.*Status.innerFromXContent(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.skipChildren(..) throws *Exception*)) || + (withincode(* org.elasticsearch.index.reindex.BulkByScrollTask.*Status.innerFromXContent(..)) && call(* org.elasticsearch.common.xcontent.XContentParser.nextToken(..) throws *Exception*)) || + (withincode(* org.elasticsearch.index.reindex.BulkByScrollTask.*Status.innerFromXContent(..)) && call(* org.elasticsearch.index.reindex.BulkByScrollTask.*StatusOrException.fromXContent(..) throws *Exception*)) || + (withincode(* org.elasticsearch.index.reindex.BulkByScrollTask.*Status.innerFromXContent(..)) && call(* org.elasticsearch.common.xcontent.ConstructingObjectParser.*.parse(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws IOException : injectIOException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "IOException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new IOException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject SocketException */ + + pointcut injectSocketException(): + ((withincode(* org.elasticsearch.cluster.coordination.ClusterBootstrapService.doBootstrap(..)) && call(* java.util.function.Consumer.accept(..) throws *Exception*)) || + (withincode(* org.elasticsearch.xpack.core.security.CommandLineHttpClient.checkClusterHealthWithRetriesWaitingForCluster(..)) && call(* org.elasticsearch.xpack.core.security.CommandLineHttpClient.execute(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws Exception : injectSocketException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "SocketExceptionException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new SocketException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject IllegalArgumentException */ + + pointcut injectIllegalArgumentException(): + ((withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.action.delete.DeleteRequest.setIfPrimaryTerm(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.action.delete.DeleteRequest.setIfSeqNo(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.action.index.IndexRequest.setIfPrimaryTerm(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.action.index.IndexRequest.setIfSeqNo(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.action.update.UpdateRequest.setIfPrimaryTerm(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.action.update.UpdateRequest.setIfSeqNo(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.index.VersionType.fromString(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.action.bulk.BulkRequestParser.findNextMarker(..) throws *Exception*)) || + (withincode(* org.elasticsearch.action.bulk.BulkRequestParser.parse(..)) && call(* org.elasticsearch.index.VersionType.fromString(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws IllegalArgumentException : injectIllegalArgumentException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "IllegalArgumentException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new IllegalArgumentException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + +} \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj new file mode 100644 index 00000000..5cea0771 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj @@ -0,0 +1,1077 @@ +package edu.uchicago.cs.systems.wasabi; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.IOException; +import java.io.EOFException; +import java.io.FileNotFoundException; +import java.net.BindException; +import java.net.ConnectException; +import java.net.SocketException; +import java.net.SocketTimeoutException; +import java.net.UnknownHostException; +import java.lang.InterruptedException; +import java.sql.SQLException; +import java.sql.SQLTransientException; + +import java.util.concurrent.ConcurrentHashMap; +import java.util.Set; + +import org.apache.zookeeper.KeeperException; +import org.apache.hadoop.hbase.replication.ReplicationException; + +import edu.uchicago.cs.systems.wasabi.ConfigParser; +import edu.uchicago.cs.systems.wasabi.WasabiLogger; +import edu.uchicago.cs.systems.wasabi.WasabiContext; +import edu.uchicago.cs.systems.wasabi.InjectionPolicy; +import edu.uchicago.cs.systems.wasabi.StackSnapshot; +import edu.uchicago.cs.systems.wasabi.InjectionPoint; +import edu.uchicago.cs.systems.wasabi.ExecutionTrace; + +public aspect InterceptHBase { + private WasabiContext wasabiCtx = null; + + private static final String UNKNOWN = "UNKNOWN"; + + private static final WasabiLogger LOG = new WasabiLogger(); + private static final String configFile = (System.getProperty("configFile") != null) ? System.getProperty("configFile") : "default.conf"; + private static final ConfigParser configParser = new ConfigParser(LOG, configFile); + + private Set activeInjectionLocations = ConcurrentHashMap.newKeySet(); + private String testMethodName = UNKNOWN; + + pointcut testMethod(): + (@annotation(org.junit.Test) || + // @annotation(org.junit.Before) || + // @annotation(org.junit.After) || + // @annotation(org.junit.BeforeClass) || + // @annotation(org.junit.AfterClass) || + // @annotation(org.junit.jupiter.api.BeforeEach) || + // @annotation(org.junit.jupiter.api.AfterEach) || + // @annotation(org.junit.jupiter.api.BeforeAll) || + // @annotation(org.junit.jupiter.api.AfterAll) || + @annotation(org.junit.jupiter.api.Test)) && + !within(org.apache.hadoop.*.TestDFSClientFailover.*) && + !within(org.apache.hadoop.hdfs.*.TestOfflineImageViewer.*) && + !within(org.apache.hadoop.example.ITUseHadoopCodec.*); + + + before() : testMethod() { + this.wasabiCtx = new WasabiContext(LOG, configParser); + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-BEFORE]: Test ---%s--- started", thisJoinPoint.toString()) + ); + + if (this.testMethodName != this.UNKNOWN) { + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-BEFORE]: [ALERT]: Test method ---%s--- executes concurrentlly with test method ---%s---", + this.testMethodName, thisJoinPoint.toString()) + ); + } + + this.testMethodName = thisJoinPoint.toString(); + } + + after() returning: testMethod() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-AFTER]: [SUCCESS]: Test ---%s--- done", thisJoinPoint.toString()) + ); + + this.wasabiCtx.printExecTrace(this.LOG, String.format(" Test: %s", this.testMethodName)); + + this.testMethodName = this.UNKNOWN; + this.wasabiCtx = null; + this.activeInjectionLocations.clear(); + } + + after() throwing (Throwable t): testMethod() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + this.wasabiCtx.printExecTrace(this.LOG, String.format(" Test: %s", this.testMethodName)); + + StringBuilder exception = new StringBuilder(); + for (Throwable e = t; e != null; e = e.getCause()) { + exception.append(e); + exception.append(" :-: "); + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-AFTER] [FAILURE] Test ---%s--- | Failure message :-: %s| Stack trace:\n%s\n:-:-:\n\n", + thisJoinPoint.toString(), exception.toString(), stackSnapshot.toString()) + ); + + this.testMethodName = this.UNKNOWN; + this.activeInjectionLocations.clear(); + } + + /* + * Callback before calling Thread.sleep(...) + */ + + pointcut recordThreadSleep(): + (call(* java.lang.Object.wait(..)) || + call(* java.lang.Thread.sleep(..)) || + call(* java.util.concurrent.locks.LockSupport.parkNanos(..)) || + call(* java.util.concurrent.locks.LockSupport.parkUntil(..)) || + call(* java.util.concurrent.ScheduledExecutorService.schedule(..)) || + call(* java.util.concurrent.TimeUnit.*scheduledExecutionTime(..)) || + call(* java.util.concurrent.TimeUnit.*sleep(..)) || + call(* java.util.concurrent.TimeUnit.*timedWait(..)) || + call(* java.util.Timer.schedule*(..)) || + call(* java.util.TimerTask.wait(..)) || + call(* org.apache.hadoop.hbase.*.Procedure.suspend(..))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + before() : recordThreadSleep() { + try { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + for (String retryCallerFunction : this.activeInjectionLocations) { + if (stackSnapshot.hasFrame(retryCallerFunction.split("\\(", 2)[0])) { + String sleepLocation = String.format("%s(%s:%d)", + retryCallerFunction.split("\\(", 2)[0], + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + this.wasabiCtx.addToExecTrace(sleepLocation, OpEntry.THREAD_SLEEP_OP, stackSnapshot); + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[THREAD-SLEEP] Test ---%s--- | Sleep location ---%s--- | Retry location ---%s---\n", + this.testMethodName, + sleepLocation, + retryCallerFunction.split("\\(", 2)[0]) + ); + } + } + } catch (Exception e) { + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_ERROR, + String.format("Exception occurred in recordThreadSleep(): %s", e.getMessage()) + ); + e.printStackTrace(); + } + } + + + /* Inject IOException */ + + pointcut injectIOException(): + ((withincode(* org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive(..)) && + call(* org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archiveLogFile(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.wal.AbstractWALRoller.run(..)) && + call(* org.apache.hadoop.hbase.wal.AbstractWALRoller.*RollController.rollWal(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.wal.AbstractWALRoller.run(..)) && + call(* org.apache.hadoop.hbase.wal.AbstractWALRoller.*RollController.rollWal(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.wal.AbstractWALRoller.run(..)) && + call(* org.apache.hadoop.hbase.wal.AbstractWALRoller.*RollController.rollWal(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupIOstreams(..)) && + call(* org.apache.hadoop.net.NetUtils.getInputStream(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupIOstreams(..)) && + call(* org.apache.hadoop.net.NetUtils.getOutputStream(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupIOstreams(..)) && + call(* org.apache.hadoop.security.UserGroupInformation.doAs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupIOstreams(..)) && + call(* org.apache.hadoop.hbase.security.HBaseSaslRpcClient.getInputStream(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupIOstreams(..)) && + call(* org.apache.hadoop.hbase.security.HBaseSaslRpcClient.getOutputStream(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.BootstrapNodeManager.getFromMaster(..)) && + call(* org.apache.hadoop.hbase.util.FutureUtils.get(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad(..)) && + call(* org.apache.hadoop.hbase.util.FutureUtils.get(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad(..)) && + call(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.groupOrSplitPhase(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad(..)) && + call(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.bulkLoadPhase(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance(..)) && + call(* org.apache.hadoop.hbase.regionserver.wal.AsyncFSWAL.createAsyncWriter(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.createOutput(..)) && + call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile(..)) && + call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.complete(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.snapshot.FlushSnapshotSubprocedure.*RegionSnapshotTask.call(..)) && + call(* org.apache.hadoop.hbase.regionserver.HRegion.flush(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor(..)) && + call(* org.apache.hadoop.fs.FileSystem.create(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor(..)) && + call(* java.io.FilterOutputStream.write(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor(..)) && + call(* org.apache.hadoop.hbase.util.FSTableDescriptors.deleteTableDescriptorFiles(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.FSUtils.setVersion(..)) && + call(* org.apache.hadoop.fs.FileSystem.create(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.FSUtils.setVersion(..)) && + call(* java.io.FilterOutputStream.write(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.FSUtils.setVersion(..)) && + call(* org.apache.hadoop.fs.FSDataOutputStream.close(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.FSUtils.setVersion(..)) && + call(* org.apache.hadoop.fs.FileSystem.rename(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists(..)) && + call(* org.apache.hadoop.fs.FileSystem.exists(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.FSUtils.setClusterId(..)) && + call(* org.apache.hadoop.fs.FileSystem.create(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.FSUtils.setClusterId(..)) && + call(* java.io.FilterOutputStream.write(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.FSUtils.setClusterId(..)) && + call(* org.apache.hadoop.fs.FileSystem.rename(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.HBaseFsck.*FileLockCallable.createFileWithRetries(..)) && + call(* org.apache.hadoop.hbase.util.CommonFSUtils.create(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck(..)) && + call(* org.apache.hadoop.hbase.util.CommonFSUtils.delete(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck(..)) && + call(* org.apache.hadoop.hbase.util.CommonFSUtils.getCurrentFileSystem(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint.replicate(..)) && + call(* org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint.parallelReplicate(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile(..)) && + call(* org.apache.hadoop.fs.FileSystem.exists(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile(..)) && + call(* org.apache.hadoop.hbase.backup.HFileArchiver.*File.moveAndClose(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.replication.regionserver.HFileReplicator.doBulkLoad(..)) && + call(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.loadHFileQueue(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.createDir(..)) && + call(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.mkdirs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.rename(..)) && + call(* org.apache.hadoop.fs.FileSystem.rename(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.deleteDir(..)) && + call(* org.apache.hadoop.fs.FileSystem.delete(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.createDirOnFileSystem(..)) && + call(* org.apache.hadoop.fs.FileSystem.mkdirs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub(..)) && + call(* org.apache.hadoop.hbase.security.UserProvider.getCurrent(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.HStore.flushCache(..)) && + call(* org.apache.hadoop.hbase.regionserver.StoreFlusher.flushSnapshot(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.MoveWithAck.call(..)) && + call(* org.apache.hadoop.hbase.client.Admin.move(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.MoveWithAck.call(..)) && + call(* org.apache.hadoop.hbase.util.MoveWithAck.isSameServer(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.chaos.ChaosAgent.execWithRetries(..)) && + call(* org.apache.hadoop.hbase.chaos.ChaosAgent.exec(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease(..)) && + call(* org.apache.hadoop.hbase.procedure2.store.wal.ProcedureWALFile.removeFile(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos.*ExceptionResponse.*Builder.mergeFrom(..)) && + call(* org.apache.hbase.thirdparty.com.google.protobuf.GeneratedMessageV3.*Builder.*.parseUnknownField(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile(..)) && + call(* org.apache.hadoop.fs.FileSystem.mkdirs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders(..)) && + call(* org.apache.hadoop.fs.FileSystem.exists(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders(..)) && + call(* org.apache.hadoop.hbase.util.CommonFSUtils.listStatus(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run(..)) && + call(* org.apache.hadoop.hbase.shaded.protobuf.generated.RegionServerStatusProtos.*ReportProcedureDoneRequest.*Builder.addResult(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSourceShipper.getStartPosition(..)) && + call(* org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSource.locateRecoveredPaths(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.uncaughtException(..)) && + call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.refreshSources(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run(..)) && + call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.readWALEntries(..) throws *IOException*)) || + (withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run(..)) && + call(* org.apache.hadoop.hbase.replication.regionserver.WALEntryStream.reset(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run(..)) && + call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.tryAdvanceStreamAndCreateWALBatch(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck(..)) && + call(* org.apache.hbase.thirdparty.com.google.common.io.Closeables.close(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.HBaseFsckRepair.waitUntilAssigned(..)) && + call(* org.apache.hadoop.hbase.client.Admin.getClusterMetrics(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.wal.AbstractFSWALProvider.openReader(..)) && + call(* org.apache.hadoop.fs.Path.getFileSystem(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.wal.AbstractFSWALProvider.openReader(..)) && + call(* org.apache.hadoop.hbase.wal.WALFactory.createStreamReader(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.wal.WALFactory.createStreamReader(..)) && + call(* org.apache.hadoop.hbase.wal.AbstractFSWALProvider.*Reader.init(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure.executeFromState(..)) && + call(* org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure.switchThrottleState(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.util.HBaseFsckRepair.waitUntilAssigned(..)) && + call(* org.apache.hadoop.hbase.client.Admin.getClusterMetrics(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher.run(..)) && + call(* org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher.sendRequest(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.handler.RegionReplicaFlushHandler.triggerFlushInPrimaryRegion(..)) && + call(* org.apache.hadoop.hbase.util.FutureUtils.get(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run(..)) && + call(* org.apache.hadoop.hbase.regionserver.HRegionServer.reportProcedureDone(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize(..)) && + call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.createReplicationEndpoint(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize(..)) && + call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initAndStartReplicationEndpoint(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.cleanOldLogs(..)) && + call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.removeRemoteWALs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper.shipEdits(..)) && + call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper.cleanUpHFileRefs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos.*ExceptionResponse.*Builder.mergeFrom(..)) && + call(* org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readTag(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos.*ExceptionResponse.*Builder.mergeFrom(..)) && + call(* org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBytes(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos.*ExceptionResponse.*Builder.mergeFrom(..)) && + call(* org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBytes(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos.*ExceptionResponse.*Builder.mergeFrom(..)) && + call(* org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBytes(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos.*ExceptionResponse.*Builder.mergeFrom(..)) && + call(* org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readInt32(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos.*ExceptionResponse.*Builder.mergeFrom(..)) && + call(* org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBool(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos.*ExceptionResponse.*Builder.mergeFrom(..)) && + call(* org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBool(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.rsgroup.RSGroupInfoManagerImpl.moveRegionsBetweenGroups(..)) && + call(* org.apache.hadoop.hbase.master.LoadBalancer.randomAssignment(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState(..)) && + call(* org.apache.hadoop.hbase.master.MasterServices.getProcedures(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall(..)) && + call(* org.apache.hadoop.hbase.regionserver.HRegion.flush(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.procedure.SplitWALProcedure.executeFromState(..)) && + call(* org.apache.hadoop.hbase.master.SplitWALManager.isSplitWALFinished(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState(..)) && + call(* org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.isReplayWALFinished(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALRemoteProcedure.truncateWALs(..)) && + call(* org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.finishReplayWAL(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor.doPut(..)) && + call(* org.apache.hadoop.hbase.client.Connection.getTable(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor.doPut(..)) && + call(* org.apache.hadoop.hbase.client.Table.put(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease(..)) && + call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.getLogFiles(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease(..)) && + call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.initOldLogs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease(..)) && + call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriter(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.syncSlots(..)) && + call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.syncSlots(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriterWithRetries(..)) && + call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriter(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.backup.impl.FullTableBackupClient.snapshotTable(..)) && + call(* snapshot(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess(..)) && + call(* org.apache.hadoop.hbase.zookeeper.ZKUtil.setData(..) throws *IOException*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.createDirForRemoteWAL(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders(..)) && + call(* listStatus(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.createDirForRemoteWAL(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState(..)) && + call(* openRegion(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState(..)) && + call(* confirmOpened(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState(..)) && + call(* closeRegion(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState(..)) && + call(* confirmClosed(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && + call(* prePeerModification(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && + call(* reopenRegions(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && + call(* updateLastPushedSequenceIdForSerialPeer(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && + call(* postPeerModification(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure.executeFromState(..)) && + call(* renameToPeerReplayWALDir(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure.executeFromState(..)) && + call(* renameToPeerSnapshotWALDir(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.mob.MobFileCleanerChore.cleanupObsoleteMobFiles(..)) && + call(* initReader(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.mob.MobFileCleanerChore.cleanupObsoleteMobFiles(..)) && + call(* closeStoreFile(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws IOException : injectIOException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "IOException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new IOException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject SocketException */ + + pointcut injectSocketException(): + ((withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection(..)) && + call(* javax.net.SocketFactory.createSocket(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection(..)) && + call(* java.net.Socket.setTcpNoDelay(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection(..)) && + call(* java.net.Socket.setKeepAlive(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection(..)) && + call(* org.apache.hadoop.net.NetUtils.connect(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection(..)) && + call(* java.net.Socket.setSoTimeout(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupIOstreams(..)) && + call(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupIOstreams(..)) && + call(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.writeConnectionHeaderPreamble(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupIOstreams(..)) && + call(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.writeConnectionHeader(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupIOstreams(..)) && + call(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.processResponseForConnectionHeader(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection(..)) && + call(* java.net.Socket.bind(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws SocketException : injectSocketException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "SocketException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new SocketException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject UnknownHostException */ + + pointcut injectUnknownHostException(): + ((withincode(* org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection(..)) && + call(* org.apache.hadoop.hbase.ipc.RpcConnection.getRemoteInetAddress(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws UnknownHostException : injectUnknownHostException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "UnknownHostException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new UnknownHostException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject FileNotFoundException */ + + pointcut injectFileNotFoundException(): + ((withincode(* org.apache.hadoop.hbase.io.FileLink.read(..)) && + call(* org.apache.hadoop.fs.FSDataInputStream.read(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.io.FileLink.readFully(..)) && + call(* readFully(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws FileNotFoundException : injectFileNotFoundException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "FileNotFoundException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new FileNotFoundException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject InterruptedException */ + + pointcut injectInterruptedException(): + ((withincode(* org.apache.hadoop.hbase.master.procedure.SnapshotVerifyProcedure.execute(..)) && + call(* org.apache.hadoop.hbase.master.procedure.ServerRemoteProcedure.execute(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws InterruptedException : injectInterruptedException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "InterruptedException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new InterruptedException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject KeeperException.OperationTimeoutException */ + + pointcut injectKeeperExceptionOperationTimeoutException(): + ((withincode(* org.apache.hadoop.hbase.util.HBaseFsck.setMasterInMaintenanceMode(..)) && + call(* org..*.createEphemeralNodeAndWatch(..))) || + (withincode(* org.apache.hadoop.hbase.MetaRegionLocationCache.updateMetaLocation(..)) && + call(* org..*.watchAndCheckExists(..))) || + (withincode(* org.apache.hadoop.hbase.MetaRegionLocationCache.updateMetaLocation(..)) && + call(* org..*.getMetaRegionLocation(..))) || + (withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.delete(..)) && + call(* org..*.checkZk(..))) || + (withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.exists(..)) && + call(* org..*.checkZk(..))) || + (withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getChildren(..)) && + call(* org..*.checkZk(..))) || + (withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getData(..)) && + call(* org..*.checkZk(..))) || + (withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.setData(..)) && + call(* org..*.checkZk(..))) || + (withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.createNonSequential(..)) && + call(* org..*.checkZk(..))) || + (withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.createSequential(..)) && + call(* org..*.checkZk(..))) || + (withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getAcl(..)) && + call(* org..*.checkZk(..))) || + (withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.setAcl(..)) && + call(* org..*.checkZk(..)))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws KeeperException : injectKeeperExceptionOperationTimeoutException() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "KeeperException.OperationTimeoutException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + LOG.printMessage( + WasabiLogger.LOG_LEVEL_ERROR, + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + throw new KeeperException.OperationTimeoutException(); + } + } + + /* Inject KeeperException.SessionExpiredException */ + + pointcut injectKeeperExceptionSessionExpiredException(): + ((withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.multi(..)) && + call(* org..*.checkZk(..))) || + (withincode(* org.apache.hadoop.hbase.zookeeper.ZKNodeTracker.blockUntilAvailable(..)) && + call(* org..*.getDataAndWatch(..))) || + (withincode(* org.apache.hadoop.hbase.zookeeper.ZKNodeTracker.blockUntilAvailable(..)) && + call(* org..*.ZKUtil.checkExists(..))) || + (withincode(* org.apache.hadoop.hbase.zookeeper.ZKUtil.waitForBaseZNode(..)) && + call(* org..*.exists(..))) || + (withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.deleteDataForClientZkUntilSuccess(..)) && + call(* org..*.deleteNode(..))) || + (withincode(* org.apache.hadoop.hbase.MetaRegionLocationCache.loadMetaLocationsFromZk(..)) && + call(* org..*.getMetaReplicaNodesAndWatchChildren(..))) || + (withincode(* ZkSplitLogWorkerCoordination.getTaskList(..)) && + call(* org..*listChildrenAndWatchForNewChildren(..))) || + (withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.deleteDataForClientZkUntilSuccess(..)) && + call(* org..*.deleteNode(..))) || + (withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.reconnectAfterExpiration(..)) && + call(* org..*.reconnectAfterExpiration(..))) || + (withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess(..)) && + call(* org..*.createNodeIfNotExistsNoWatch(..)))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws KeeperException : injectKeeperExceptionSessionExpiredException() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "KeeperException.SessionExpiredException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + LOG.printMessage( + WasabiLogger.LOG_LEVEL_ERROR, + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + throw new KeeperException.SessionExpiredException(); + } + } + + /* Inject KeeperException.NoNodeException */ + + pointcut injectKeeperExceptionNoNodeException(): + withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess(..)) && + call(* org..*ZKUtil.setData(..) throws *KeeperException*) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws KeeperException : injectKeeperExceptionNoNodeException() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "KeeperException.NoNodeException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + LOG.printMessage( + WasabiLogger.LOG_LEVEL_ERROR, + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + throw new KeeperException.NoNodeException(); + } + } + + /* Inject BindException */ + + pointcut injectBindException(): + ((withincode(* org.apache.hadoop.hbase.HBaseServerBase.putUpWebUI(..)) && + call(* org.apache.hadoop.hbase.http.InfoServer.start(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.replication.ZKReplicationQueueStorage.setWALPosition(..)) && + call(* org.apache.hadoop.hbase.zookeeper.ZKUtil.multiOrSequential(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws BindException : injectBindException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "BindException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new BindException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject ReplicationException */ + + pointcut injectReplicationException(): + ((withincode(* org.apache.hadoop.hbase.master.replication.ClaimReplicationQueuesProcedure.execute(..)) && + call(* removeQueue(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.postTransit(..) throws *ReplicationException*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.setPeerNewSyncReplicationState(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.removeAllReplicationQueues (..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.setLastPushedSequenceId(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.transitPeerSyncReplicationState(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.enablePear(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && + call(* updatePeerStorage(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && + call(* enablePeer(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws ReplicationException : injectReplicationException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "ReplicationException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new ReplicationException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + +} \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj new file mode 100644 index 00000000..492940b2 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj @@ -0,0 +1,988 @@ +package edu.uchicago.cs.systems.wasabi; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.IOException; +import java.io.EOFException; +import java.io.FileNotFoundException; +import java.net.BindException; +import java.net.ConnectException; +import java.net.SocketException; +import java.net.SocketTimeoutException; +import java.net.UnknownHostException; +import java.lang.InterruptedException; +import java.sql.SQLException; +import java.sql.SQLTransientException; + +import org.apache.hadoop.ipc.RetriableException; + +import java.util.concurrent.ConcurrentHashMap; +import java.util.Set; + +import edu.uchicago.cs.systems.wasabi.ConfigParser; +import edu.uchicago.cs.systems.wasabi.WasabiLogger; +import edu.uchicago.cs.systems.wasabi.WasabiContext; +import edu.uchicago.cs.systems.wasabi.InjectionPolicy; +import edu.uchicago.cs.systems.wasabi.StackSnapshot; +import edu.uchicago.cs.systems.wasabi.InjectionPoint; +import edu.uchicago.cs.systems.wasabi.ExecutionTrace; + +public aspect InterceptHadoop { + private WasabiContext wasabiCtx = null; + + private static final String UNKNOWN = "UNKNOWN"; + + private static final WasabiLogger LOG = new WasabiLogger(); + private static final String configFile = (System.getProperty("configFile") != null) ? System.getProperty("configFile") : "default.conf"; + private static final ConfigParser configParser = new ConfigParser(LOG, configFile); + + private Set activeInjectionLocations = ConcurrentHashMap.newKeySet(); + private String testMethodName = UNKNOWN; + + pointcut testMethod(): + (@annotation(org.junit.Test) || + // @annotation(org.junit.Before) || + // @annotation(org.junit.After) || + // @annotation(org.junit.BeforeClass) || + // @annotation(org.junit.AfterClass) || + // @annotation(org.junit.jupiter.api.BeforeEach) || + // @annotation(org.junit.jupiter.api.AfterEach) || + // @annotation(org.junit.jupiter.api.BeforeAll) || + // @annotation(org.junit.jupiter.api.AfterAll) || + @annotation(org.junit.jupiter.api.Test)) && + !within(org.apache.hadoop.*.TestDFSClientFailover.*) && + !within(org.apache.hadoop.hdfs.*.TestOfflineImageViewer.*) && + !within(org.apache.hadoop.example.ITUseHadoopCodec.*); + + + before() : testMethod() { + this.wasabiCtx = new WasabiContext(LOG, configParser); + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-BEFORE]: Test ---%s--- started", thisJoinPoint.toString()) + ); + + if (this.testMethodName != this.UNKNOWN) { + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-BEFORE]: [ALERT]: Test method ---%s--- executes concurrentlly with test method ---%s---", + this.testMethodName, thisJoinPoint.toString()) + ); + } + + this.testMethodName = thisJoinPoint.toString(); + } + + after() returning: testMethod() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-AFTER]: [SUCCESS]: Test ---%s--- done", thisJoinPoint.toString()) + ); + + this.wasabiCtx.printExecTrace(this.LOG, String.format(" Test: %s", this.testMethodName)); + + this.testMethodName = this.UNKNOWN; + this.wasabiCtx = null; + this.activeInjectionLocations.clear(); + } + + after() throwing (Throwable t): testMethod() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + this.wasabiCtx.printExecTrace(this.LOG, String.format(" Test: %s", this.testMethodName)); + + StringBuilder exception = new StringBuilder(); + for (Throwable e = t; e != null; e = e.getCause()) { + exception.append(e); + exception.append(" :-: "); + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-AFTER] [FAILURE] Test ---%s--- | Failure message :-: %s| Stack trace:\n%s\n:-:-:\n\n", + thisJoinPoint.toString(), exception.toString(), stackSnapshot.toString()) + ); + + this.testMethodName = this.UNKNOWN; + this.activeInjectionLocations.clear(); + } + + /* + * Callback before calling Thread.sleep(...) + */ + + pointcut recordThreadSleep(): + (call(* java.lang.Object.wait(..)) || + call(* java.lang.Thread.sleep(..)) || + call(* java.util.concurrent.locks.LockSupport.parkNanos(..)) || + call(* java.util.concurrent.locks.LockSupport.parkUntil(..)) || + call(* java.util.concurrent.ScheduledExecutorService.schedule(..)) || + call(* java.util.concurrent.TimeUnit.*scheduledExecutionTime(..)) || + call(* java.util.concurrent.TimeUnit.*sleep(..)) || + call(* java.util.concurrent.TimeUnit.*timedWait(..)) || + call(* java.util.Timer.schedule*(..)) || + call(* java.util.TimerTask.wait(..)) || + call(* org.apache.hadoop.hbase.*.Procedure.suspend(..))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + before() : recordThreadSleep() { + try { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + for (String retryCallerFunction : this.activeInjectionLocations) { + if (stackSnapshot.hasFrame(retryCallerFunction.split("\\(", 2)[0])) { + String sleepLocation = String.format("%s(%s:%d)", + retryCallerFunction.split("\\(", 2)[0], + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + this.wasabiCtx.addToExecTrace(sleepLocation, OpEntry.THREAD_SLEEP_OP, stackSnapshot); + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[THREAD-SLEEP] Test ---%s--- | Sleep location ---%s--- | Retry location ---%s---\n", + this.testMethodName, + sleepLocation, + retryCallerFunction.split("\\(", 2)[0]) + ); + } + } + } catch (Exception e) { + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_ERROR, + String.format("Exception occurred in recordThreadSleep(): %s", e.getMessage()) + ); + e.printStackTrace(); + } + } + + + /* Inject IOException */ + + pointcut injectIOException(): + ((withincode(* org.apache.hadoop.ha.ActiveStandbyElector.reEstablishSession(..)) && + call(* org.apache.hadoop.ha.ActiveStandbyElector.createConnection(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.balancer.Balancer.run(..)) && + call(* org.apache.hadoop.hdfs.server.balancer.Balancer.doBalance(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded.*SPSPathIdProcessor.run(..)) && + call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded.*SPSPathIdProcessor.run(..)) && + call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded.*SPSPathIdProcessor.run(..)) && + call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.removeSPSHint(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && + call(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.getInternal(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && + call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && + call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupIOstreams(..)) && + call(* org.apache.hadoop.security.UserGroupInformation.doAs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && + call(* org.apache.hadoop.mapred.ClientServiceDelegate.getProxy(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter.refreshToken(..)) && + call(* org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee.getAccessToken(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DataStreamer.transfer(..)) && + call(* org.apache.hadoop.hdfs.DataStreamer.*StreamerStreams.sendTransferBlock(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + call(* org.apache.hadoop.net.NetUtils.getOutputStream(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + call(* org.apache.hadoop.net.NetUtils.getInputStream(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.writeBlock(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + call(* org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.*BlockOpResponseProto.parseFrom(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + call(* org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil.checkBlockOpStatus(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && + call(* org.apache.hadoop.hdfs.server.datanode.DataXceiver.create(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.tools.DebugAdmin.*RecoverLeaseCommand.run(..)) && + call(* org.apache.hadoop.hdfs.DistributedFileSystem.recoverLease(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && + call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && + call(* org.apache.hadoop.fs.ByteBufferReadable.read(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && + call(* org.apache.hadoop.hdfs.DFSInputStream.getLastBlockLength(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && + call(* org.apache.hadoop.hdfs.DFSUtilClient.createClientDatanodeProtocolProxy(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && + call(* org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol.getReplicaVisibleLength(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && + call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockAt(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && + call(* org.apache.hadoop.hdfs.DFSInputStream.chooseDataNode(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && + call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && + call(* org.apache.hadoop.hdfs.ReaderStrategy.readFromBlock(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && + call(* org.apache.hadoop.hdfs.DFSInputStream.seekToBlockSource(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && + call(* org.apache.hadoop.hdfs.DFSInputStream.seekToNewSource(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && + call(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && + call(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSOutputStream.addBlock(..)) && + call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSOutputStream.newStreamForCreate(..)) && + call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.create(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSOutputStream.completeFile(..)) && + call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.complete(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && + call(* org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && + call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.run(..)) && + call(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.getMapCompletionEvents(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler.*BlockMovingTask.moveBlock(..)) && + call(* org.apache.hadoop.hdfs.server.balancer.KeyManager.getAccessToken(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler.*BlockMovingTask.moveBlock(..)) && + call(* org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher.moveBlock(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.runWithRetries(..)) && + call(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.run(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyFromHost(..)) && + call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyMapOutput(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.FileChecksumHelper.*ReplicatedFileChecksumComputer.checksumBlock(..)) && + call(* org.apache.hadoop.hdfs.FileChecksumHelper.*ReplicatedFileChecksumComputer.tryDatanode(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.FileChecksumHelper.*StripedFileNonStripedChecksumComputer.checksumBlockGroup(..)) && + call(* org.apache.hadoop.hdfs.FileChecksumHelper.*StripedFileNonStripedChecksumComputer.tryDatanode(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob(..)) && + call(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJobInternal(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.server.timelineservice.storage.FileSystemTimelineWriterImpl.*FSAction.runWithRetries(..)) && + call(* org.apache.hadoop.yarn.server.timelineservice.storage.FileSystemTimelineWriterImpl.*FSAction.run(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.FSInputChecker.readChecksumChunk(..)) && + call(* org.apache.hadoop.fs.FSInputChecker.readChunk(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.FSNamesystem.*LazyPersistFileScrubber.run(..)) && + call(* org.apache.hadoop.hdfs.server.namenode.FSNamesystem.*LazyPersistFileScrubber.clearCorruptLazyPersistFiles(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapred.JobClient.getJob(..)) && + call(* org.apache.hadoop.mapred.JobClient.getJobInner(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapred.JobEndNotifier.localRunnerNotification(..)) && + call(* org.apache.hadoop.mapred.JobEndNotifier.httpNotification(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run(..)) && + call(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.crypto.key.kms.LoadBalancingKMSClientProvider.doOp(..)) && + call(* org.apache.hadoop.crypto.key.kms.LoadBalancingKMSClientProvider.*ProviderCallable.*.call(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.*FSAction.runWithRetries(..)) && + call(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.*FSAction.run(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.cosn.CosNativeFileSystemStore.callCOSClientWithRetry(..)) && + call(* org.apache.hadoop.fs.azure.StorageInterface.*CloudBlockBlobWrapper.commitBlockList(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && + call(* java.io.InputStream.close(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && + call(* org.apache.hadoop.fs.cosn.NativeFileSystemStore.retrieveBlock(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && + call(* org.apache.hadoop.io.IOUtils.readFully(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.obs.OBSFileSystem.getFileStatus(..)) && + call(* org.apache.hadoop.fs.obs.OBSFileSystem.innerGetFileStatus(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && + call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && + call(* org.apache.hadoop.fs.obs.OBSInputStream.seekInStream(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && + call(* java.io.InputStream.read(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.obs.OBSInputStream.onReadFailure(..)) && + call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && + call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && + call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.obs.OBSInputStream.randomReadWithNewInputStream(..)) && + call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.createEmptyObject(..)) && + call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCreateEmptyObject(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.copyFile(..)) && + call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCopyFile(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && + call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && + call(* org.apache.hadoop.fs.impl.prefetch.BufferPool.acquire(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ha.ActiveStandbyElector.zkDoWithRetries(..)) && + call(* org.apache.hadoop.ha.ActiveStandbyElector.*ZKAction.*.run(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.security.UserGroupInformation.*AutoRenewalForUserCredsRunnable.run(..)) && + call(* org.apache.hadoop.security.UserGroupInformation.*AutoRenewalForUserCredsRunnable.relogin(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcRequestHeaderProto.RpcRequestHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readBytes(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcRequestHeaderProto.RpcRequestHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readEnum(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcRequestHeaderProto.RpcRequestHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readInt64(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcRequestHeaderProto.RpcRequestHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readMessage(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcRequestHeaderProto.RpcRequestHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readSInt32(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcRequestHeaderProto.RpcRequestHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readTag(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcRequestHeaderProto.RpcRequestHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.GeneratedMessageV3.parseUnknownField(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcResponseHeaderProto.RpcResponseHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readBytes(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcResponseHeaderProto.RpcResponseHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readEnum(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcResponseHeaderProto.RpcResponseHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readInt64(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcResponseHeaderProto.RpcResponseHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readSInt32(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcResponseHeaderProto.RpcResponseHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readTag(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcResponseHeaderProto.RpcResponseHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readUInt32(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.protobuf.RpcHeaderProtos.*RpcResponseHeaderProto.RpcResponseHeaderProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.GeneratedMessageV3.parseUnknownField(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + call(* org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage.getRecoveryStage(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && + call(* org.apache.hadoop.hdfs.DFSInputStream.fetchAndCheckLocatedBlocks(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && + call(* org.apache.hadoop.hdfs.DFSInputStream.waitFor(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && + call(* org.apache.hadoop.util.StopWatch.start(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.ha.ObserverReadProxyProvider.*ObserverReadInvocationHandler.invoke(..)) && + call(* java.lang.reflect.Method.invoke(..) throws *IOException*)) || + (withincode(* org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache.*SlotReleaser.run(..)) && + call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.ProvidedVolumeImpl.*ProvidedBlockPoolSlice.fetchVolumeMap(..)) && + call(* org.apache.hadoop.hdfs.server.common.blockaliasmap.BlockAliasMap.*.getReader(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.ha.EditLogTailer.*MultipleNameNodeProxy.getActiveNodeProxy(..)) && + call(* org.apache.hadoop.ipc.RPC.getProtocolVersion(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler.run(..)) && + call(* org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler.*ReencryptionPendingInodeIdCollector.checkPauseForTesting(..) throws *IOException*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && + call(* org.apache.hadoop.util.StopWatch.start(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + call(* org.apache.hadoop.security.UserGroupInformation.checkTGTAndReloginFromKeytab(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + call(* org.apache.hadoop.security.UserGroupInformation.getCurrentUser(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapred.YarnChild.main(..)) && + call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.getTask(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && + call(* java.lang.reflect.Method.invoke(..) throws *IOException*)) || + (withincode(* org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask.run(..)) && + call(* org.apache.hadoop.io.IOUtils.readFully(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.s3a.Invoker.retryUntranslated(..)) && + call(* org.apache.hadoop.util.functional.CallableRaisingIOE.*.apply(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && + call(* org.apache.hadoop.fs.azure.StorageInterface.*CloudBlockBlobWrapper.uploadBlock(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && + call(* org.apache.hadoop.fs.azure.StorageInterface.*CloudBlockBlobWrapper.uploadBlock(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockListRequestInternal(..)) && + call(* org.apache.hadoop.fs.azure.StorageInterface.*CloudBlockBlobWrapper.commitBlockList(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + call(* java.io.BufferedReader.readLine(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenCall(..)) && + call(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenSingleCall(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.tools.SimpleCopyListing.*TraverseDirectory.traverseDirectoryMultiThreaded(..)) && + call(* org.apache.hadoop.tools.util.ProducerConsumer.*.take(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && + call(* java.util.Properties.load(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && + call(* org.apache.hadoop.fs.FileSystem.open(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && + call(* org.apache.hadoop.fs.Path.getFileSystem(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForNameNodeJMXValue(..)) && + call(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.fetchNameNodeJMXValue(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.proto.YarnProtos.*ContainerLaunchContextProto.ContainerLaunchContextProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readBytes(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.proto.YarnProtos.*ContainerLaunchContextProto.ContainerLaunchContextProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readMessage(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.proto.YarnProtos.*ContainerLaunchContextProto.ContainerLaunchContextProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readTag(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.proto.YarnProtos.*ContainerLaunchContextProto.ContainerLaunchContextProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.GeneratedMessageV3.parseUnknownField(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.proto.YarnProtos.*ContainerRetryContextProto.ContainerRetryContextProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readEnum(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.proto.YarnProtos.*ContainerRetryContextProto.ContainerRetryContextProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readInt32(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.proto.YarnProtos.*ContainerRetryContextProto.ContainerRetryContextProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readInt64(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.proto.YarnProtos.*ContainerRetryContextProto.ContainerRetryContextProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readRawVarint32(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.proto.YarnProtos.*ContainerRetryContextProto.ContainerRetryContextProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readTag(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.proto.YarnProtos.*ContainerRetryContextProto.ContainerRetryContextProto(..)) && + call(* org.apache.hadoop.thirdparty.protobuf.GeneratedMessageV3.parseUnknownField(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + call(* java.io.DataInputStream.readFully(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + call(* org.apache.hadoop.fs.FileContext.open(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + call(* org.apache.hadoop.fs.RemoteIterator.*.hasNext(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + call(* org.apache.hadoop.fs.RemoteIterator.*.next(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + call(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.deleteFileWithRetries(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore.*FSAction.runWithRetries(..)) && + call(* org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore.*FSAction.run(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.submitReservation(..)) && + call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.submitReservation(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.getNewReservation(..)) && + call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.getNewReservation(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && + call(* org.apache.hadoop.yarn.server.utils.BuilderUtils.newContainerTokenIdentifier(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && + call(* org.apache.hadoop.yarn.server.nodemanager.containermanager.container.ResourceMappings.*AssignedResources.fromBytes(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.RPC.waitForProtocolProxy(..)) && + call(* org.apache.hadoop.security.UserGroupInformation.getCurrentUser(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.shouldCheckpointBasedOnCount(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doCheckpoint(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.tools.SimpleCopyListing.*TraverseDirectory.traverseDirectoryMultiThreaded(..)) && + call(* org.apache.hadoop.tools.util.DistCpUtils.toCopyListingFileStatus(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.tools.SimpleCopyListing.*TraverseDirectory.traverseDirectoryMultiThreaded(..)) && + call(* org.apache.hadoop.tools.SimpleCopyListing.addToFileListing(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.tools.SimpleCopyListing.*TraverseDirectory.traverseDirectoryMultiThreaded(..)) && + call(* org.apache.hadoop.tools.SimpleCopyListing.writeToFileListing(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && + call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.getFileInfo(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && + call(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.analyseBlocksStorageMovementsAndAssignToDN(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && + call(* org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded.removeItemTrackInfo(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapred.Task.done(..)) && + call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapred.Task.statusUpdate(..)) && + call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapred.Task.sendDone(..)) && + call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.done(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapred.Task.commit(..)) && + call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.canCommit(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapred.Task.*TaskReporter.run(..)) && + call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapred.Task.*TaskReporter.run(..)) && + call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..)) && + call(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && + call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && + call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && + call(* org.apache.hadoop.yarn.api.ApplicationBaseProtocol.getApplicationAttemptReport(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ha.HealthMonitor.tryConnect(..)) && + call(* org.apache.hadoop.ha.HealthMonitor.createProxy(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.TrashPolicyDefault.moveToTrash(..)) && + call(* mkdirs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.TrashPolicyDefault.run(..)) && + call(* createCheckpoint(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.TrashPolicyDefault.run(..)) && + call(* deleteCheckpoint(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DFSClient.renewLease(..)) && + call(* renewLease(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.util.DiskChecker.doDiskIo(..)) && + call(* diskIoCheckWithoutNativeIo(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier.getNameNodeConnector(..)) && + call(* newNameNodeConnectors(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator.makeRequest(..)) && + call(* listCacheDirectives(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator.heartbeat(..)) && + call(* allocate(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer.run(..)) && + call(* doAs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.server.AMRMClientRelayer.allocate(..)) && + call(* reRegisterApplicationMaster(..) throws *Exception*)) || + (withincode(* CreateOutputDirectoriesStage.maybeCreateOneDirectory(..)) && + call(* mkdirs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.io.retry.RetryInvocationHandler.invokeOnce(..)) && + call(* invoke(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws IOException : injectIOException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "IOException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new IOException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject SocketException */ + + pointcut injectSocketException(): + ((withincode(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.run(..)) && + call(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.connectToNNAndHandshake(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupConnection(..)) && + call(* javax.net.SocketFactory.createSocket(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupConnection(..)) && + call(* java.net.Socket.setTcpNoDelay(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupConnection(..)) && + call(* java.net.Socket.setKeepAlive(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupConnection(..)) && + call(* org.apache.hadoop.net.NetUtils.getLocalInetAddress(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupConnection(..)) && + call(* java.net.Socket.setReuseAddress(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupConnection(..)) && + call(* java.net.Socket.bind(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupConnection(..)) && + call(* java.net.Socket.setSoTimeout(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupIOstreams(..)) && + call(* org.apache.hadoop.ipc.Client.*Connection.setupConnection(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupIOstreams(..)) && + call(* org.apache.hadoop.ipc.Client.*Connection.writeConnectionHeader(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupIOstreams(..)) && + call(* org.apache.hadoop.ipc.Client.*IpcStreams.setSaslClient(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupIOstreams(..)) && + call(* org.apache.hadoop.ipc.Client.*Connection.writeConnectionContext(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + call(* org.apache.hadoop.hdfs.DataStreamer.createSocketForPipeline(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + call(* org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient.socketSend(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.ha.EditLogTailer.*MultipleNameNodeProxy.getActiveNodeProxy(..)) && + call(* org.apache.hadoop.ipc.RPC.waitForProxy(..) throws *Exception*)) || + (withincode(* java.io.IOException(..)) && + call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.openConnection(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.connect(..)) && + call(* java.net.URLConnection.connect(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.server.namenode.FSDirEncryptionZoneOp.*EDEKCacheLoader.run(..)) && + call(* org.apache.hadoop.crypto.key.KeyProviderCryptoExtension.warmUpEncryptedKeys(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.client.cli.LogsCLI.*ClientConnectionRetry.retryOn(..)) && + call(* org.apache.hadoop.yarn.client.cli.LogsCLI.*ClientRetryOp.run(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.Client.*Connection.setupConnection(..)) && + call(* java.net.Socket.setTrafficClass(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache.*SlotReleaser.run(..)) && + call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.releaseShortCircuitFds(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache.*SlotReleaser.run(..)) && + call(* org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.*ReleaseShortCircuitAccessResponseProto.parseFrom(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + call(* org.apache.http.client.HttpClient.execute(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + call(* org.apache.http.HttpEntity.getContent(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.tools.util.RetriableCommand.execute(..)) && + call(* org.apache.hadoop.tools.util.RetriableCommand.doExecute(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.client.api.impl.TimelineConnector.*TimelineClientConnectionRetry.retryOn(..)) && + call(* org.apache.hadoop.yarn.client.api.impl.TimelineConnector.*TimelineClientRetryOp.run(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache.*SlotReleaser.run(..)) && + call(* org.apache.hadoop.net.unix.DomainSocket.connect(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.web.WebHdfsFileSystem.*AbstractRunner.runWithRetry(..)) && + call(* org.apache.hadoop.hdfs.web.WebHdfsFileSystem.*AbstractRunner.getUrl(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.web.WebHdfsFileSystem.*AbstractRunner.runWithRetry(..)) && + call(* org.apache.hadoop.hdfs.web.WebHdfsFileSystem.*AbstractRunner.connect(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.web.WebHdfsFileSystem.*AbstractRunner.runWithRetry(..)) && + call(* org.apache.hadoop.hdfs.web.WebHdfsFileSystem.*AbstractRunner.getResponse(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws SocketException : injectSocketException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "SocketException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new SocketException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject ConnectException */ + + pointcut injectConnectException(): + ((withincode(* org.apache.hadoop.ipc.Client.*Connection.setupConnection(..)) && + call(* org.apache.hadoop.net.NetUtils.connect(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.ipc.RPC.waitForProtocolProxy(..)) && + call(* org.apache.hadoop.ipc.RPC.getProtocolProxy(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws ConnectException : injectConnectException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "ConnectException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new ConnectException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject SocketTimeoutException */ + + pointcut injectSocketTimeoutException(): + ((withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && + call(* org.apache.hadoop.hdfs.net.PeerServer.accept(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws SocketTimeoutException : injectSocketTimeoutException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "SocketTimeoutException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new SocketTimeoutException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject FileNotFoundException */ + + pointcut injectFileNotFoundException(): + ((withincode(* org.apache.hadoop.fs.obs.OBSCommonUtils.isFolderEmpty(..)) && + call(* org.apache.hadoop.fs.obs.OBSCommonUtils.innerIsFolderEmpty(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && + call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + call(* org.apache.hadoop.fs.FileContext.open(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws FileNotFoundException : injectFileNotFoundException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "FileNotFoundException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new FileNotFoundException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject EOFException */ + + pointcut injectEOFException(): + ((withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache.*SlotReleaser.run(..)) && + call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws EOFException : injectEOFException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "EOFException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new EOFException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + /* Inject RetriableException */ + + pointcut injectRetriableException(): + ((withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && + call(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.processTask(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache.*SlotReleaser.run(..)) && + call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws RetriableException : injectRetriableException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "RetriableException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new RetriableException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj new file mode 100644 index 00000000..8c9b11d7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj @@ -0,0 +1,384 @@ +package edu.uchicago.cs.systems.wasabi; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.IOException; +import java.io.EOFException; +import java.io.FileNotFoundException; +import java.net.BindException; +import java.net.ConnectException; +import java.net.SocketException; +import java.net.SocketTimeoutException; +import java.net.UnknownHostException; +import java.lang.InterruptedException; +import java.sql.SQLException; +import java.sql.SQLTransientException; + +import java.util.concurrent.ConcurrentHashMap; +import java.util.Set; + +import edu.uchicago.cs.systems.wasabi.ConfigParser; +import edu.uchicago.cs.systems.wasabi.WasabiLogger; +import edu.uchicago.cs.systems.wasabi.WasabiContext; +import edu.uchicago.cs.systems.wasabi.InjectionPolicy; +import edu.uchicago.cs.systems.wasabi.StackSnapshot; +import edu.uchicago.cs.systems.wasabi.InjectionPoint; +import edu.uchicago.cs.systems.wasabi.ExecutionTrace; + +public aspect InterceptHive { + private WasabiContext wasabiCtx = null; + + private static final String UNKNOWN = "UNKNOWN"; + + private static final WasabiLogger LOG = new WasabiLogger(); + private static final String configFile = (System.getProperty("configFile") != null) ? System.getProperty("configFile") : "default.conf"; + private static final ConfigParser configParser = new ConfigParser(LOG, configFile); + + private Set activeInjectionLocations = ConcurrentHashMap.newKeySet(); + private String testMethodName = UNKNOWN; + + pointcut testMethod(): + @annotation(org.junit.Test) && + // @annotation(org.junit.Before) || + // @annotation(org.junit.After) || + // @annotation(org.junit.BeforeClass) || + // @annotation(org.junit.AfterClass) || + // @annotation(org.junit.jupiter.api.BeforeEach) || + // @annotation(org.junit.jupiter.api.AfterEach) || + // @annotation(org.junit.jupiter.api.BeforeAll) || + // @annotation(org.junit.jupiter.api.AfterAll) || + // @annotation(org.junit.jupiter.api.Test)) && + !within(org.apache.hadoop.*.TestDFSClientFailover.*) && + !within(org.apache.hadoop.hdfs.*.TestOfflineImageViewer.*) && + !within(org.apache.hadoop.example.ITUseHadoopCodec.*) && + !within(org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.test.*); + + + before() : testMethod() { + this.wasabiCtx = new WasabiContext(LOG, configParser); + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-BEFORE]: Test ---%s--- started", thisJoinPoint.toString()) + ); + + if (this.testMethodName != this.UNKNOWN) { + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-BEFORE]: [ALERT]: Test method ---%s--- executes concurrentlly with test method ---%s---", + this.testMethodName, thisJoinPoint.toString()) + ); + } + + this.testMethodName = thisJoinPoint.toString(); + } + + after() returning: testMethod() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-AFTER]: [SUCCESS]: Test ---%s--- done", thisJoinPoint.toString()) + ); + + this.wasabiCtx.printExecTrace(this.LOG, String.format(" Test: %s", this.testMethodName)); + + this.testMethodName = this.UNKNOWN; + this.wasabiCtx = null; + this.activeInjectionLocations.clear(); + } + + after() throwing (Throwable t): testMethod() { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + this.wasabiCtx.printExecTrace(this.LOG, String.format(" Test: %s", this.testMethodName)); + + StringBuilder exception = new StringBuilder(); + for (Throwable e = t; e != null; e = e.getCause()) { + exception.append(e); + exception.append(" :-: "); + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-AFTER] [FAILURE] Test ---%s--- | Failure message :-: %s| Stack trace:\n%s\n:-:-:\n\n", + thisJoinPoint.toString(), exception.toString(), stackSnapshot.toString()) + ); + + this.testMethodName = this.UNKNOWN; + this.activeInjectionLocations.clear(); + } + + /* + * Callback before calling Thread.sleep(...) + */ + + pointcut recordThreadSleep(): + (call(* java.lang.Object.wait(..)) || + call(* java.lang.Thread.sleep(..)) || + call(* java.util.concurrent.locks.LockSupport.parkNanos(..)) || + call(* java.util.concurrent.locks.LockSupport.parkUntil(..)) || + call(* java.util.concurrent.ScheduledExecutorService.schedule(..)) || + call(* java.util.concurrent.TimeUnit.*scheduledExecutionTime(..)) || + call(* java.util.concurrent.TimeUnit.*sleep(..)) || + call(* java.util.concurrent.TimeUnit.*timedWait(..)) || + call(* java.util.Timer.schedule*(..)) || + call(* java.util.TimerTask.wait(..)) || + call(* org.apache.hadoop.hbase.*.Procedure.suspend(..))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + before() : recordThreadSleep() { + try { + if (this.wasabiCtx == null) { // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + } + + StackSnapshot stackSnapshot = new StackSnapshot(); + for (String retryCallerFunction : this.activeInjectionLocations) { + if (stackSnapshot.hasFrame(retryCallerFunction.split("\\(", 2)[0])) { + String sleepLocation = String.format("%s(%s:%d)", + retryCallerFunction.split("\\(", 2)[0], + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + this.wasabiCtx.addToExecTrace(sleepLocation, OpEntry.THREAD_SLEEP_OP, stackSnapshot); + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[THREAD-SLEEP] Test ---%s--- | Sleep location ---%s--- | Retry location ---%s---\n", + this.testMethodName, + sleepLocation, + retryCallerFunction.split("\\(", 2)[0]) + ); + } + } + } catch (Exception e) { + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_ERROR, + String.format("Exception occurred in recordThreadSleep(): %s", e.getMessage()) + ); + e.printStackTrace(); + } + } + + + /* Inject IOException */ + + pointcut injectIOException(): + ((withincode(* org.apache.hadoop.hive.ql.parse.repl.CopyUtils.doCopyRetry(..)) && + call(* org.apache.hadoop.hive.ql.parse.repl.CopyUtils.getFilesToRetry(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.parse.repl.CopyUtils.doCopyRetry(..)) && + call(* org.apache.hadoop.hive.ql.parse.repl.CopyUtils.doCopyOnce(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec(..)) && + call(* org.apache.hadoop.fs.FileSystem.mkdirs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec(..)) && + call(* org.apache.hadoop.fs.FileSystem.rename(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open(..)) && + call(* org.apache.hadoop.hive.metastore.utils.SecurityUtils.getUGI(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook.*EventLogger.writeEvent(..)) && + call(* org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook.*EventLogger.maybeRolloverWriterForDay(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook.*EventLogger.writeEvent(..)) && + call(* org.apache.tez.dag.history.logging.proto.ProtoMessageWriter.*.writeProto(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook.*EventLogger.writeEvent(..)) && + call(* org.apache.tez.dag.history.logging.proto.ProtoMessageWriter.*.hflush(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.ObjectStore.*RetryingExecutor.run(..)) && + call(* org.apache.hadoop.hive.metastore.ObjectStore.*RetryingExecutor.*Command.process(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.exec.util.Retryable.executeCallable(..)) && + call(* org.apache.hadoop.security.UserGroupInformation.doAs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.exec.util.Retryable.executeCallable(..)) && + call(* org.apache.hadoop.security.UserGroupInformation.getLoginUser(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.exec.repl.atlas.RetryingClientTimeBased.invokeWithRetry(..)) && + call(* java.util.concurrent.Callable.*.call(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.registry.impl.ZkRegistryBase.ensureInstancesCache(..)) && + call(* org.apache.curator.framework.recipes.cache.PathChildrenCache.start(..) throws *Exception*)) || + (withincode(* org.apache.hive.common.util.RetryUtilities.*ExponentiallyDecayingBatchWork.run(..)) && + call(* org.apache.hive.common.util.RetryUtilities.*ExponentialBackOffRetry.*.execute(..) throws *Exception*)) || + (withincode(* org.apache.hive.common.util.Retry.*RetryingStatement.evaluate(..)) && + call(* org.junit.runners.model.Statement.evaluate(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec(..)) && + call(* org.apache.hadoop.fs.FileSystem.exists(..) throws *Exception*)) || + (withincode(* org.apache.hive.hcatalog.templeton.LauncherDelegator.killTempletonJobWithRetry(..)) && + call(* org.apache.hive.hcatalog.templeton.LauncherDelegator.killJob(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.kafka.RetryUtils.retry(..)) && + call(* org.apache.hadoop.hive.kafka.RetryUtils.*Task.*.perform(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.llap.AsyncPbRpcProxy.*AsyncCallableRequest.call(..)) && + call(* org.apache.hadoop.hive.llap.AsyncPbRpcProxy.*AsyncCallableRequest.callInternal(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution(..)) && + call(* org.apache.tez.dag.api.client.DAGClient.getDAGStatus(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook.*EventLogger.writeEvent(..)) && + call(* org.apache.tez.dag.history.logging.proto.DatePartitionedLogger.*.getWriter(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.invoke(..)) && + call(* org.apache.hadoop.security.UserGroupInformation.doAs(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.grpc.HiveMetastore.*CompactionInfoStruct.CompactionInfoStruct(..)) && + call(* com.google.protobuf.CodedInputStream.readBool(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.grpc.HiveMetastore.*CompactionInfoStruct.CompactionInfoStruct(..)) && + call(* com.google.protobuf.CodedInputStream.readEnum(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.grpc.HiveMetastore.*CompactionInfoStruct.CompactionInfoStruct(..)) && + call(* com.google.protobuf.CodedInputStream.readInt64(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.grpc.HiveMetastore.*CompactionInfoStruct.CompactionInfoStruct(..)) && + call(* com.google.protobuf.CodedInputStream.readStringRequireUtf8(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.grpc.HiveMetastore.*CompactionInfoStruct.CompactionInfoStruct(..)) && + call(* com.google.protobuf.CodedInputStream.readTag(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.grpc.HiveMetastore.*CompactionInfoStruct.CompactionInfoStruct(..)) && + call(* com.google.protobuf.GeneratedMessageV3.parseUnknownField(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.utils.MetaStoreServerUtils.loopUntilHMSReady(..)) && + call(* java.net.Socket.close(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.utils.MetaStoreServerUtils.loopUntilHMSReady(..)) && + call(* java.net.Socket.connect(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.utils.RetryUtilities.run(..)) && + call(* org.*.execute(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open(..)) && + call(* org.apache.hadoop.hive.metastore.conf.MetastoreConf.getPassword(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open(..)) && + call(* org.apache.hadoop.hive.metastore.security.HadoopThriftAuthBridge.*Client.createClientTransport(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open(..)) && + call(* org.apache.hadoop.hive.metastore.utils.SecurityUtils.getTokenStrForm(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open(..)) && + call(* org.apache.hadoop.hive.metastore.utils.SecurityUtils.getUGI(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.exec.tez.YarnQueueHelper.checkQueueAccessInternal(..)) && + call(* checkQueueAccessFromSingleRm(..) throws *Exception*)) || + (withincode(* *checkJobTracker(..)) && + call(* *openStream(..) throws *Exception*)) || + (withincode(* *close*(..)) && + call(* *read(..) throws *Exception*)) || + (withincode(* *checkJobTracker(..)) && + call(* *read(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws IOException : injectIOException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "IOException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new IOException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + + + /* Inject SQLException */ + + pointcut injectSQLException(): + ((withincode(* org.apache.hive.jdbc.HiveConnection.HiveConnection(..)) && + call(* org.apache.hive.jdbc.HiveConnection.executeInitSql(..) throws *Exception*)) || + (withincode(* org.apache.hive.jdbc.HiveConnection.HiveConnection(..)) && + call(* org.apache.hive.jdbc.HiveConnection.openSession(..) throws *Exception*)) || + (withincode(* org.apache.hive.jdbc.HiveConnection.HiveConnection(..)) && + call(* org.apache.hive.jdbc.HiveConnection.openTransport(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.exec.Utilities.executeWithRetry(..)) && + call(* org.apache.hadoop.hive.ql.exec.Utilities.*SQLCommand.*.run(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.exec.Utilities.connectWithRetry(..)) && + call(* java.sql.DriverManager.getConnection(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.ql.exec.Utilities.prepareWithRetry(..)) && + call(* java.sql.Connection.prepareStatement(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean(..)) && + call(* java.sql.ResultSet.getInt(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean(..)) && + call(* java.sql.ResultSet.getLong(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean(..)) && + call(* java.sql.ResultSet.getString(..) throws *Exception*)) || + (withincode(* org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean(..)) && + call(* java.sql.ResultSet.next(..) throws *Exception*))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws SQLException : injectSQLException() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "SQLException"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) { + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + } + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) { + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new SQLException( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + } + } + +} \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/ConfigParser.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/ConfigParser.java new file mode 100644 index 00000000..0b71df54 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/ConfigParser.java @@ -0,0 +1,163 @@ +package edu.uchicago.cs.systems.wasabi; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.BufferedReader; +import java.io.FileReader; +import java.io.IOException; +import java.lang.System; +import java.nio.file.Paths; +import java.nio.file.Path; +import java.util.Arrays; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.Map; + +import edu.uchicago.cs.systems.wasabi.InjectionPoint; + +import org.junit.Assert; + +class ConfigParser { + + private static WasabiLogger LOG; + private static String configFile; + + private static String wasabiRootDir; + private static String retryDataFile; + private static String injectionPolicy; + private static int maxInjectionCount; + + private static final ArrayList rawRecords = new ArrayList<>(); + private static final Map injectionPlan = new HashMap<>(); + + private static final HashingPrimitives hashingPrimitives = new HashingPrimitives(); + private static final String[] RETRY_DATA_COLUMN_NAMES = {"Retry location", "Retry caller", "Injection site", "Injection location", "Exception"}; + + public ConfigParser(WasabiLogger logger, String configFile) { + this.LOG = logger; + this.configFile = configFile; + + this.wasabiRootDir = System.getenv("WASABI_ROOT_DIR"); + if (this.wasabiRootDir == null) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("WASABI_ROOT_DIR environment variable is not set.") + ); + throw new IllegalStateException("[wasabi] WASABI_ROOT_DIR environment variable is not set."); + } + + parseConfigFile(); + parseCodeQLOutput(); + } + + private void parseConfigFile() { + try (BufferedReader br = new BufferedReader(new FileReader(this.configFile))) { + String line; + while ((line = br.readLine()) != null) { + String[] parts = line.split(":"); + Assert.assertEquals("[wasabi] Invalid line format for <" + line + ">", 2, parts.length); + + String parameter = parts[0].trim(); + String value = parts[1].replaceAll("\\s+", "").trim(); + switch (parameter) { + case "retry_data_file": + try { + Path retryDataFilePath = Paths.get(this.wasabiRootDir).resolve(value).normalize(); + this.retryDataFile = retryDataFilePath.toString(); + } catch (Exception e) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("[wasabi] Invalid path: %s/%s", this.wasabiRootDir, value) + ); + e.printStackTrace(); + throw new IllegalStateException("[wasabi] Invalid path: " + this.wasabiRootDir + "/" + value); + } + break; + case "injection_policy": + this.injectionPolicy = value; + break; + case "max_injection_count": + try { + this.maxInjectionCount = Integer.parseInt(value); + } catch (Exception e) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("An exception occurred when parsing line <%s>: %s\n", + line, e.getMessage()) + ); + e.printStackTrace(); + } + break; + } + } + } catch (IOException e) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("An exception occurred when parsing the config file: %s\n", e.getMessage()) + ); + e.printStackTrace(); + } + } + + private void parseCodeQLOutput() { + try (BufferedReader br = new BufferedReader(new FileReader(this.retryDataFile))) { + boolean foundHeader = false; + String line; + while ((line = br.readLine()) != null) { + String[] values = line.split("!!!"); + + if (!foundHeader && Arrays.equals(RETRY_DATA_COLUMN_NAMES, values)) { + foundHeader = true; + continue; + } + + if (foundHeader) { + rawRecords.add(values); + } + } + } catch (IOException e) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("An exception occurred when parsing the retry data file: %s\n", e.getMessage()) + ); + e.printStackTrace(); + } + + for (String[] record : rawRecords) { + String retrySourceLocation = record[0]; + String retryCallerFunction = record[1]; + String injectionSite = record[2]; + String injectionLocation = record[3]; + String retryException = record[4]; + + InjectionPoint entry = new InjectionPoint( + null, + retrySourceLocation, + retryCallerFunction, + injectionSite, + retryException, + -1 + ); + + injectionPlan.put(injectionLocation, entry); + } + } + + public ArrayList getRawRecords() { + return rawRecords; + } + + public Map getInjectionPlan() { + return Collections.unmodifiableMap(injectionPlan); + } + + public int getMaxInjectionCount() { + return this.maxInjectionCount; + } + + public String getInjectionPolicy() { + return this.injectionPolicy; + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/ExecutionTrace.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/ExecutionTrace.java new file mode 100644 index 00000000..045b7716 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/ExecutionTrace.java @@ -0,0 +1,243 @@ +package edu.uchicago.cs.systems.wasabi; + +import java.util.ArrayDeque; +import java.util.ArrayList; +import java.util.concurrent.locks.Lock; +import java.util.concurrent.locks.ReentrantLock; +import java.util.Deque; +import java.util.Iterator; +import java.util.LinkedList; +import java.util.Objects; + +class OpEntry { + + public static final Integer RETRY_CALLER_OP = 0; + public static final Integer THREAD_SLEEP_OP = 1; + + private String opName = ""; + private Integer opType = this.RETRY_CALLER_OP; + private StackSnapshot stackSnapshot = null; + private Long timestamp = 0L; + private String exception = null; + + public OpEntry(String opName, + Integer opType, + Long timestamp, + StackSnapshot stackSnapshot) { + this.opName = opName; + this.opType = opType; + this.timestamp = timestamp; + this.stackSnapshot = stackSnapshot; + this.exception = null; + } + + public OpEntry(String opName, + Integer opType, + Long timestamp, + StackSnapshot stackSnapshot, + String exception) { + this.opName = opName; + this.opType = opType; + this.timestamp = timestamp; + this.stackSnapshot = stackSnapshot; + this.exception = exception; + } + + public OpEntry(String opName, + Integer opType, + StackSnapshot stackSnapshot, + String exception) { + this.opName = opName; + this.opType = opType; + this.timestamp = 0L; + this.stackSnapshot = stackSnapshot; + this.exception = exception; + } + + public Boolean isOfType(Integer opType) { + return Objects.equals(this.opType, opType); + } + + public Boolean hasFrame(String target) { + return this.stackSnapshot.hasFrame(target); + } + + public Boolean isSameOp(OpEntry target) { + return ( + this.opType == target.opType && + (this.exception == null || this.exception.equals(target.exception)) && + this.stackSnapshot.isEqual(target.stackSnapshot) + ); + } + + public void printOpEntry(WasabiLogger log) { + log.printMessage(WasabiLogger.LOG_LEVEL_WARN, + String.format("\n Op type: %s\n Op name: %s\n Timestamp: %d\n Callstack (top):\n%s\n Exception: %s\n", + this.opType == this.RETRY_CALLER_OP ? "retry" : "sleep", + this.opName, + this.timestamp, + this.stackSnapshot.serializeTopFrames(5), + this.exception + ) + ); + } +} + +class ExecutionTrace { + + private final Lock mutex = new ReentrantLock(); + private final int INFINITE_CACHE = -1; + + private ArrayDeque opCache; + private int maxOpCacheSize; + + public ExecutionTrace() { + this.opCache = new ArrayDeque(); + this.maxOpCacheSize = this.INFINITE_CACHE; + } + + public ExecutionTrace(int maxOpCacheSize) { + this.opCache = new ArrayDeque(); + this.maxOpCacheSize = maxOpCacheSize; + } + + public Boolean isNullOrEmpty() { + mutex.lock(); + try { + return this.opCache == null || this.opCache.isEmpty(); + } finally { + mutex.unlock(); + } + } + + public int getMaxOpCacheSize() { + mutex.lock(); + try { + return this.maxOpCacheSize; + } finally { + mutex.unlock(); + } + } + + public int getSize() { + mutex.lock(); + try { + return this.opCache.size(); + } finally { + mutex.unlock(); + } + } + + public void addLast(OpEntry opEntry) { + mutex.lock(); + try { + if (this.maxOpCacheSize != this.INFINITE_CACHE && this.opCache.size() >= this.maxOpCacheSize) { + this.opCache.removeFirst(); + } + this.opCache.addLast(opEntry); + } finally { + mutex.unlock(); + } + } + + public Boolean checkIfOpsAreEqual(int leftIndex, int rightIndex) { + mutex.lock(); + try { + if (this.opCache.size() < Math.max(leftIndex, rightIndex)) { + return false; + } + + OpEntry leftOp = null; + OpEntry rightOp = null; + + int index = this.opCache.size() - 1; + Iterator itr = this.opCache.descendingIterator(); + while (itr.hasNext() && index >= Math.min(leftIndex, rightIndex)) { + OpEntry current = itr.next(); + + if (index == leftIndex) { + leftOp = current; + } else if (index == rightIndex) { + rightOp = current; + } + + --index; + } + + return leftOp != null && rightOp != null && leftOp.isSameOp(rightOp); + + } finally { + mutex.unlock(); + } + } + + public Boolean checkIfOpIsOfType(int targetIndex, int targetOpType) { + mutex.lock(); + try { + if (this.opCache.size() < targetIndex) { + return false; + } + + OpEntry targetOp = null; + + int index = this.opCache.size() - 1; + Iterator itr = this.opCache.descendingIterator(); + while (itr.hasNext() && index >= targetIndex) { + OpEntry current = itr.next(); + + if (index == targetIndex) { + targetOp = current; + } + + --index; + } + + return targetOp != null && targetOp.isOfType(targetOpType); + + } finally { + mutex.unlock(); + } + } + + public Boolean checkIfOpHasFrame(int targetIndex, String targetFrame) { + mutex.lock(); + try { + if (this.opCache.size() < targetIndex) { + return false; + } + + OpEntry targetOp = null; + + int index = this.opCache.size() - 1; + Iterator itr = this.opCache.descendingIterator(); + while (itr.hasNext() && index >= targetIndex) { + OpEntry current = itr.next(); + + if (index == targetIndex) { + targetOp = current; + } + + --index; + } + + return targetOp != null && targetOp.hasFrame(targetFrame); + + } finally { + mutex.unlock(); + } + } + + public void printExecutionTrace(WasabiLogger log, String msg) { + mutex.lock(); + try { + log.printMessage(WasabiLogger.LOG_LEVEL_WARN, String.format("================================ %s", msg)); + for (OpEntry op : this.opCache) { + op.printOpEntry(log); + } + log.printMessage(WasabiLogger.LOG_LEVEL_WARN, String.format("================================================================\n\n")); + + } finally { + mutex.unlock(); + } + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/HashingPrimitives.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/HashingPrimitives.java new file mode 100644 index 00000000..c102a964 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/HashingPrimitives.java @@ -0,0 +1,46 @@ +package edu.uchicago.cs.systems.wasabi; + +//import java.nio.charset.StandardCharsets; +//import org.apache.commons.codec.digest.MurmurHash3; +import java.util.ArrayList; + +class HashingPrimitives { + public static int getHashValue(String str1, String str2, String str3) { + return 0; + /* + byte[] bytes1 = str1.getBytes(StandardCharsets.UTF_8); + byte[] bytes2 = str2.getBytes(StandardCharsets.UTF_8); + byte[] bytes3 = str3.getBytes(StandardCharsets.UTF_8); + + byte[] bytes = new byte[bytes1.length + bytes2.length + bytes3.length]; + + System.arraycopy(bytes1, 0, bytes, 0, bytes1.length); + System.arraycopy(bytes2, 0, bytes, bytes1.length, bytes2.length); + System.arraycopy(bytes3, 0, bytes, bytes1.length + bytes2.length, bytes3.length); + + return MurmurHash3.hash32x86(bytes, 0, bytes.length, 0); + */ + } + + public static int getHashValue(ArrayList arr) { + return 0; + /* + ArrayList byteList = new ArrayList<>(); + int totalLength = 0; + for (String e : arr) { + byte[] bytes = e.getBytes(StandardCharsets.UTF_8); + byteList.add(bytes); + totalLength += bytes.length; + } + + byte[] bytes = new byte[totalLength]; + int offset = 0; + for (byte[] b : byteList) { + System.arraycopy(b, 0, bytes, offset, b.length); + offset += b.length; + } + + return MurmurHash3.hash32x86(bytes, 0, bytes.length, 0); + */ + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/InjectionPoint.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/InjectionPoint.java new file mode 100644 index 00000000..43b9138e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/InjectionPoint.java @@ -0,0 +1,35 @@ +package edu.uchicago.cs.systems.wasabi; + +class InjectionPoint { + + public StackSnapshot stackSnapshot = null; + public String retrySourceLocation = null; + public String retryCallerFunction = null; + public String injectionSite = null; + public String retryException = null; + public Integer injectionCount = 0; + + public InjectionPoint(StackSnapshot stackSnapshot, + String retrySourceLocation, + String retryCallerFunction, + String injectionSite, + String retryException, + Integer injectionCount) { + this.stackSnapshot = stackSnapshot; + this.retrySourceLocation = retrySourceLocation; + this.retryCallerFunction = retryCallerFunction; + this.injectionSite = injectionSite; + this.retryException = retryException; + this.injectionCount = injectionCount; + } + + public Boolean isEmpty() { + return ( + this.stackSnapshot.isNullOrEmpty() && + this.retrySourceLocation == null && + this.retryCallerFunction == null && + this.injectionSite == null && + this.retryException == null + ); + } +} \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/InjectionPolicies.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/InjectionPolicies.java new file mode 100644 index 00000000..aca90d41 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/InjectionPolicies.java @@ -0,0 +1,38 @@ +package edu.uchicago.cs.systems.wasabi; + +import java.util.Random; + +abstract class InjectionPolicy { + + public abstract boolean shouldInject(int injectionCount); +} + +class NoInjection extends InjectionPolicy { + @Override + public boolean shouldInject(int injectionCount) { + return false; + } +} + +class InjectForever extends InjectionPolicy { + @Override + public boolean shouldInject(int injectionCount) { + return true; + } +} + +class InjectUpToMaxCount extends InjectionPolicy { + private int maxInjectionCount = 0; + + InjectUpToMaxCount(int maxInjectionCount) { + this.maxInjectionCount = maxInjectionCount; + } + + @Override + public boolean shouldInject(int injectionCount) { + if (injectionCount < this.maxInjectionCount) { + return true; + } + return false; + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/StackSnapshot.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/StackSnapshot.java new file mode 100644 index 00000000..f384e319 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/StackSnapshot.java @@ -0,0 +1,107 @@ +package edu.uchicago.cs.systems.wasabi; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.stream.Collectors; + +class StackSnapshot { + private ArrayList stacktrace; + + public StackSnapshot() { + this.stacktrace = new ArrayList(); + + StackTraceElement[] ste = Thread.currentThread().getStackTrace(); + for (StackTraceElement frame : ste) { + if (!frame.toString().contains("edu.uchicago.cs.systems.wasabi") && + !frame.toString().contains("java.lang.Thread.getStackTrace(Thread.java:")) { + this.stacktrace.add(frame.toString()); + } + } + } + + public StackSnapshot(ArrayList stacktrace) { + this.stacktrace = stacktrace; + } + + public int getSize() { + return this.stacktrace.size(); + } + + public Boolean isNullOrEmpty() { + return this.stacktrace == null || this.stacktrace.isEmpty(); + } + + public String toString() { + return this.stacktrace.stream().map(frame -> "\t" + frame).collect(Collectors.joining("\n")); + } + + public ArrayList getStacktrace() { + return this.stacktrace; + } + + public String serializeTopFrames(int maxLevel) { + ArrayList topOfStack = new ArrayList(); + int level = 0; + + for (String frame : this.stacktrace) { + if (++level > maxLevel) { + break; + } + topOfStack.add(frame); + } + + return topOfStack.stream().map(frame -> "\t" + frame).collect(Collectors.joining("\n")); + } + + public String getFrame(int index) { + if (index >= 0 && index < this.stacktrace.size()) { + return stacktrace.get(index); + } + return null; + } + + public Boolean hasFrame(String target) { + return this.stacktrace.stream().anyMatch(frame -> frame.contains(target)); + } + + public Boolean isEqual(StackSnapshot target) { + if (target.isNullOrEmpty()) { + return false; + } + + if (this.stacktrace.size() != target.stacktrace.size()) { + return false; + } + + for (int i = 0; i < this.stacktrace.size(); ++i) { + if (!this.stacktrace.get(i).equals(target.stacktrace.get(i))) { + return false; + } + } + + return true; + } + + public ArrayList normalizeStackBelowFrame(String target) { + ArrayList normalizedStack = new ArrayList(); + Boolean targetFound = false; + + for (String frame : stacktrace) { + if (frame.contains(target)) { + targetFound = true; + normalizedStack.add(target); + continue; + } + + if (targetFound) { + normalizedStack.add(frame); + } + } + + return normalizedStack; + } + + public static String getQualifiedName(String frame) { + return frame != null ? frame.split("\\(")[0] : null; + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiContext.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiContext.java new file mode 100644 index 00000000..4c63a57f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiContext.java @@ -0,0 +1,120 @@ +package edu.uchicago.cs.systems.wasabi; + +import java.util.ArrayList; +import java.util.concurrent.ConcurrentHashMap; +import java.util.HashMap; +import java.util.Map; +import java.util.Collections; + +import edu.uchicago.cs.systems.wasabi.ConfigParser; +import edu.uchicago.cs.systems.wasabi.WasabiLogger; +import edu.uchicago.cs.systems.wasabi.InjectionPolicy; +import edu.uchicago.cs.systems.wasabi.StackSnapshot; +import edu.uchicago.cs.systems.wasabi.InjectionPoint; +import edu.uchicago.cs.systems.wasabi.ExecutionTrace; + +class WasabiContext { + + private WasabiLogger LOG; + private ConfigParser configParser; + + private final HashingPrimitives hashingPrimitives = new HashingPrimitives(); + + private Map injectionPlan; + private InjectionPolicy injectionPolicy; + + private ExecutionTrace executionTrace = new ExecutionTrace(10); + private ConcurrentHashMap injectionCounts = new ConcurrentHashMap<>(); + + public WasabiContext(WasabiLogger logger, + ConfigParser configParser) { + this.LOG = logger; + this.configParser = configParser; + + int maxInjectionCount = this.configParser.getMaxInjectionCount(); + + String injectionPolicyString = this.configParser.getInjectionPolicy(); + switch (injectionPolicyString) { + case "no-injection": + injectionPolicy = new NoInjection(); + break; + case "forever": + injectionPolicy = new InjectForever(); + break; + case "max-count": + injectionPolicy = new InjectUpToMaxCount(maxInjectionCount); + break; + default: + injectionPolicy = new NoInjection(); + break; + } + + injectionPlan = Collections.unmodifiableMap(this.configParser.getInjectionPlan()); + } + + private Boolean isNullOrEmpty(String str) { + return str == null || str.isEmpty(); + } + + private synchronized int getInjectionCount(ArrayList stacktrace) { + int hval = hashingPrimitives.getHashValue(stacktrace); + return injectionCounts.getOrDefault(hval, 0); + } + + private synchronized int updateInjectionCount(ArrayList stacktrace) { + int hval = hashingPrimitives.getHashValue(stacktrace); + return injectionCounts.compute(hval, (k, v) -> (v == null) ? 1 : v + 1); + } + + public synchronized void addToExecTrace(String opName, int opType, StackSnapshot stackSnapshot) { + long currentTime = System.nanoTime(); + executionTrace.addLast(new OpEntry(opName, opType, currentTime, stackSnapshot)); + } + + public synchronized void addToExecTrace(String opName, int opType, StackSnapshot stackSnapshot, String retryException) { + long currentTime = System.nanoTime(); + executionTrace.addLast(new OpEntry(opName, opType, currentTime, stackSnapshot, retryException)); + } + + public synchronized InjectionPoint getInjectionPoint(String testName, + String injectionSite, + String injectionSourceLocation, + String retryException, + String retryCallerFunction, + StackSnapshot stackSnapshot) { + + if (!injectionPlan.containsKey(injectionSourceLocation)) { + return null; + } + + String retrySourceLocation = injectionPlan.get(injectionSourceLocation).retryCallerFunction; + int injectionCount = getInjectionCount(stackSnapshot.getStacktrace()); + + addToExecTrace(injectionSite, OpEntry.RETRY_CALLER_OP, stackSnapshot, retryException); + + return new InjectionPoint( + stackSnapshot, + retrySourceLocation, + retryCallerFunction, + injectionSite, + retryException, + injectionCount + ); + } + + public Boolean shouldInject(InjectionPoint ipt) { + if (injectionPolicy.shouldInject(ipt.injectionCount)) { + ipt.injectionCount = updateInjectionCount(ipt.stackSnapshot.getStacktrace()); + return true; + } + + return false; + } + + public void printExecTrace(WasabiLogger log, String msg) { + if (executionTrace.getSize() > 0) { + executionTrace.printExecutionTrace(log, msg); + } + } + +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiContextHolder.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiContextHolder.java new file mode 100644 index 00000000..cf900b3c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiContextHolder.java @@ -0,0 +1,7 @@ +package edu.uchicago.cs.systems.wasabi; + +// A simple interface for runnables that can hold a WasabiContext object +public interface WasabiContextHolder { + public void setWasabiContext(WasabiContext ctx); + public WasabiContext getWasabiContext(); + } \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiLogger.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiLogger.java new file mode 100644 index 00000000..ae6e3cca --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiLogger.java @@ -0,0 +1,33 @@ +package edu.uchicago.cs.systems.wasabi; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +class WasabiLogger { + private final Logger LOG = LoggerFactory.getLogger(WasabiLogger.class); + + public static final int LOG_LEVEL_INFO = 1; + public static final int LOG_LEVEL_WARN = 2; + public static final int LOG_LEVEL_DEBUG = 3; + public static final int LOG_LEVEL_ERROR = 4; + + public synchronized void printMessage(int logLevel, String msg) { + long timestamp = System.nanoTime(); + long threadId = Thread.currentThread().getId(); + + switch(logLevel) { + case LOG_LEVEL_INFO: + LOG.info("[wasabi] [" + timestamp + "] [thread=" + threadId + "] " + msg); + break; + case LOG_LEVEL_WARN: + LOG.warn("[wasabi] [" + timestamp + "] [thread=" + threadId + "] " + msg); + break; + case LOG_LEVEL_DEBUG: + LOG.debug("[wasabi] [" + timestamp + "] [thread=" + threadId + "] " + msg); + break; + case LOG_LEVEL_ERROR: + LOG.error("[wasabi] [" + timestamp + "] [thread=" + threadId + "] " + msg); + break; + } + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestExecutionTrace.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestExecutionTrace.java new file mode 100644 index 00000000..05f1ba62 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestExecutionTrace.java @@ -0,0 +1,261 @@ +package edu.uchicago.cs.systems.wasabi; + +import java.util.ArrayList; +import edu.uchicago.cs.systems.wasabi.StackSnapshot; +import edu.uchicago.cs.systems.wasabi.ExecutionTrace; + +import static org.junit.Assert.*; +import org.junit.Test; + +public class TestExecutionTrace { + + @Test + public void testIsSameOpEntry() { + OpEntry testOpA = new OpEntry( + "baz(Baz.java:42)", + OpEntry.RETRY_CALLER_OP, + 0L, + new StackSnapshot( + new ArrayList() { + { + add("baz(Baz.java:42)"); + add("bar(Bar.java:42)"); + add("foo(Foo.java:42)"); + } + } + ), + "IOException" + ); + OpEntry testOpB = new OpEntry( + "baz(Baz.java:42)", + OpEntry.RETRY_CALLER_OP, + 0L, + new StackSnapshot( + new ArrayList() { + { + add("baz(Baz.java:42)"); + add("bar(Bar.java:42)"); + add("foo(Foo.java:42)"); + } + } + ), + "RuntimeException" + ); + + assertTrue(testOpA.isSameOp(testOpA)); + assertFalse(testOpA.isSameOp(testOpB)); + } + + @Test + public void testHasFrame() { + OpEntry testOp = new OpEntry( + "baz(Baz.java:42)", + OpEntry.RETRY_CALLER_OP, + 0L, + new StackSnapshot( + new ArrayList() { + { + add("baz(Baz.java:42)"); + add("bar(Bar.java:42)"); + add("foo(Foo.java:42)"); + } + } + ), + "Exception" + ); + + assertTrue(testOp.hasFrame("bar(Bar.java:42)")); + assertFalse(testOp.hasFrame("not-a-frame")); + } + + @Test + public void testIsOfType() { + OpEntry testOp = new OpEntry( + "foo(Foo.java:42)", + OpEntry.RETRY_CALLER_OP, + 0L, + new StackSnapshot( + new ArrayList() { + { + add("foo(Foo.java:42)"); + } + } + ), + "Exception" + ); + + assertTrue(testOp.isOfType(OpEntry.RETRY_CALLER_OP)); + assertFalse(testOp.isOfType(OpEntry.THREAD_SLEEP_OP)); + } + + @Test + public void testIsNullOrEmpty() { + ExecutionTrace execTrace = new ExecutionTrace(); + assertTrue(execTrace.isNullOrEmpty()); + } + + @Test + public void testCheckIfOpIsOfType() { + ExecutionTrace execTrace = new ExecutionTrace(); + execTrace.addLast( + new OpEntry( + "foo(Foo.java:42)", + OpEntry.RETRY_CALLER_OP, + 0L, + new StackSnapshot( + new ArrayList() { + { + add("foo(Foo.java:42)"); + } + } + ), + "Exception" + ) + ); + + assertEquals(execTrace.getSize(), 1); + assertTrue(execTrace.checkIfOpIsOfType(0, OpEntry.RETRY_CALLER_OP)); + assertFalse(execTrace.checkIfOpIsOfType(1, OpEntry.RETRY_CALLER_OP)); + assertFalse(execTrace.checkIfOpIsOfType(0, OpEntry.THREAD_SLEEP_OP)); + } + + @Test + public void testCheckIfOpHasFrame() { + ExecutionTrace execTrace = new ExecutionTrace(); + execTrace.addLast( + new OpEntry( + "foo(Foo.java:42)", + OpEntry.RETRY_CALLER_OP, + 0L, + new StackSnapshot( + new ArrayList() { + { + add("foo(Foo.java:42)"); + } + } + ), + "Exception" + ) + ); + + assertEquals(execTrace.getSize(), 1); + assertTrue(execTrace.checkIfOpHasFrame(0, "foo(Foo.java:42)")); + assertFalse(execTrace.checkIfOpHasFrame(1, "foo(Foo.java:42)")); + assertFalse(execTrace.checkIfOpHasFrame(0, "not-a-frame")); + } + + @Test + public void testCheckIfOpsAreEqual() { + ExecutionTrace execTrace = new ExecutionTrace(); + execTrace.addLast( + new OpEntry( + "foo(Foo.java:42)", + OpEntry.RETRY_CALLER_OP, + 0L, + new StackSnapshot( + new ArrayList() { + { + add("foo(Foo.java:42)"); + } + } + ), + "Exception" + ) + ); + execTrace.addLast( + new OpEntry( + "Thread.sleep(Bar.java:43)", + OpEntry.THREAD_SLEEP_OP, + 0L, + new StackSnapshot( + new ArrayList() { + { + add("Thread.sleep(Bar.java:43)"); + add("bar(Bar.java:42)"); + } + } + ), + null + ) + ); + execTrace.addLast( + new OpEntry( + "foo(Foo.java:42)", + OpEntry.RETRY_CALLER_OP, + 0L, + new StackSnapshot( + new ArrayList() { + { + add("foo(Foo.java:42)"); + } + } + ), + "Exception" + ) + ); + + assertEquals(execTrace.getSize(), 3); + assertTrue(execTrace.checkIfOpsAreEqual(0, 2)); + assertFalse(execTrace.checkIfOpsAreEqual(1, 2)); + } + + @Test + public void testMaxOpCacheSize() { + int maxOpCacheSize = 50; + ExecutionTrace execTrace = new ExecutionTrace(maxOpCacheSize); + execTrace.addLast( + new OpEntry( + "foo(Foo.java:42)", + OpEntry.RETRY_CALLER_OP, + 0L, + new StackSnapshot( + new ArrayList() { + { + add("foo(Foo.java:42)"); + } + } + ), + "Exception" + ) + ); + for (int i = 1; i < maxOpCacheSize; ++i) { + execTrace.addLast( + new OpEntry( + "bar(Bar.java:42)", + OpEntry.RETRY_CALLER_OP, + 0L, + new StackSnapshot( + new ArrayList() { + { + add("bar(Bar.java:42)"); + } + } + ), + "Exception" + ) + ); + } + + assertEquals(execTrace.getSize(), maxOpCacheSize); + assertTrue(execTrace.checkIfOpHasFrame(0, "foo(Foo.java:42)")); + + execTrace.addLast( + new OpEntry( + "bar(Bar.java:42)", + OpEntry.RETRY_CALLER_OP, + 0L, + new StackSnapshot( + new ArrayList() { + { + add("bar(Bar.java:42)"); + } + } + ), + "Exception" + ) + ); + + assertEquals(execTrace.getSize(), maxOpCacheSize); + assertTrue(execTrace.checkIfOpHasFrame(0, "bar(Bar.java:42)")); + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestInjectionPolicies.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestInjectionPolicies.java new file mode 100644 index 00000000..795369aa --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestInjectionPolicies.java @@ -0,0 +1,32 @@ +package edu.uchicago.cs.systems.wasabi; + +import java.util.ArrayList; +import edu.uchicago.cs.systems.wasabi.StackSnapshot; + +import static org.junit.Assert.*; +import org.junit.Test; + +public class TestInjectionPolicies { + + int fakeCount = 1; + int fakeBound = 2; + + @Test + public void testNoInjectionPolicy() { + InjectionPolicy policy = new NoInjection(); + assertFalse(policy.shouldInject(this.fakeCount)); + } + + @Test + public void testInjectForeverPolicy() { + InjectionPolicy policy = new InjectForever(); + assertTrue(policy.shouldInject(this.fakeCount)); + } + + @Test + public void testInjectUpToMaxCountPolicy() { + InjectionPolicy policy = new InjectUpToMaxCount(this.fakeBound); + assertTrue(policy.shouldInject(this.fakeCount)); + assertFalse(policy.shouldInject(this.fakeCount + this.fakeBound)); + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestStackSnapshot.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestStackSnapshot.java new file mode 100644 index 00000000..aea99e87 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestStackSnapshot.java @@ -0,0 +1,69 @@ +package edu.uchicago.cs.systems.wasabi; + +import java.util.ArrayList; +import edu.uchicago.cs.systems.wasabi.StackSnapshot; + +import static org.junit.Assert.*; +import org.junit.Test; + +public class TestStackSnapshot { + + @Test + public void testIsNullOrEmpty() { + StackSnapshot stackSnapshot = new StackSnapshot(); + assertFalse(stackSnapshot.isNullOrEmpty()); + + StackSnapshot emptyStackSnapshot = new StackSnapshot(null); + assertTrue(emptyStackSnapshot.isNullOrEmpty()); + } + + @Test + public void testHasFrame() { + ArrayList testStack = new ArrayList() { + { + add("baz(Baz.java:42)"); + add("bar(Bar.java:42)"); + add("foo(Foo.java:42)"); + } + }; + + StackSnapshot stackSnapshot = new StackSnapshot(testStack); + for (String frame : testStack) { + assertTrue(stackSnapshot.hasFrame(frame)); + } + + assertFalse(stackSnapshot.hasFrame("not-a-frame")); + } + + @Test + public void testNormalizeStackBelowFrame() { + ArrayList testStack = new ArrayList() { + { + add("baz(Baz.java:42)"); + add("bar(Bar.java:42)"); + add("foo(Foo.java:42)"); + } + }; + + StackSnapshot stackSnapshot = new StackSnapshot(testStack); + + assertEquals( + String.join(" ! ", stackSnapshot.normalizeStackBelowFrame("bar")), + String.join(" ! ", new ArrayList() { + { + add("bar"); + add("foo(Foo.java:42)"); + } + }) + ); + } + + @Test + public void testGetQualifiedName() { + String frameFoo = "foo(Foo.java:42)"; + String frameBar = "bar[0](Bar.java:42)"; + + assertEquals(StackSnapshot.getQualifiedName(frameFoo), "foo"); + assertEquals(StackSnapshot.getQualifiedName(frameBar), "bar[0]"); + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestThrowableCallback.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestThrowableCallback.java new file mode 100644 index 00000000..a2c71cfc --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestThrowableCallback.java @@ -0,0 +1,27 @@ +package edu.uchicago.cs.systems.wasabi; + +import java.lang.Thread; + +import static org.junit.Assert.*; +import org.junit.Test; + +public class TestThrowableCallback { + + @Test + public void testShouldNotThrowException() throws Exception { + try { + shouldNotThrow(); + } catch (Exception e) { + // do nothing + } + } + + private void shouldNotThrow() { + try { + Thread.sleep(5); + } catch (InterruptedException e) { + // do nothing + } + } + +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestWasabiContext.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestWasabiContext.java new file mode 100644 index 00000000..c4d648cb --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/src/test/java/edu/uchicago/cs/systems/wasabi/TestWasabiContext.java @@ -0,0 +1,143 @@ +package edu.uchicago.cs.systems.wasabi; + +import edu.uchicago.cs.systems.wasabi.InjectionPoint; +import edu.uchicago.cs.systems.wasabi.WasabiContext; +import edu.uchicago.cs.systems.wasabi.WasabiLogger; + +import java.io.FileWriter; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import static org.junit.Assert.*; + +public class TestWasabiContext { + + private final WasabiLogger LOG = new WasabiLogger(); + + private final String testConfigFile = "./_test.conf"; + private final String testRetryDataFile = "./_test_retry_locations.data"; + private final String testRetryPolicy = "max-count"; + private final int testMaxCount = 42; + + private ConfigParser configParser; + + private void generateConfigFile() { + try (FileWriter writer = new FileWriter(this.testConfigFile)) { + writer.append("retry_data_file: " + this.testRetryDataFile + "\n"); + writer.append("injection_policy: " + this.testRetryPolicy + "\n"); + writer.append("max_injection_count: " + String.valueOf(this.testMaxCount) + "\n"); + } catch (IOException e) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("[wasabi] Error occurred while generating the retry data file: %s", e.getMessage()) + ); + e.printStackTrace(); + } + } + + private void generateDataRetryFile() { + StackSnapshot stackSnapshot = new StackSnapshot(); + String[][] records = { + { + "test_retry_location:TestWasabiContext.javaL#0", // retry location + StackSnapshot.getQualifiedName(stackSnapshot.getFrame(1)), // enclosing method + StackSnapshot.getQualifiedName(stackSnapshot.getFrame(0)), // retried method + "SocketException", // exception + "1.0", // injection probability + "0" // test coverage metrics + } + }; + + try (FileWriter writer = new FileWriter(this.testRetryDataFile)) { + writer.append("Retry location!!!Enclosing method!!!Retried method!!!Exception!!!Injection probability!!!Test coverage\n"); + + for (String[] record : records) { + writer.append( + String.format("%s!!!%s!!!%s!!!%s!!!%s!!!%s\n", record[0], record[1], record[2], record[3], record[4], record[5]) + ); + } + } catch (IOException e) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("[wasabi] Error occurred while generating the retry data file: %s", e.getMessage()) + ); + e.printStackTrace(); + } + } + + @Before + public void startUp() { + generateConfigFile(); + generateDataRetryFile(); + this.configParser = new ConfigParser(LOG, testConfigFile); + } + + /* + @Test + public void testShouldInject() { + WasabiContext wasabiCtx = new WasabiContext(this.LOG, this.configParser); + InjectionPoint validInjectionPoint = wasabiCtx.getInjectionPoint(); + + assertTrue(validInjectionPoint != null); + assertTrue(wasabiCtx.shouldInject(validInjectionPoint)); + + StackSnapshot stackSnapshot = new StackSnapshot(); + InjectionPoint invalidInjectionPoint = new InjectionPoint( + stackSnapshot, + "FakeRetryLocation", + "FakeRetryCaller", + "FakeRetriedCallee", + "FakeException", + 100 // injection count + ); + + assertFalse(wasabiCtx.shouldInject(invalidInjectionPoint)); + } + */ + + /* + @Test + public void testUpdateInjectionCount() { + WasabiContext wasabiCtx = new WasabiContext(this.LOG, this.configParser); + InjectionPoint ipt = wasabiCtx.getInjectionPoint(); // new injection point + int initialCount = ipt.injectionCount; + + ipt = wasabiCtx.getInjectionPoint(); // new injeciton point, same retry context + assertTrue(wasabiCtx.shouldInject(ipt)); + assertEquals(initialCount + 1, ipt.injectionCount.intValue()); + + StackSnapshot stackSnapshot = new StackSnapshot(); + int uniqueId = HashingPrimitives.getHashValue(stackSnapshot.normalizeStackBelowFrame(stackSnapshot.getFrame(1))); + wasabiCtx.addToExecTrace(uniqueId, OpEntry.THREAD_SLEEP_OP, stackSnapshot); // some sleep operations in between + wasabiCtx.addToExecTrace(uniqueId, OpEntry.THREAD_SLEEP_OP, stackSnapshot); + wasabiCtx.addToExecTrace(uniqueId, OpEntry.THREAD_SLEEP_OP, stackSnapshot); + + ipt = wasabiCtx.getInjectionPoint(); // new injeciton point, same retry context + assertTrue(wasabiCtx.shouldInject(ipt)); + assertEquals(initialCount + 2, ipt.injectionCount.intValue()); + } + */ + + @After + public void tearDown() { + try { + Path path = Paths.get(this.testRetryDataFile); + Files.deleteIfExists(path); + + path = Paths.get(this.testConfigFile); + Files.deleteIfExists(path); + + } catch (IOException e) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("[wasabi] Error occurred while deleting test configuration files: %s", e.getMessage()) + ); + e.printStackTrace(); + } + } +} \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/builddef.lst b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/builddef.lst new file mode 100644 index 00000000..37475da4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/builddef.lst @@ -0,0 +1,13 @@ +-Xajruntimetarget:1.5 +-encoding +UTF-8 +-showWeaveInfo +-verbose +-1.8 +-classpath +/home/cc/.m2/repository/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar:/home/cc/.m2/repository/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar:/home/cc/.m2/repository/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar:/home/cc/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/home/cc/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/home/cc/.m2/repository/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar:/home/cc/.m2/repository/org/apache/hive/hive-metastore/4.0.0-beta-1/hive-metastore-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/apache/hive/hive-common/4.0.0-beta-1/hive-common-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/apache/hive/hive-classification/4.0.0-beta-1/hive-classification-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/apache/hive/hive-storage-api/4.0.0-beta-1/hive-storage-api-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:/home/cc/.m2/repository/org/apache/orc/orc-core/1.8.3/orc-core-1.8.3.jar:/home/cc/.m2/repository/org/apache/orc/orc-shims/1.8.3/orc-shims-1.8.3.jar:/home/cc/.m2/repository/io/airlift/aircompressor/0.21/aircompressor-0.21.jar:/home/cc/.m2/repository/org/jetbrains/annotations/17.0.0/annotations-17.0.0.jar:/home/cc/.m2/repository/org/threeten/threeten-extra/1.7.1/threeten-extra-1.7.1.jar:/home/cc/.m2/repository/jline/jline/2.14.6/jline-2.14.6.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-http/9.4.40.v20210413/jetty-http-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-rewrite/9.4.40.v20210413/jetty-rewrite-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-webapp/9.4.40.v20210413/jetty-webapp-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-xml/9.4.40.v20210413/jetty-xml-9.4.40.v20210413.jar:/home/cc/.m2/repository/joda-time/joda-time/2.9.9/joda-time-2.9.9.jar:/home/cc/.m2/repository/org/apache/logging/log4j/log4j-web/2.18.0/log4j-web-2.18.0.jar:/home/cc/.m2/repository/org/apache/tez/tez-api/0.10.2/tez-api-0.10.2.jar:/home/cc/.m2/repository/org/apache/hadoop/hadoop-auth/3.3.1/hadoop-auth-3.3.1.jar:/home/cc/.m2/repository/org/apache/hadoop/hadoop-annotations/3.3.1/hadoop-annotations-3.3.1.jar:/home/cc/.m2/repository/org/apache/hadoop/hadoop-yarn-api/3.3.1/hadoop-yarn-api-3.3.1.jar:/home/cc/.m2/repository/javax/xml/bind/jaxb-api/2.2.11/jaxb-api-2.2.11.jar:/home/cc/.m2/repository/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar:/home/cc/.m2/repository/org/apache/hadoop/hadoop-yarn-common/3.3.1/hadoop-yarn-common-3.3.1.jar:/home/cc/.m2/repository/com/google/inject/extensions/guice-servlet/4.0/guice-servlet-4.0.jar:/home/cc/.m2/repository/com/google/inject/guice/4.0/guice-4.0.jar:/home/cc/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/home/cc/.m2/repository/com/sun/jersey/contribs/jersey-guice/1.19/jersey-guice-1.19.jar:/home/cc/.m2/repository/org/apache/hadoop/hadoop-yarn-client/3.3.1/hadoop-yarn-client-3.3.1.jar:/home/cc/.m2/repository/org/jline/jline/3.9.0/jline-3.9.0.jar:/home/cc/.m2/repository/com/sun/jersey/jersey-json/1.19/jersey-json-1.19.jar:/home/cc/.m2/repository/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar:/home/cc/.m2/repository/org/codehaus/jackson/jackson-core-asl/1.9.2/jackson-core-asl-1.9.2.jar:/home/cc/.m2/repository/org/codehaus/jackson/jackson-mapper-asl/1.9.2/jackson-mapper-asl-1.9.2.jar:/home/cc/.m2/repository/org/codehaus/jackson/jackson-jaxrs/1.9.2/jackson-jaxrs-1.9.2.jar:/home/cc/.m2/repository/org/codehaus/jackson/jackson-xc/1.9.2/jackson-xc-1.9.2.jar:/home/cc/.m2/repository/org/apache/hadoop/hadoop-hdfs-client/3.3.1/hadoop-hdfs-client-3.3.1.jar:/home/cc/.m2/repository/com/squareup/okhttp/okhttp/2.7.5/okhttp-2.7.5.jar:/home/cc/.m2/repository/com/squareup/okio/okio/1.6.0/okio-1.6.0.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/../lib/tools.jar:/home/cc/.m2/repository/org/fusesource/jansi/jansi/2.3.4/jansi-2.3.4.jar:/home/cc/.m2/repository/com/tdunning/json/1.8/json-1.8.jar:/home/cc/.m2/repository/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.jar:/home/cc/.m2/repository/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.jar:/home/cc/.m2/repository/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.jar:/home/cc/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.13.5/jackson-databind-2.13.5.jar:/home/cc/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.13.5/jackson-core-2.13.5.jar:/home/cc/.m2/repository/com/github/joshelser/dropwizard-metrics-hadoop-metrics2-reporter/0.1.2/dropwizard-metrics-hadoop-metrics2-reporter-0.1.2.jar:/home/cc/.m2/repository/org/apache/hive/hive-serde/4.0.0-beta-1/hive-serde-4.0.0-beta-1.jar:/home/cc/.m2/repository/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.jar:/home/cc/.m2/repository/org/apache/arrow/arrow-vector/12.0.0/arrow-vector-12.0.0.jar:/home/cc/.m2/repository/org/apache/arrow/arrow-format/12.0.0/arrow-format-12.0.0.jar:/home/cc/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar:/home/cc/.m2/repository/com/carrotsearch/hppc/0.7.2/hppc-0.7.2.jar:/home/cc/.m2/repository/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.jar:/home/cc/.m2/repository/org/apache/avro/avro/1.11.1/avro-1.11.1.jar:/home/cc/.m2/repository/net/sf/opencsv/opencsv/2.3/opencsv-2.3.jar:/home/cc/.m2/repository/org/apache/parquet/parquet-hadoop-bundle/1.13.0/parquet-hadoop-bundle-1.13.0.jar:/home/cc/.m2/repository/com/esri/geometry/esri-geometry-api/2.2.4/esri-geometry-api-2.2.4.jar:/home/cc/.m2/repository/org/apache/hive/hive-shims/4.0.0-beta-1/hive-shims-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/apache/hive/shims/hive-shims-common/4.0.0-beta-1/hive-shims-common-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/apache/hive/hive-standalone-metastore-common/4.0.0-beta-1/hive-standalone-metastore-common-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/apache/commons/commons-jexl3/3.3/commons-jexl3-3.3.jar:/home/cc/.m2/repository/io/grpc/grpc-netty-shaded/1.51.0/grpc-netty-shaded-1.51.0.jar:/home/cc/.m2/repository/io/grpc/grpc-core/1.51.0/grpc-core-1.51.0.jar:/home/cc/.m2/repository/io/grpc/grpc-protobuf/1.51.0/grpc-protobuf-1.51.0.jar:/home/cc/.m2/repository/io/grpc/grpc-api/1.51.0/grpc-api-1.51.0.jar:/home/cc/.m2/repository/io/grpc/grpc-context/1.51.0/grpc-context-1.51.0.jar:/home/cc/.m2/repository/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0.jar:/home/cc/.m2/repository/io/grpc/grpc-protobuf-lite/1.51.0/grpc-protobuf-lite-1.51.0.jar:/home/cc/.m2/repository/io/grpc/grpc-stub/1.51.0/grpc-stub-1.51.0.jar:/home/cc/.m2/repository/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7.jar:/home/cc/.m2/repository/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar:/home/cc/.m2/repository/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar:/home/cc/.m2/repository/com/github/ben-manes/caffeine/caffeine/2.8.4/caffeine-2.8.4.jar:/home/cc/.m2/repository/org/checkerframework/checker-qual/3.4.0/checker-qual-3.4.0.jar:/home/cc/.m2/repository/javolution/javolution/5.5.1/javolution-5.5.1.jar:/home/cc/.m2/repository/com/google/guava/guava/22.0/guava-22.0.jar:/home/cc/.m2/repository/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar:/home/cc/.m2/repository/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar:/home/cc/.m2/repository/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar:/home/cc/.m2/repository/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.jar:/home/cc/.m2/repository/org/apache/thrift/libfb303/0.9.3/libfb303-0.9.3.jar:/home/cc/.m2/repository/org/apache/hive/hive-service/4.0.0-beta-1/hive-service-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/apache/hive/hive-service-rpc/4.0.0-beta-1/hive-service-rpc-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/apache/hive/hive-llap-server/4.0.0-beta-1/hive-llap-server-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1.jar:/home/cc/.m2/repository/io/jsonwebtoken/jjwt-api/0.10.5/jjwt-api-0.10.5.jar:/home/cc/.m2/repository/io/jsonwebtoken/jjwt-impl/0.10.5/jjwt-impl-0.10.5.jar:/home/cc/.m2/repository/io/jsonwebtoken/jjwt-jackson/0.10.5/jjwt-jackson-0.10.5.jar:/home/cc/.m2/repository/org/apache/hive/hive-llap-client/4.0.0-beta-1/hive-llap-client-4.0.0-beta-1.jar:/home/cc/.m2/repository/io/netty/netty-all/4.1.77.Final/netty-all-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-codec-dns/4.1.77.Final/netty-codec-dns-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-codec-haproxy/4.1.77.Final/netty-codec-haproxy-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-codec-http/4.1.77.Final/netty-codec-http-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-codec-http2/4.1.77.Final/netty-codec-http2-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-codec-memcache/4.1.77.Final/netty-codec-memcache-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-codec-mqtt/4.1.77.Final/netty-codec-mqtt-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-codec-redis/4.1.77.Final/netty-codec-redis-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-codec-smtp/4.1.77.Final/netty-codec-smtp-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-codec-socks/4.1.77.Final/netty-codec-socks-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-codec-stomp/4.1.77.Final/netty-codec-stomp-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-codec-xml/4.1.77.Final/netty-codec-xml-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-handler-proxy/4.1.77.Final/netty-handler-proxy-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-resolver-dns/4.1.77.Final/netty-resolver-dns-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-transport-rxtx/4.1.77.Final/netty-transport-rxtx-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-transport-sctp/4.1.77.Final/netty-transport-sctp-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-transport-udt/4.1.77.Final/netty-transport-udt-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-transport-classes-kqueue/4.1.77.Final/netty-transport-classes-kqueue-4.1.77.Final.jar:/home/cc/.m2/repository/io/netty/netty-resolver-dns-classes-macos/4.1.77.Final/netty-resolver-dns-classes-macos-4.1.77.Final.jar:/home/cc/.m2/repository/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-util/9.4.40.v20210413/jetty-util-9.4.40.v20210413.jar:/home/cc/.m2/repository/com/lmax/disruptor/3.3.7/disruptor-3.3.7.jar:/home/cc/.m2/repository/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1-tests.jar:/home/cc/.m2/repository/org/apache/hive/hive-hplsql/4.0.0-beta-1/hive-hplsql-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/antlr/antlr4-runtime/4.9.3/antlr4-runtime-4.9.3.jar:/home/cc/.m2/repository/com/nimbusds/nimbus-jose-jwt/9.31/nimbus-jose-jwt-9.31.jar:/home/cc/.m2/repository/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar:/home/cc/.m2/repository/net/sf/jpam/jpam/1.1/jpam-1.1.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-server/9.4.40.v20210413/jetty-server-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-io/9.4.40.v20210413/jetty-io-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-servlet/9.4.40.v20210413/jetty-servlet-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-security/9.4.40.v20210413/jetty-security-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-util-ajax/9.4.40.v20210413/jetty-util-ajax-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-runner/9.4.40.v20210413/jetty-runner-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-plus/9.4.40.v20210413/jetty-plus-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-annotations/9.4.40.v20210413/jetty-annotations-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/ow2/asm/asm/9.0/asm-9.0.jar:/home/cc/.m2/repository/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.jar:/home/cc/.m2/repository/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.jar:/home/cc/.m2/repository/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-jaas/9.4.40.v20210413/jetty-jaas-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/websocket/websocket-server/9.4.40.v20210413/websocket-server-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/websocket/websocket-common/9.4.40.v20210413/websocket-common-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/websocket/websocket-api/9.4.40.v20210413/websocket-api-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/websocket/websocket-client/9.4.40.v20210413/websocket-client-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-client/9.4.40.v20210413/jetty-client-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/websocket/websocket-servlet/9.4.40.v20210413/websocket-servlet-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/jetty-jndi/9.4.40.v20210413/jetty-jndi-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/apache-jsp/9.4.40.v20210413/apache-jsp-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/eclipse/jetty/toolchain/jetty-schemas/3.1.2/jetty-schemas-3.1.2.jar:/home/cc/.m2/repository/org/eclipse/jetty/apache-jstl/9.4.40.v20210413/apache-jstl-9.4.40.v20210413.jar:/home/cc/.m2/repository/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.jar:/home/cc/.m2/repository/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.jar:/home/cc/.m2/repository/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar:/home/cc/.m2/repository/org/apache/curator/curator-framework/5.2.0/curator-framework-5.2.0.jar:/home/cc/.m2/repository/org/apache/curator/curator-client/5.2.0/curator-client-5.2.0.jar:/home/cc/.m2/repository/org/apache/curator/curator-recipes/5.2.0/curator-recipes-5.2.0.jar:/home/cc/.m2/repository/org/pac4j/pac4j-saml-opensamlv3/4.5.5/pac4j-saml-opensamlv3-4.5.5.jar:/home/cc/.m2/repository/org/pac4j/pac4j-core/4.5.5/pac4j-core-4.5.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-core/3.4.5/opensaml-core-3.4.5.jar:/home/cc/.m2/repository/net/shibboleth/utilities/java-support/7.5.1/java-support-7.5.1.jar:/home/cc/.m2/repository/org/opensaml/opensaml-saml-api/3.4.5/opensaml-saml-api-3.4.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-storage-api/3.4.5/opensaml-storage-api-3.4.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-saml-impl/3.4.5/opensaml-saml-impl-3.4.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-soap-impl/3.4.5/opensaml-soap-impl-3.4.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-soap-api/3.4.5/opensaml-soap-api-3.4.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-xmlsec-api/3.4.5/opensaml-xmlsec-api-3.4.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-security-api/3.4.5/opensaml-security-api-3.4.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-security-impl/3.4.5/opensaml-security-impl-3.4.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-profile-api/3.4.5/opensaml-profile-api-3.4.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-profile-impl/3.4.5/opensaml-profile-impl-3.4.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-messaging-api/3.4.5/opensaml-messaging-api-3.4.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-messaging-impl/3.4.5/opensaml-messaging-impl-3.4.5.jar:/home/cc/.m2/repository/org/opensaml/opensaml-storage-impl/3.4.5/opensaml-storage-impl-3.4.5.jar:/home/cc/.m2/repository/org/ldaptive/ldaptive/1.0.13/ldaptive-1.0.13.jar:/home/cc/.m2/repository/javax/json/javax.json-api/1.0/javax.json-api-1.0.jar:/home/cc/.m2/repository/net/spy/spymemcached/2.12.3/spymemcached-2.12.3.jar:/home/cc/.m2/repository/org/opensaml/opensaml-xmlsec-impl/3.4.5/opensaml-xmlsec-impl-3.4.5.jar:/home/cc/.m2/repository/org/cryptacular/cryptacular/1.2.4/cryptacular-1.2.4.jar:/home/cc/.m2/repository/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.jar:/home/cc/.m2/repository/com/beust/jcommander/1.48/jcommander-1.48.jar:/home/cc/.m2/repository/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.jar:/home/cc/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.jar:/home/cc/.m2/repository/org/apache/santuario/xmlsec/2.3.0/xmlsec-2.3.0.jar:/home/cc/.m2/repository/org/jamon/jamon-runtime/2.4.1/jamon-runtime-2.4.1.jar:/home/cc/.m2/repository/org/apache/hive/hive-exec/4.0.0-beta-1/hive-exec-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/apache/atlas/atlas-client-v2/2.1.0/atlas-client-v2-2.1.0.jar:/home/cc/.m2/repository/cglib/cglib/2.2.2/cglib-2.2.2.jar:/home/cc/.m2/repository/asm/asm/3.3.1/asm-3.3.1.jar:/home/cc/.m2/repository/org/apache/atlas/atlas-client-common/2.1.0/atlas-client-common-2.1.0.jar:/home/cc/.m2/repository/com/sun/jersey/jersey-client/1.19/jersey-client-1.19.jar:/home/cc/.m2/repository/org/apache/atlas/atlas-intg/2.1.0/atlas-intg-2.1.0.jar:/home/cc/.m2/repository/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar:/home/cc/.m2/repository/org/apache/hadoop/hadoop-common/3.1.1/hadoop-common-3.1.1.jar:/home/cc/.m2/repository/commons-net/commons-net/3.6/commons-net-3.6.jar:/home/cc/.m2/repository/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.jar:/home/cc/.m2/repository/com/sun/jersey/jersey-server/1.19/jersey-server-1.19.jar:/home/cc/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/home/cc/.m2/repository/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar:/home/cc/.m2/repository/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.jar:/home/cc/.m2/repository/com/google/re2j/re2j/1.1/re2j-1.1.jar:/home/cc/.m2/repository/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar:/home/cc/.m2/repository/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.jar:/home/cc/.m2/repository/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar:/home/cc/.m2/repository/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar:/home/cc/.m2/repository/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar:/home/cc/.m2/repository/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar:/home/cc/.m2/repository/commons-validator/commons-validator/1.6/commons-validator-1.6.jar:/home/cc/.m2/repository/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar:/home/cc/.m2/repository/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.9/jackson-jaxrs-base-2.9.9.jar:/home/cc/.m2/repository/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.9/jackson-jaxrs-json-provider-2.9.9.jar:/home/cc/.m2/repository/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.9/jackson-module-jaxb-annotations-2.9.9.jar:/home/cc/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.9/jackson-annotations-2.9.9.jar:/home/cc/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/home/cc/.m2/repository/org/springframework/spring-context/4.3.20.RELEASE/spring-context-4.3.20.RELEASE.jar:/home/cc/.m2/repository/org/springframework/spring-aop/4.3.20.RELEASE/spring-aop-4.3.20.RELEASE.jar:/home/cc/.m2/repository/org/springframework/spring-beans/4.3.20.RELEASE/spring-beans-4.3.20.RELEASE.jar:/home/cc/.m2/repository/org/springframework/spring-core/4.3.20.RELEASE/spring-core-4.3.20.RELEASE.jar:/home/cc/.m2/repository/org/springframework/spring-expression/4.3.20.RELEASE/spring-expression-4.3.20.RELEASE.jar:/home/cc/.m2/repository/commons-configuration/commons-configuration/1.10/commons-configuration-1.10.jar:/home/cc/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/home/cc/.m2/repository/org/apache/commons/commons-dbcp2/2.9.0/commons-dbcp2-2.9.0.jar:/home/cc/.m2/repository/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar:/home/cc/.m2/repository/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar:/home/cc/.m2/repository/org/apache/hive/hive-vector-code-gen/4.0.0-beta-1/hive-vector-code-gen-4.0.0-beta-1.jar:/home/cc/.m2/repository/org/apache/hive/hive-llap-tez/4.0.0-beta-1/hive-llap-tez-4.0.0-beta-1.jar:/home/cc/.m2/repository/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/1.0.1/aws-secretsmanager-caching-java-1.0.1.jar:/home/cc/.m2/repository/commons-io/commons-io/2.12.0/commons-io-2.12.0.jar:/home/cc/.m2/repository/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar:/home/cc/.m2/repository/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar:/home/cc/.m2/repository/org/apache/logging/log4j/log4j-1.2-api/2.18.0/log4j-1.2-api-2.18.0.jar:/home/cc/.m2/repository/org/apache/logging/log4j/log4j-api/2.18.0/log4j-api-2.18.0.jar:/home/cc/.m2/repository/org/apache/logging/log4j/log4j-core/2.18.0/log4j-core-2.18.0.jar:/home/cc/.m2/repository/org/apache/logging/log4j/log4j-slf4j-impl/2.18.0/log4j-slf4j-impl-2.18.0.jar:/home/cc/.m2/repository/org/antlr/ST4/4.0.4/ST4-4.0.4.jar:/home/cc/.m2/repository/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar:/home/cc/.m2/repository/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.jar:/home/cc/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/home/cc/.m2/repository/org/apache/ant/ant/1.10.13/ant-1.10.13.jar:/home/cc/.m2/repository/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.jar:/home/cc/.m2/repository/org/apache/commons/commons-compress/1.23.0/commons-compress-1.23.0.jar:/home/cc/.m2/repository/org/apache/hadoop/hadoop-yarn-registry/3.3.1/hadoop-yarn-registry-3.3.1.jar:/home/cc/.m2/repository/org/apache/hadoop/hadoop-registry/3.3.1/hadoop-registry-3.3.1.jar:/home/cc/.m2/repository/commons-daemon/commons-daemon/1.0.13/commons-daemon-1.0.13.jar:/home/cc/.m2/repository/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar:/home/cc/.m2/repository/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar:/home/cc/.m2/repository/org/apache/ivy/ivy/2.5.1/ivy-2.5.1.jar:/home/cc/.m2/repository/org/apache/zookeeper/zookeeper/3.7.1/zookeeper-3.7.1.jar:/home/cc/.m2/repository/org/apache/zookeeper/zookeeper-jute/3.7.1/zookeeper-jute-3.7.1.jar:/home/cc/.m2/repository/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.jar:/home/cc/.m2/repository/io/netty/netty-handler/4.1.76.Final/netty-handler-4.1.76.Final.jar:/home/cc/.m2/repository/io/netty/netty-transport-native-epoll/4.1.76.Final/netty-transport-native-epoll-4.1.76.Final.jar:/home/cc/.m2/repository/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.jar:/home/cc/.m2/repository/org/datanucleus/datanucleus-core/5.2.10/datanucleus-core-5.2.10.jar:/home/cc/.m2/repository/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar:/home/cc/.m2/repository/stax/stax-api/1.0.1/stax-api-1.0.1.jar:/home/cc/.m2/repository/org/apache/arrow/arrow-memory-netty/12.0.0/arrow-memory-netty-12.0.0.jar:/home/cc/.m2/repository/org/apache/arrow/arrow-memory-core/12.0.0/arrow-memory-core-12.0.0.jar:/home/cc/.m2/repository/org/reflections/reflections/0.10.2/reflections-0.10.2.jar:/home/cc/.m2/repository/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.jar:/home/cc/.m2/repository/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar:/home/cc/.m2/repository/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar:/home/cc/.m2/repository/com/sun/jersey/contribs/jersey-multipart/1.19/jersey-multipart-1.19.jar:/home/cc/.m2/repository/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.jar:/home/cc/.m2/repository/com/sun/jersey/jersey-core/1.19/jersey-core-1.19.jar:/home/cc/.m2/repository/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar:/home/cc/.m2/repository/org/apache/thrift/libthrift/0.15.0/libthrift-0.15.0.jar:/home/cc/.m2/repository/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10.jar:/home/cc/.m2/repository/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.jar:/home/cc/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar:/home/cc/.m2/repository/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar:/home/cc/sosp24-ae/wasabi/wasabi-testing/target/classes +-d +/home/cc/sosp24-ae/wasabi/wasabi-testing/target/classes +-s +/home/cc/sosp24-ae/wasabi/wasabi-testing/target/generated-sources/aspectj-maven-plugin +/home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/cassandra/casandra_retry_locations.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/cassandra/casandra_retry_locations.data new file mode 100644 index 00000000..6cc8521a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/cassandra/casandra_retry_locations.data @@ -0,0 +1,22 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/db/compaction/Scrubber.java#L196!!!org.apache.cassandra.db.compaction.Scrubber.scrub!!!org.apache.cassandra.db.compaction.Scrubber$ScrubInfo.getCompactionInfo!!!Scrubber.java:199!!!java.lang.InterruptedException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/db/compaction/Scrubber.java#L196!!!org.apache.cassandra.db.compaction.Scrubber.scrub!!!org.apache.cassandra.utils.ByteBufferUtil.readWithShortLength!!!Scrubber.java:208!!!java.io.IOException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/db/compaction/Scrubber.java#L196!!!org.apache.cassandra.db.compaction.Scrubber.scrub!!!org.apache.cassandra.db.marshal.AbstractType.validate!!!Scrubber.java:209!!!org.apache.cassandra.serializers.MarshalException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/hadoop/cql3/CqlRecordWriter.java#L298!!!org.apache.cassandra.hadoop.cql3.CqlRecordWriter$RangeClient.run!!!org.apache.cassandra.hadoop.cql3.CqlRecordWriter$RangeClient.preparedStatement!!!CqlRecordWriter.java:320!!!java.lang.InterruptedException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/hadoop/cql3/CqlRecordWriter.java#L298!!!org.apache.cassandra.hadoop.cql3.CqlRecordWriter$RangeClient.run!!!java.util.concurrent.BlockingQueue>.take!!!CqlRecordWriter.java:303!!!java.lang.InterruptedException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/hadoop/cql3/CqlRecordWriter.java#L312!!!org.apache.cassandra.hadoop.cql3.CqlRecordWriter$RangeClient.run!!!org.apache.cassandra.hadoop.cql3.CqlRecordWriter$RangeClient.preparedStatement!!!CqlRecordWriter.java:320!!!java.lang.InterruptedException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/StorageService.java#L4587!!!org.apache.cassandra.service.StorageService.repairPaxosForTopologyChange!!!org.apache.cassandra.service.StorageService.tryRepairPaxosForTopologyChange!!!StorageService.java:4591!!!java.lang.InterruptedException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/StorageService.java#L4587!!!org.apache.cassandra.service.StorageService.repairPaxosForTopologyChange!!!org.apache.cassandra.service.StorageService.tryRepairPaxosForTopologyChange!!!StorageService.java:4591!!!java.lang.AssertionError +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L651!!!org.apache.cassandra.service.paxos.Paxos.cas!!!org.apache.cassandra.service.CASRequest.makeUpdates!!!Paxos.java:702!!!org.apache.cassandra.exceptions.InvalidRequestException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L651!!!org.apache.cassandra.service.paxos.Paxos.cas!!!org.apache.cassandra.service.CASRequest.appliesTo!!!Paxos.java:669!!!org.apache.cassandra.exceptions.InvalidRequestException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L651!!!org.apache.cassandra.service.paxos.Paxos.cas!!!org.apache.cassandra.service.paxos.Paxos$MaybeFailure.markAndThrowAsTimeoutOrFailure!!!Paxos.java:729!!!org.apache.cassandra.exceptions.RequestFailureException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L651!!!org.apache.cassandra.service.paxos.Paxos.cas!!!org.apache.cassandra.service.paxos.Paxos$MaybeFailure.markAndThrowAsTimeoutOrFailure!!!Paxos.java:729!!!org.apache.cassandra.exceptions.RequestTimeoutException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L651!!!org.apache.cassandra.service.paxos.Paxos.cas!!!org.apache.cassandra.triggers.TriggerExecutor.execute!!!Paxos.java:711!!!org.apache.cassandra.exceptions.InvalidRequestException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L953!!!org.apache.cassandra.service.paxos.Paxos.begin!!!org.apache.cassandra.service.paxos.Paxos$Participants.assureSufficientLiveNodes!!!Paxos.java:1049!!!org.apache.cassandra.exceptions.UnavailableException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L953!!!org.apache.cassandra.service.paxos.Paxos.begin!!!org.apache.cassandra.service.paxos.Paxos$MaybeFailure.markAndThrowAsTimeoutOrFailure!!!Paxos.java:992!!!org.apache.cassandra.exceptions.RequestFailureException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L953!!!org.apache.cassandra.service.paxos.Paxos.begin!!!org.apache.cassandra.service.paxos.Paxos$MaybeFailure.markAndThrowAsTimeoutOrFailure!!!Paxos.java:992!!!org.apache.cassandra.exceptions.RequestTimeoutException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L953!!!org.apache.cassandra.service.paxos.Paxos.begin!!!org.apache.cassandra.service.paxos.PaxosPrepare.prepare!!!Paxos.java:1013!!!org.apache.cassandra.exceptions.UnavailableException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L953!!!org.apache.cassandra.service.paxos.Paxos.begin!!!org.apache.cassandra.service.reads.ResponseResolver.preprocess!!!Paxos.java:1025!!!java.lang.IllegalArgumentException +https://github.com/apache/cassandra/tree//f0ad7ea//src/java/org/apache/cassandra/service/paxos/Paxos.java#L953!!!org.apache.cassandra.service.paxos.Paxos.begin!!!org.apache.cassandra.service.reads.ResponseResolver.preprocess!!!Paxos.java:1025!!!java.lang.IllegalStateException +https://github.com/apache/cassandra/blob/f0ad7eadbeb3208e08a9339881931222fdab253b/src/java/org/apache/cassandra/utils/binlog/ExternalArchiver.java#L86!!!org.apache.cassandra.utils.binlog.ExternalArchiver.ExternalArchiver!!!org.apache.cassandra.utils.binlog.ExternalArchiver.archiveFile!!!ExternalArchiver.java:93!!!java.io.IOException +https://github.com/apache/cassandra/blob/360128b3eb8f1b19dfc887a60d0678bc1f67703f/src/java/org/apache/cassandra/db/repair/PendingAntiCompaction.java!!!PendingAntiCompaction.AcquisitionCallable.call!!!PendingAntiCompaction.AcquisitionCallable.acquireSSTables!!!PendingAntiCompaction.SSTableAcquisitionException!!!PendingAntiCompaction.SSTableAcquisitionException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ConfigParser.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ConfigParser.class new file mode 100644 index 0000000000000000000000000000000000000000..b1aa7e61612de6058c3e3c752bc9b38e58332c95 GIT binary patch literal 6925 zcmb_g3wRvYRsPSuX0#ed)=HMWZd|YI*p~IMY{hYGNp&jAb|Xg*M^d6HZljJ@BWa!0 zuCfn1PTB$`0a{Y}c5tACwxLR2&{##1Ba#$K-8Q7q0)YmKAxVK!2#-L4x{2NY-dRbz z()v^QsO+8lKIhzX{_~i5=JFFy0oW}!1!3Z`61)wcQIF4>_*@X5#~0M#w@v(xfiDKJ z9ghcb4pRocWa4*&D8+P;>oe*xYv8jms;WiNzb+QYrg%XDpo|yOO@xXu{59Q2~)DmEU=#7;WA zThmH(ZeDtZgx2;R>hB#KI@s3VHq_qJd0SWaP-yMXT% zX$`hOT*HpG>dV;CyJ!_nkMK3bOV1?#3ANWf=EBQcqr@vO0NqhLGbX5XZ<2^58%GG= zMm0-43a^m^mj?2od!o*Sf+yGfB%h(+C2Z|+C*u&${*!h*%QL<>uP*Q$=iEA%G$|j* zj*K`dXSmm~hxHwDq`B15vq)M8uNN6W7!D|H?iRz&t(`sD%tV$B5YTMMyL5yeF?_S8 zM``b%ef8z~lG#+$>7=%mu=BI+c0BH+4rdeE!}3wy7t2uG@&(i{p1elWTM&*{bP{w~ zLE}n5S%Pm$oznhlh>xsColI|@2d}N!?y6~-57!r8xtiy$CgDZS+Ih$#=9-N9d}w7 z!aE52fwsQ3106%XJw5$H2RnKV@mmrQ!-B1rcP?3uIEj<7R5CG6yGBmtTr(0&M-s_Q zB<*B&2v#pf@}A==K3if+3Ej++pp*(WF0OYFVWW1OE}3!iK(p_d8~EQI`M+}K^~AF9 zE_KIW!Mg=jn%OdMqI%~Sl%`x4Q-@bsat$7(b2M90CaW167o~Oc(t&I&PJa|^T9C3M zK@W=!N0b{!Mv|#_hHS9pjk3{@h$Yps$&$@- zorUAdv=xgt%hUa}%WgHn;MN@3l5X6Rwq%P^>e{R9;Y}MYMDY$owpy}HYAg(ckz!X{ zBI3-)!bmb2&88UFBB#cjL`20a<}g=xty|Lj6|0~n+wrI+wTfGwoc&{|LoPj_eDe~qQ9J#3usU`Zk{Qa6&NWeos6HPm1>F*zY3+2gvu=O z*u5GqSJ_miVWn%_{uGrs9|1J@IuaR&?_M;Rt`a%C3cl1Eld4VT(dm!IlWEdgWe*Sc zWhW*me%c{W*5ymT5S&|-FP zgJ$k_?%`EfH}Rw|p$CPPQjQsS>sq*HM0;FLhxxi8!3S$rs#Udm`x5prQaeyL1yAij{S>^l10mlm{8I?j4xB^a zYuKz>5C0DsA;bG5%vqF7BRGfB!H_kBRZo+`HT;!5PI6vk_-um3=T@@V#%tB^lS?hd zslz7Jb8QE1V7nJPaRArjFn03`$_>c!M8p*dCvl1+3Ws~B5|()EDW!ODn*9*u3Xk%o z^Iik@8F(k>JgQ=Kujc&$48`B$o5SkCIg}5o3wUP`nn6XUbk$9xafd+XV5nz6$Vvu*l%-|=VJ9tazuEz{U~7F)f0%t=Hz-loS@ zJ~dv=ag81a{Cmtb=4W~4IsVk2hrcj?ALH*4Z5Uc&`z&h1f%B;I;5=B&HJ8*5giFq& zK`@0KlQ^R$7HqfEPumUBzO-uJpf4Qga}61$HFqg%&g+3!U9Wd3U0lycIN&No8+#xe zn8NN!>?5zhEN+;>o=MafaJtdu)S$SK_}+X*lb7F9cL9g%FQ9^k*f)um?s_V{WfD#9 zxURdQtKsS9Aa`xxt~Ks#sJXO0T&njOY9<_fdJ*z9$+tkYvn%t z0()Lm$}{*y{1Sw`s(JRk%KJRNoJT6}dk|Hxp~}Gf4E*vH`eTW9Lp7o&8tBkZcHYT@ zWo6d-F#`|&7`-K(Y_BjD`11Dym*DBe(I0&5I%z5EA#~R?xi;w zcz-oVd`Wfv-tz=)T|%o>Zn|&9sGwch!S^2(y!^5aJhqkbP76;D4 z^zEO#^4$$*VVy&J*guVf1Cv*teO-7BEXAu)uc88R?cz1C6t9Ph;+1@-ak#VYJor8M zERL{qv*63<=&JWNb=Uivntk>Dre=SAps6`fZ!|RN&E`3D zg#%&pJi5K$6{a4ikq2;$!IZFPkV@oQl?mQOGvCi~f>2Up;0!s>!~R~pkux!#I)QbF zGlY*bkSDo+f_v^J_%j547M%>)Jq*_g?oG2jL$jP^`!FH$1>A=(v7I5WIYRU~a(tcu zy+}yDMBd*g3|}VfF5&&+!3U)bACeG0tf75BR*_#dK0tncN^m1Shz}8{8<{>7WPPY4 zB@J2fnuqN3*u(P*&=;`_AJO|>V$%62dw%lU#z3lo|1$4$hCP18B%g=ytAx;VyxUoF zW60$<2R9Wd;2*>4%UI_EUtYsj7w(r}{iq0pjeH1S6~3<`VBq0PRGi?~@atr$46uVE zmGgWA!x!0lbWRQExsPe3SnhgGIJW@!IOl!?kK}0V;z-djh=f`6EG2U`kBm`3<~Mol z6Zj;bN|c>BGP)Mn^Z6yhd_0dzAV)>;DLh*2^zNlHe4@x{6Tda@&io4EBR}A#IUHqv zzI6)ibLeHSZwg&==x6V?Dco){4-R@m157rdxAqPCLxX*TfzTa&gGT5WcebgjM6?D& XnqY*nvYMdTOkiKfl}~fsgUO!&R;w(- literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ConfigParser.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ConfigParser.java new file mode 100644 index 00000000..0b71df54 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ConfigParser.java @@ -0,0 +1,163 @@ +package edu.uchicago.cs.systems.wasabi; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.BufferedReader; +import java.io.FileReader; +import java.io.IOException; +import java.lang.System; +import java.nio.file.Paths; +import java.nio.file.Path; +import java.util.Arrays; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.Map; + +import edu.uchicago.cs.systems.wasabi.InjectionPoint; + +import org.junit.Assert; + +class ConfigParser { + + private static WasabiLogger LOG; + private static String configFile; + + private static String wasabiRootDir; + private static String retryDataFile; + private static String injectionPolicy; + private static int maxInjectionCount; + + private static final ArrayList rawRecords = new ArrayList<>(); + private static final Map injectionPlan = new HashMap<>(); + + private static final HashingPrimitives hashingPrimitives = new HashingPrimitives(); + private static final String[] RETRY_DATA_COLUMN_NAMES = {"Retry location", "Retry caller", "Injection site", "Injection location", "Exception"}; + + public ConfigParser(WasabiLogger logger, String configFile) { + this.LOG = logger; + this.configFile = configFile; + + this.wasabiRootDir = System.getenv("WASABI_ROOT_DIR"); + if (this.wasabiRootDir == null) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("WASABI_ROOT_DIR environment variable is not set.") + ); + throw new IllegalStateException("[wasabi] WASABI_ROOT_DIR environment variable is not set."); + } + + parseConfigFile(); + parseCodeQLOutput(); + } + + private void parseConfigFile() { + try (BufferedReader br = new BufferedReader(new FileReader(this.configFile))) { + String line; + while ((line = br.readLine()) != null) { + String[] parts = line.split(":"); + Assert.assertEquals("[wasabi] Invalid line format for <" + line + ">", 2, parts.length); + + String parameter = parts[0].trim(); + String value = parts[1].replaceAll("\\s+", "").trim(); + switch (parameter) { + case "retry_data_file": + try { + Path retryDataFilePath = Paths.get(this.wasabiRootDir).resolve(value).normalize(); + this.retryDataFile = retryDataFilePath.toString(); + } catch (Exception e) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("[wasabi] Invalid path: %s/%s", this.wasabiRootDir, value) + ); + e.printStackTrace(); + throw new IllegalStateException("[wasabi] Invalid path: " + this.wasabiRootDir + "/" + value); + } + break; + case "injection_policy": + this.injectionPolicy = value; + break; + case "max_injection_count": + try { + this.maxInjectionCount = Integer.parseInt(value); + } catch (Exception e) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("An exception occurred when parsing line <%s>: %s\n", + line, e.getMessage()) + ); + e.printStackTrace(); + } + break; + } + } + } catch (IOException e) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("An exception occurred when parsing the config file: %s\n", e.getMessage()) + ); + e.printStackTrace(); + } + } + + private void parseCodeQLOutput() { + try (BufferedReader br = new BufferedReader(new FileReader(this.retryDataFile))) { + boolean foundHeader = false; + String line; + while ((line = br.readLine()) != null) { + String[] values = line.split("!!!"); + + if (!foundHeader && Arrays.equals(RETRY_DATA_COLUMN_NAMES, values)) { + foundHeader = true; + continue; + } + + if (foundHeader) { + rawRecords.add(values); + } + } + } catch (IOException e) { + this.LOG.printMessage( + LOG.LOG_LEVEL_ERROR, + String.format("An exception occurred when parsing the retry data file: %s\n", e.getMessage()) + ); + e.printStackTrace(); + } + + for (String[] record : rawRecords) { + String retrySourceLocation = record[0]; + String retryCallerFunction = record[1]; + String injectionSite = record[2]; + String injectionLocation = record[3]; + String retryException = record[4]; + + InjectionPoint entry = new InjectionPoint( + null, + retrySourceLocation, + retryCallerFunction, + injectionSite, + retryException, + -1 + ); + + injectionPlan.put(injectionLocation, entry); + } + } + + public ArrayList getRawRecords() { + return rawRecords; + } + + public Map getInjectionPlan() { + return Collections.unmodifiableMap(injectionPlan); + } + + public int getMaxInjectionCount() { + return this.maxInjectionCount; + } + + public String getInjectionPolicy() { + return this.injectionPolicy; + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ExecutionTrace.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ExecutionTrace.class new file mode 100644 index 0000000000000000000000000000000000000000..b684323dc4f0bd9b248c43cd496f0b21b66bef1e GIT binary patch literal 5164 zcmcgvdvH|M9sX{1H+QqS;gOKQk{~DnmxK_tqBQ{;h@otoY%EDbiB!GW+-#QYBiy}9 z2o%(oYUNR>EgFPsptZ5qR!~^L)?%kKIMYs@>GUynrX6PJOgnweX#aE=)9>7ScXJnZ zSpBD&#n?DC|H!?mf#-I$%hY}2yVHt+RCn96mhf-@MD)wv_(<9}G zAubjYJ|rQ1#eZA4?u;bbD5)^#mm zG{=(RkyLXhzpWBx1w$KypbcIuIpl92+Xw16)QGb z9USabQ-*}bKrt7yNfK@m7BgcKKDHPWL>$8-!J+Qa)Oua(*pXIa66Obj!NMWQcIgm- zm^Nf|kJ79jjSQPTPc$(os?8NObP4kuum=rISB<1DDnrNxt&KiY)E?C2Lp45{g=<{_ zMW3L0co2AwWPFp^&jlMybr1E@gaogl>P)?eq}=M-{wUc6Yu}9QCN;HDSL2io1cDCW zdkj6Ah_n_?oUPjyth`Z7#?un2MybNcuR94FisHG&JTjfhNJP_HZ`3WSqa?`)U9n_D zLQ}D-%2P+Fc#2ZKo@81NYa65DTvg@!xJuBAf;({+lX4TP*{qRvbkd3790kj9yMh2# zuvlh9jukAfdyO2Ny*+7E@bR}}mRuPXR4e!|09M2Rzr z5|*wl^0Qg)*e$+jI%0_G0jO*!{Ql51urQQaEx_B%890I z>Lqvf^IXsPWwS5$>=ZXv_Yg0sK!4#gS(;8*`rIk=QYqK9cycEzTo>d!FV9B{4mw#K zaGWoDR-CU{Gd^^w#;`awD!I@jsFd_xIjE(=T4In4F_Wa4tO@gC&d$?_JglZd+AezG ziboTSJ7EsI(NqtKM{w2JqMVSs8XW%4+)c`WbxoP~dR_*D2}2`|h`i-p0`@$;qZ?WF z3^=oq-BCE(UdCk8-|bGRo6=_KP*RVp%)@;JL>_cRmPNubWh<7Tn5^2RrBZ5y+{L(V z+$A9NM(t}VD`KZm!W~7k?L6(REBdg6Z@0Syi3AvOFIC0ozKbq?-^l5_BIT*|S04&H`_49d1}(s#zx zcQ?Na`5puwq7PrfY;46mJWQV+p%oRYxuRH_aS!h0NLc-}Z8c7-C7fGU%xY}`gJFlk zK^oLhk0H}wjiuB!NcCpOd}-o7wAiMPuyxUNOT$^XFQS|YI}7h+REQ=6_ z$yh^eYq8GuZp`*>nPtxM&bKCKy!O=_9GL|_6*?W!>4Q>+PVv*}%=TrxVzzFx_WM!8wIhu287$!QX%SbKvkl-`Qqgmy zpkq7-&lA++_#!o^cmWZZyt&*RS+{U&Z=ZNfi()b0k=|yJxP4wYs z*oL=A{BL6bzaSU?k~%Nr0NcZCC-9Dm;wEC($D9ikOQ|J-UK7PTDJ`&bQ)7>bokyfE zhn=Vy3%lc#cVcJl?8kRX6wZ2*Tm{K#OhsQb(L7XORRp&EdP#J{hpcq12g+a=I=db`%lE` z&&294#Oex9(^WFw6>7YSqxfqtQrbq zRq4P=#)H|zwGCgk(84rpNIW>AIkXx*mAAOx!s4wY-V0cg!L8Pbx-HaXAENo}*r&(s zck^CYIyL<_iq*R)mJ`Wd6mwey+gc;P=h7L5P)4%or_p|BsjL71 literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ExecutionTrace.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ExecutionTrace.java new file mode 100644 index 00000000..045b7716 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/ExecutionTrace.java @@ -0,0 +1,243 @@ +package edu.uchicago.cs.systems.wasabi; + +import java.util.ArrayDeque; +import java.util.ArrayList; +import java.util.concurrent.locks.Lock; +import java.util.concurrent.locks.ReentrantLock; +import java.util.Deque; +import java.util.Iterator; +import java.util.LinkedList; +import java.util.Objects; + +class OpEntry { + + public static final Integer RETRY_CALLER_OP = 0; + public static final Integer THREAD_SLEEP_OP = 1; + + private String opName = ""; + private Integer opType = this.RETRY_CALLER_OP; + private StackSnapshot stackSnapshot = null; + private Long timestamp = 0L; + private String exception = null; + + public OpEntry(String opName, + Integer opType, + Long timestamp, + StackSnapshot stackSnapshot) { + this.opName = opName; + this.opType = opType; + this.timestamp = timestamp; + this.stackSnapshot = stackSnapshot; + this.exception = null; + } + + public OpEntry(String opName, + Integer opType, + Long timestamp, + StackSnapshot stackSnapshot, + String exception) { + this.opName = opName; + this.opType = opType; + this.timestamp = timestamp; + this.stackSnapshot = stackSnapshot; + this.exception = exception; + } + + public OpEntry(String opName, + Integer opType, + StackSnapshot stackSnapshot, + String exception) { + this.opName = opName; + this.opType = opType; + this.timestamp = 0L; + this.stackSnapshot = stackSnapshot; + this.exception = exception; + } + + public Boolean isOfType(Integer opType) { + return Objects.equals(this.opType, opType); + } + + public Boolean hasFrame(String target) { + return this.stackSnapshot.hasFrame(target); + } + + public Boolean isSameOp(OpEntry target) { + return ( + this.opType == target.opType && + (this.exception == null || this.exception.equals(target.exception)) && + this.stackSnapshot.isEqual(target.stackSnapshot) + ); + } + + public void printOpEntry(WasabiLogger log) { + log.printMessage(WasabiLogger.LOG_LEVEL_WARN, + String.format("\n Op type: %s\n Op name: %s\n Timestamp: %d\n Callstack (top):\n%s\n Exception: %s\n", + this.opType == this.RETRY_CALLER_OP ? "retry" : "sleep", + this.opName, + this.timestamp, + this.stackSnapshot.serializeTopFrames(5), + this.exception + ) + ); + } +} + +class ExecutionTrace { + + private final Lock mutex = new ReentrantLock(); + private final int INFINITE_CACHE = -1; + + private ArrayDeque opCache; + private int maxOpCacheSize; + + public ExecutionTrace() { + this.opCache = new ArrayDeque(); + this.maxOpCacheSize = this.INFINITE_CACHE; + } + + public ExecutionTrace(int maxOpCacheSize) { + this.opCache = new ArrayDeque(); + this.maxOpCacheSize = maxOpCacheSize; + } + + public Boolean isNullOrEmpty() { + mutex.lock(); + try { + return this.opCache == null || this.opCache.isEmpty(); + } finally { + mutex.unlock(); + } + } + + public int getMaxOpCacheSize() { + mutex.lock(); + try { + return this.maxOpCacheSize; + } finally { + mutex.unlock(); + } + } + + public int getSize() { + mutex.lock(); + try { + return this.opCache.size(); + } finally { + mutex.unlock(); + } + } + + public void addLast(OpEntry opEntry) { + mutex.lock(); + try { + if (this.maxOpCacheSize != this.INFINITE_CACHE && this.opCache.size() >= this.maxOpCacheSize) { + this.opCache.removeFirst(); + } + this.opCache.addLast(opEntry); + } finally { + mutex.unlock(); + } + } + + public Boolean checkIfOpsAreEqual(int leftIndex, int rightIndex) { + mutex.lock(); + try { + if (this.opCache.size() < Math.max(leftIndex, rightIndex)) { + return false; + } + + OpEntry leftOp = null; + OpEntry rightOp = null; + + int index = this.opCache.size() - 1; + Iterator itr = this.opCache.descendingIterator(); + while (itr.hasNext() && index >= Math.min(leftIndex, rightIndex)) { + OpEntry current = itr.next(); + + if (index == leftIndex) { + leftOp = current; + } else if (index == rightIndex) { + rightOp = current; + } + + --index; + } + + return leftOp != null && rightOp != null && leftOp.isSameOp(rightOp); + + } finally { + mutex.unlock(); + } + } + + public Boolean checkIfOpIsOfType(int targetIndex, int targetOpType) { + mutex.lock(); + try { + if (this.opCache.size() < targetIndex) { + return false; + } + + OpEntry targetOp = null; + + int index = this.opCache.size() - 1; + Iterator itr = this.opCache.descendingIterator(); + while (itr.hasNext() && index >= targetIndex) { + OpEntry current = itr.next(); + + if (index == targetIndex) { + targetOp = current; + } + + --index; + } + + return targetOp != null && targetOp.isOfType(targetOpType); + + } finally { + mutex.unlock(); + } + } + + public Boolean checkIfOpHasFrame(int targetIndex, String targetFrame) { + mutex.lock(); + try { + if (this.opCache.size() < targetIndex) { + return false; + } + + OpEntry targetOp = null; + + int index = this.opCache.size() - 1; + Iterator itr = this.opCache.descendingIterator(); + while (itr.hasNext() && index >= targetIndex) { + OpEntry current = itr.next(); + + if (index == targetIndex) { + targetOp = current; + } + + --index; + } + + return targetOp != null && targetOp.hasFrame(targetFrame); + + } finally { + mutex.unlock(); + } + } + + public void printExecutionTrace(WasabiLogger log, String msg) { + mutex.lock(); + try { + log.printMessage(WasabiLogger.LOG_LEVEL_WARN, String.format("================================ %s", msg)); + for (OpEntry op : this.opCache) { + op.printOpEntry(log); + } + log.printMessage(WasabiLogger.LOG_LEVEL_WARN, String.format("================================================================\n\n")); + + } finally { + mutex.unlock(); + } + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/HashingPrimitives.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/HashingPrimitives.class new file mode 100644 index 0000000000000000000000000000000000000000..55ac342ac47b940c8a0b46c2c4bf5f78f148fdca GIT binary patch literal 802 zcmb7CO>Yx15Pjaw2MH-@3rRx?QjQ5ibqQQhq6k!}0%--6f^v5@*2dLlQ`z34{3k9w zRpP)8;71|GyFmn!Lu<*N@tc|FH@1KN`u+pJ8$7SVN4t#UGM+J%hAL5Z#Nc;(6NbXs zawZw-flB13bTO6sigvxG^mY{tx0Q^j<;qw^ ziLj}reqZiXva`^stB#kc4&}LWZ_(Vk&lA^q4Fwb#PVf5|4EujC?(_6gh87)o^h?}u zEAfK93VEC?BU^lN3wA?}hcd0D3@qaT`L#R&6;x?g!NUx3#qTKM=sf?MTQ@2zS!E}W zVh@if?lS7+x#K+Sljmh@2V@=Fh$2}mWAiuI+8a7N9O5x$KcSf`b4Y`BO`0B#h@+Kx GPk#f=K)9&@ literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/HashingPrimitives.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/HashingPrimitives.java new file mode 100644 index 00000000..c102a964 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/HashingPrimitives.java @@ -0,0 +1,46 @@ +package edu.uchicago.cs.systems.wasabi; + +//import java.nio.charset.StandardCharsets; +//import org.apache.commons.codec.digest.MurmurHash3; +import java.util.ArrayList; + +class HashingPrimitives { + public static int getHashValue(String str1, String str2, String str3) { + return 0; + /* + byte[] bytes1 = str1.getBytes(StandardCharsets.UTF_8); + byte[] bytes2 = str2.getBytes(StandardCharsets.UTF_8); + byte[] bytes3 = str3.getBytes(StandardCharsets.UTF_8); + + byte[] bytes = new byte[bytes1.length + bytes2.length + bytes3.length]; + + System.arraycopy(bytes1, 0, bytes, 0, bytes1.length); + System.arraycopy(bytes2, 0, bytes, bytes1.length, bytes2.length); + System.arraycopy(bytes3, 0, bytes, bytes1.length + bytes2.length, bytes3.length); + + return MurmurHash3.hash32x86(bytes, 0, bytes.length, 0); + */ + } + + public static int getHashValue(ArrayList arr) { + return 0; + /* + ArrayList byteList = new ArrayList<>(); + int totalLength = 0; + for (String e : arr) { + byte[] bytes = e.getBytes(StandardCharsets.UTF_8); + byteList.add(bytes); + totalLength += bytes.length; + } + + byte[] bytes = new byte[totalLength]; + int offset = 0; + for (byte[] b : byteList) { + System.arraycopy(b, 0, bytes, offset, b.length); + offset += b.length; + } + + return MurmurHash3.hash32x86(bytes, 0, bytes.length, 0); + */ + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectForever.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectForever.class new file mode 100644 index 0000000000000000000000000000000000000000..3c09c831a8cfa3c72d1eb79c8ef1aadc7c86de0a GIT binary patch literal 471 zcmb7BO-sW-5Pj38jmB7QEj@c|MVgCvQM?oifg*y^gSX9gv0KtCWRpt&lNV2d2Y-M+ zN}Nq9UUgyTOcytV=5RD8coVZwgrk|x)NQ#= zRQ@26l#$-dNRiG(u3f$Zy<({?VLVfdGAiX#OYvkPX(PL}g<9L_Sy++iD9%<&7E_a} zjmobGplj)&%S$;EZrk iAx?bBnR~9`y*P_sWxrAm>grDE7>DSvhQFxdAAbW?Y-r2? literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectUpToMaxCount.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectUpToMaxCount.class new file mode 100644 index 0000000000000000000000000000000000000000..9f624869b8b131f4b0c6803061eb481c88f188fe GIT binary patch literal 601 zcmb7C%}&BV5dO9;RIq@eq6AIUcmNJGMsFG~Bqk)_Pe2admeR-~bO~)0UdJ;R6OD-n zAHat)PFq5ZCq3-!%*s{+>;3~KHrYkuRmayGQpFeN|I<^eN5NA02w>O5$pD=Wjq3V=DEtcBY zr3=^S0T`4(nlgo!jwR|OD7&OO=w!-oU}g0cO1VJcIUGz<%!cp+#XJGFk;V>|sh^8r zFp#2(2ts;#K$^(R$*G literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPoint.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPoint.class new file mode 100644 index 0000000000000000000000000000000000000000..514aae5b68df1f6687c9a85b2ebcfd94ae476a65 GIT binary patch literal 1368 zcmbtU+fEZv6kVsCc4(azN(HQ-poo@28AZGS8X^HCsbEsW18>t|EQ7;LGZ&P9@CWV62xXs}X zhjJE^sBkrv#Wbo}%s}UGSH(RQvjVvwG|abk*JuU1UMMhAvvwjqGIwp$XnMLC=)qwS zTKj?i&IpW#t=GHp3j#&o3jM>n7x|`D^GqYOJy)Q=wr3m|x?{Ladc(Kf<|%a9a2(5D zja;(>&DrjrCF{B!S^|05aOJ&ewK{lYQFA)n!1+!vU>VE(zwOb*$>M&vk~e(Yq|)YwJ=t6EARAzFMa)OXUxI(c+tKYO% zDX&$&K~%&M5*(5o6b>m4=}PiD)Fbp%rWi2IfGPt@3L{D>hLq9-_#y{fr8rNtK!X*e zkRh6R8dF3M4bI>ivY4PVuh5Q8Cq739Jx}D8h}bG2hUv{09aD5Od%^4nvfMs zP0EVJDzaj^DOs^#Ht0G=W4Rt>?lD{Wio`K8$H;!fI4zQGj8IbA7@(ADBTp&ahN^sm rLh3Jlrniz{WqCPqn5K=;|J|@;t981@Y{v+dLZZ6F!*0+bft!B;YoR|d literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPoint.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPoint.java new file mode 100644 index 00000000..43b9138e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPoint.java @@ -0,0 +1,35 @@ +package edu.uchicago.cs.systems.wasabi; + +class InjectionPoint { + + public StackSnapshot stackSnapshot = null; + public String retrySourceLocation = null; + public String retryCallerFunction = null; + public String injectionSite = null; + public String retryException = null; + public Integer injectionCount = 0; + + public InjectionPoint(StackSnapshot stackSnapshot, + String retrySourceLocation, + String retryCallerFunction, + String injectionSite, + String retryException, + Integer injectionCount) { + this.stackSnapshot = stackSnapshot; + this.retrySourceLocation = retrySourceLocation; + this.retryCallerFunction = retryCallerFunction; + this.injectionSite = injectionSite; + this.retryException = retryException; + this.injectionCount = injectionCount; + } + + public Boolean isEmpty() { + return ( + this.stackSnapshot.isNullOrEmpty() && + this.retrySourceLocation == null && + this.retryCallerFunction == null && + this.injectionSite == null && + this.retryException == null + ); + } +} \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPolicies.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPolicies.java new file mode 100644 index 00000000..aca90d41 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPolicies.java @@ -0,0 +1,38 @@ +package edu.uchicago.cs.systems.wasabi; + +import java.util.Random; + +abstract class InjectionPolicy { + + public abstract boolean shouldInject(int injectionCount); +} + +class NoInjection extends InjectionPolicy { + @Override + public boolean shouldInject(int injectionCount) { + return false; + } +} + +class InjectForever extends InjectionPolicy { + @Override + public boolean shouldInject(int injectionCount) { + return true; + } +} + +class InjectUpToMaxCount extends InjectionPolicy { + private int maxInjectionCount = 0; + + InjectUpToMaxCount(int maxInjectionCount) { + this.maxInjectionCount = maxInjectionCount; + } + + @Override + public boolean shouldInject(int injectionCount) { + if (injectionCount < this.maxInjectionCount) { + return true; + } + return false; + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPolicy.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InjectionPolicy.class new file mode 100644 index 0000000000000000000000000000000000000000..40dc94b6b852377e1211cc1da74d4d854ff0e68f GIT binary patch literal 364 zcmb7Au};G<5PjFC4TL~T2WG~Wp=MwMu~b5;6af;b1DoSm%~feE#R;gN#e~Gb2k=pd zOWTDJOXqujckiBc-#?#U0Io2K(8VCcFvKaLf5Ro$w}kF^vLFOAms!Ff;nLnW>(o}y zIxU15CC=z#p(}3RdorkV_JqsCW{ql0&PFetGG6(OukG5aH|=%GYF@6aso9l}u3)pd zCd58>O_A*iVmqEsUI@{XYbs;!xOF`Ht77Y?EB&ft1n3c_|Fa|vTd^v1xl|8n`<>t% v9oa;CIubG!vJOE?GD+@Te1P7!LiBc#jVeiIQ+641_!0cAxwLk1ST= literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InterceptHive.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/InterceptHive.class new file mode 100644 index 0000000000000000000000000000000000000000..46ea8b46b49b9d1e6e2a8a24290981b335508a06 GIT binary patch literal 109215 zcmeHw34B}CmG`-}Wywp3V<#bw_cgX`OLiPPApsJv#KGBYCm|#dWa-&fEK5d9HYkO* zlqFqg*Ovz>R?UvOmblzu;G@US{r3j^y#cq2 z!;ql)Y9}ILug}@9a0fH`y~BQ2I1Ep+X5 zS9<;4aJS3rLq#2~NC?r3OvMLAf`R?6L7yUN21V;A~Oz8%z&dV z+qrHZzxjONy{2}%ptO#F2b54GsP2?TS{;B)Dx{KZDy5}@($AF@W{{xrY|5f+8_mn4 zDq3cx>KOX!m$aBoHB>7oYgh?y2?o%u@IgVzVJiul3~9&~uRrW^k8X60 z%V#UCi$%8NxJ*i=5`Jk%Hd!b=le*{vD|G|m^39U0fkt;E7*zaWC(xt)T<;2vpz3T| zPd%V{zq0>AmVGR6geb3BXJn{BVaMJG_`xv%9<42{t}d-9+wVoQ{4&io?sAVPjuDq95EysZ zWvs-T;=4v1{pZpWm7;U*#_;^01x@`I^x;qbwgraI^yiYs>wboCE3w0CuH?(4c_bt%(#X+uLpRS5qpg$fRa6;Bo^G;F0I zK~?B!EE~l`Wj2kF7vvERs4^O=EGiA81))jqOj=8$+2o@!Xa@{3=nG;mj)>o75~Qm2 zu_lhxXJr$}rg6F)12hgp0?ITL0{;kFT+?H!BC0rm0Z{HG6ELu=t+%UhAc~4HsgDhe zCA0r-G- z_@Uuv#}La+3{gM%wI&*Gi+Ky10^^!=gnSQ1-)^HTphZ>8wRI14^#NbI`nPp-boKW~ zQKwUpC*X$(_W_ib3gx$#{x8JS;crCg+`q(`YjprC~PP&}2a( zY^9HZNDK|HQfGU_>+>kVOgc;@{J&3T(@pd#@QG`DT=9Eg&6wLfB~xhCtg+F}KwatT zhSjB9+pS#NZ4)Yqvc)7$iB^(HtLctxx|8lg7hsoZ_UPF$yltS*N`Eu6?32bxzuz?; z8VQ6m>24~q(Y=DUn@Ov5S9e=a?>5M%3F7I>Qq3|3*GW#79jppnSt_e74KqEh&IGxk z;|;4bGr8}>{1#w7Lpi`R9N6y=;8XS)R0tvH9*s8f6m033E@89<1W;wH=@L}jfuIMd zQe2*XpQ4OcHZ`>jiIk7m)WCrA)!0j!9vmzz9qQOR_Pe~{8i%8{w)Dy?ODE@2>vDv+ zviRB94r5zbv)mlMfO|CLfWw*q$QkMH3P8uwy|wykCxLa#L#lutZO-S92&1?!_%{4$}y72=iEWP zbM|T4C36nALZh+6uF;0HHexK!kwI5Tf#ryqk{c)u0)-LSx_*y*hqTt@|JZPint{mY zh#FK5cgUd`RCpu10NBR+3klY&@M!U!||1$s?{%cTi5!m&GY>Hcr|D0Vpj0noN3z zzG0>RBWQsk>$Sve`X)UKqh(OdD}5ev;(f7=o`a;S3e{AFR#$m|HiiB^oBo0R5!FBf z_Xi?y(?tCcP(#4qBnvI54EZqaamHo_Qol|AY^8sK9de3Avgtc)*71~_{V8nub0y!+ zrti^Hl%t zZLk(4+SxGquWb4m{hTM|9?w8PH%tU|#u@9LnLGlq>VVDe{}!}$m)gVz*~H0uO)7;_ zh-f)!GR)5_OJM*84^B?WWFC1nn_go=vVuG}fgNo0OX&EnsGchgxTWy-lzRQ8ahOsy z%-*D5S?PaboDO;o+4O6sfJ}_EW?N^{oAldk`W>5Q^Q9pt`ztLu$@*w*2UMC8?2h=Q z*NinPOIU+y%?>U7RZyH0l%`ku-Fi0bSt^^(aSw_m|5{U1qt3oXe zS+va)jCehcPX2#CL^Wnr>s@{ihE>Jkcx2G$4UP0G!(;Gx?7(cOf5a8^^uymWGfv_3 zV0ohY{TySX9&b=JLC(nb!2<@trz%!yi=EQgVp`}50db0hUFvX)xEPI!>LGH#zv-VD zPa{lwMn!B>gdF`aor2!5M$4eUZ5Q;+wsGK$kw5^}Ah!)RL^#0iTg*?^Bi3Q>+J`Y! z9lDPFc$Xq0PO-hSsC&$Ha8T(B_@uXN2fru?uT!V%;QQU5uyV-ZaSb~#k;kANgy}4? z;}~aDvC$O{XyQ<9H7qfSCz&z_8$UASi-bmI+i-(2RkKSHxWg_*A!sRTSu0!6Q!0m$#)}U4UxOC} z1Cj9_zv|b*R0Mja?F?-h8*TycJ2(5i;!Y}6SJ>wYIie%33OAn1v}1bWad`dv0;38m z2SYuY@F}OfatKVb)F|@7QWEVv1D=Ii2r9$iS+J}Zo^i*;qkY;lH^`y*LzpT>SII&h z?8BdCkRfMzmf{#F|x46P19V2ktKtss79Pk_j)k*tIO=ijN z1`&fy3?keH0q+fa@dA6-fpIv|Ftr9P9)vsHbr2lY?h3m{cF2ZI&r-9fy&b*|tUbs9 z0?wH&zyha46mj2T@IUNAEHR@G4u$Q0JjBDby2=6(;a7qo#~2JcpJR%WGvQQSjFC$7 z^jR;;0npp2u{q;QUwZ*+uylh(TSu=8hVqCK>{NWpuq3!qug^CSP2Uh0oRWjghVQIu zN2RAU#3q!Ex`swwDyuV{hQJKqvv@-qyErDtV^U$ebavPsSm$MdIorlSK#x1xLI?fs zErWgIZs^?u2OV}95fvbP%H^t)8&*DQ!Ls(skXfB^79 z#(=r826qUPVPs%`#Je_+4A+pG9AKmL1hH?TPw;(ZvZ!-1DrqD~thHmk_xn)Ms| z`yd1+X>Vzf`<1YxAFD(N+`d5Q)NDbM)-YJ^uiBIVEJXLI8Q0S^Mrs1X&YogwIy*Z! z?(5jIq7QR%(e3eu8e?;tGW@Ir$4H=6|87y24aqRvR?7QWOrb`;vSU|ZEkkJ#F)Y+LwjPr?qFa{-LBd< zHQMa56l`H$R2bDf6sAh;%sr|tGbO3mrRdU@Tn!hFooydep_pZa8Q*IZHda`t`^9aZ z&FX8LzQtvBn|)d;&pD@Y`QY+%&cRZRzFHEp(!0@B9dE#CT1Vjx%9EA=CvIQCdQ9G= z6_}b@tcr@1Y>^sW0POc3QaH|%Ez$*cZSy`6ZKZTk>>{6PRjjdz3@jL~UAxvMvaq&j zYL-pR!!oU0__T@ng09#V-KTj;>8?!ye*^DTYk*M2hUv*GX!1H6V7M+?Az9rGJgrVHHy3Ws8Mkk-E;S*Df(2=&3jhk){<+4Yltv zW`?C!%pHyGFxZDTL-yFFV;TGsadx&?BJ#1`jXggRALb(Jc>=7i&aN)=l5upI9UBWo zLAEFq*r}e1^;>M0H{(j%5Kwz@rYI3*R#6(W8Cu;$lP$_c1y(7wjWTNF#GM6d>>947 zDqB>GWgu0MdJkTR4f7jp0=p+}+@N7j8 zrm8`6;r76>)PMP@P4cIz>Mw7MRMjvLq8_Z7++_c|EqTu-X4GY8%p5cPQGvR64Dlt)Da+T2u7NmQAWGtaP6JxsE%3{CN0@Lyp-61 zb?J~2vWm+DHOWTtMBWL>s9AZF&$OA2rJ*s#88xfGv6-cl=1cm~0B*T{s0ce3CC#e` z&!VTIqVpKjxhO&Ewzb%dJLD; z0zKpeyU6`|PTpF8@zM6{p-5SrB10jkv55?MTI1xA)#}2=$>z)ipWLYx4;M%iZ1yUi7mMi!ztf|nSar6{lMf>wuu^J4cFM#k%OOV^@PUk^pz z)lJpn1yN|*FEU|%BW0%%7q*l>qhTn4J13 zuQ4C|_So{xetX2NoVk-~owBRjK;LrX2}({$DMo7`MTeZ+7~K(#ax12KBiLFW!U=vv z6tmA%%-psms+eKL8e_Vm9!=VCl3`CGexXrBH|P)@_XMYu#qkBRs+&+VUuPg_#5oce zQ=D$MGZYAoFJIB%QleKWs4jp8J{t&5bcTX%=a|du*A7uSXQRcX+KYE+R#g*{fv61H zGZj}oWKaqp<;Jh2WF;G7Gw?fwGVzSV_c9*G;bn-!=rRq*u8}WS{?0>Q9KI&X$>ekB z2s7AxK-zr7=A#xt1$c^38h#P2IYEUxk5lpERF+%uBvn2~Su#9AmR$SeRDXgTJ0GL6 z$Ef}|H9k(wPg2VfvR#OzRgcOFmQxGPm!;78s4Sb(mbO`G?L}5vokr&(<}BH%ax}k! zN~jVgaH)XSgsmvWO*q?roZ9T-32L`LNu5v7277Mi6V&@Cl2T+Pi-8fMBDA;|*r>)a z^JVB+5uJzFY_$s7#C^;m+KlScWDo0*%GC>_qI4Ot(o|5W1!)U1<{*{Z)EAY3ce4O^6CqS7ccQEa%l)5vu?kR%H zq5nzRdyM?{qtu(5c|TRi96^iB!IAwt(_%BKPZ}apC4Ma=-bULPv8#bvj2=e*T#Wa5 z80+(am2=5XZPZNd)Jh$=qM#EeXS!%3!YzpFryd-W*dV*VSZ%o0eRP4spb4QP;$jsM zyHrH%#=FV|P?5IFDyQ@^XP$}goZFq{V5yXS5A}5v5Kt_!Nj6&$N6`iwTM6;+5WYQ1f z*$Ot>4y0WKB<-Ybx)|iL%Y=?CIy$zP(6I<;*^ieT2qE)9rVB|N5+`Ysagw!`C~E_7 zl2y+?be#0c7(pMU>s0a)YtcmJ^utk{a2UVqC+IM^^y8cAR$GqHl7@WCG5W-ghTKmd zqg!_H!|kgr`IhHT{^A7PjeLK*I!&VYo^(lG^(q1GOlvqs_x10zT`^+Ji+4N}NliikbH>>!ns2Lz{3BMpJrhCzY~$ZIcfJ&JDoz%gUU z=?7tr(E-F=L6_4t6r>v|B(Z+J+I=1Chmo=v*ak`@{!>u9i#|)A1NQrA6@8xW2kIKY z`d>gkizHSao$I5cb3+IMDremJel`F{-KY~B^(3!ab#xsajk5- zDtM-l9}mRJkAp-D_UQ8Ci&3T!FF~9!0lX9?0B!g-s^jqxtemtX^vV3Rr|2sJ2hrAU zs&B}B0>gbgb@?$mag4rxCtaTVEp?Rj6jhQukL3n>0di-j1(HNQ{fnR{=_MZc)fRqZ zzU49cw`25^`eXF6q?cFJnvllgDBpszMy;y+;O2P{A!T;X;GZk1dqRh*F zDavm^#v4(~$04IX0cre6q}>Fe_9;-nry;s-27TQGy1Es|6K}(L^V`8>cOd7Th`9^@ z?gr)DfuX&P9z^U>x)*r3k515M=xI>bxAFTs$nhemidBkAl`rX3`I06JoKblp$jG*;lev{-M+5 zbsPh_d~0U9{L{>I`KMUAe26Ij1)VP623=Yh-zm4CADK{f)lqt^KPJRI5NN5#1PC%c zPuMo8>S=Xap2%En$rIVCCX14qBs^AV6A3R}C3QQ~Tb?+}YSw@GX)K)5`*)@{XoMuS zM4rf*Asg4pM4O+MpPp}NKx=bXTl1~Y(J-gvTaSswl2Gb{Ih?Ar!4DRU-xw`hP@!rq5YLqonZXs0qXW4lw>MaDS4pghe$1lT499Yq3DP z3BUV=g)SE9ScBt>No+UtJ~@Xsk}Z#NsO$S;jC`Aan_Y}rHqj2gf0^1vhv-D?pMfVfTHn!)l#}4V zz7P!4T<{(_?83RtVPgGX#93dAOG*k*9p7I4^Ba9AHWYzsJS035ar z9JU=CwgVh?5jbooIP79@*e-C`4sh5uaM-2bFc&y%5FF+Phk3wZ3OH;C95xINbA!WN z;IO^muu*WB4;(fI4)cS<0^qQ{;IMIU*yZ4`5I8Ih4vT=p_JPCpgToGh!w!PO4uQk2 z0Eb1uVPSCCRi}@`#QKRGw!z>qJ9Aj>WDhvASof8HPlCm|FXbOm784iBm<+KAm`{-! z{Ty&I|1Eh;Yxg>ci&Z>Z~B9I3~xqzfCJ%fsp^QPLSAnTwMIP*uo-RNbwv~jIuEN=soUY z+(TU$<_uEApzx$;fJD$>v0EYzWd!U=kOig9pY0`nsAs}7%aQ{XKsnOGqI%$X7t0#V zNq+=*O%}k97XhzZtSQKxPO0!|@})C;!imyVR~!jDE#jh+t~leA*gsg=aB)m`(L{`A zzf!#&!F=;cC6&xj17*rZI(b_Pk@cH^Us~0XL}RQ^1Kt3f;85)stipKxO5+RIxDSiD zcayJRI}^GGrXgFSse5nX8JgevM-HbQHmi0)99B~%+z@w0bgTm%@EaYoor~uH00e3a zNOFXEY#z2W_Iu+l4qTGJ_t#N|et{k3^8m)Z!48)RBI%6i@HObzH%%Qrgy&}gnB~ck zJC0{LvK)ed`I#Bi_AK-SJFTqDZsO2Szk0* z?GsR!`#R#e6R#j#9Is?vHBvTGrag>>A9**C@!q^jq-_P10Q$_OeOedt29a`zGNL`O zn+jisBn){TFqHQ}bK$XQ;ZGvv3lqsC@8gJl5O6)E!VXg4@hiaSJB?E)uCSC<^l1QC~qInlxb9a)t3J3JSnAHP*Y z78nZ)S#a%t;k^m2I5RX$IyN6Ojj-VIYZRIP8!Uv>QkZ={v=grL6j}X1!g=^s4*td)m+S;B8yNNur)T?_P-hjhAiCie{6-0Jz?$*mu zQ8bocu_=HXSIt{7Xt7M@(>U$evSbv?*Wrxf?T5*&&yA@y}0x+ z#`ac&MxoD^uH`5ImLHbhrqRW1@yKc^d;v>enS!jAK8!?|)k{AEcs(9jfjtUVP^NJ$ zPm-c=@_DXPQ~{(#!G*CD^(T%389)FQ^r|FL(5q9_)H+bLaV_!!16nfG{Yxg1!#__y z6BT&SucLaG3#Pdb$`HE+Ffj_A1Ykk5;3*S-!0HDVBJv*qZ&12=B~+3(5`j0~CMvY( zgu>%o@H|H${02hU^Gptf>50P|g~jNPF|j>0-YA5XR2T#-0EFW3M&XB%@BpQ&*O4W8 zBLR4$@Cgj**JF62@EVQ+TnTsvz~u0Z&KodM$2D15_yg>0$)PkpVPS~aLhP$3T8J_) zAY5c3qsz5oMO8@HL+P+=aV9iLMhQShMVP`D?TaC!q6&@zKok}2*T`YNPDU_4Cb-t3 zo?g}bNV(ic7I{M;E#ytJn2pC=5lGqQI|5mAoBmF}F;WEYL(#wK2*@-pqcIqx2)>A- z9|1lD_;Hjm5)Bb=5*7F8h{&Jvg2g1?Cjj3UZ^vj~rjIt8Rz<($D1`rw(4|s)u`5ye zz8K!5;%9XP#O3>9NWbF02S7*`|AUF|Gh){kQn72CQn76umno~aev(zY_LD4fqc`PB zF&K04=b7MhEB+x-N$CVE$fhQ_JOQ}8qyfXbQXgLC^5XAv6vFQzT&2=>$*M%<@{%p+ z<=r|0;&OS(CgiynfHlRE`x24MOCCYbexqX{UA?k5$>9mW;iWL1OEdMMWezWao4GU- zA(l}~vk-!=OS8-zKIM)EULw!X&+1T?=_X}bFzIq;likigPrvP6ikV8ONAG+p&WIUC zdubUGM*xcfUK3kSJA0W$?`_eWq~Cu$z?La}UdMwKCI?@vlw|NkVDOhPwm;IxmKnSh zW@#y=qor{9mHrsO6#iqK!QtmY0`ejD4@70nG@sAVnJyopZ#L6a zSd%j4!^m-*=1;iv-;h(~*!5A4%{1i~1D=k`DR|&4l*YRYD2-1f%MW;KcQlYKdYSi` zFwZXkHroBBj-52VGA>E>i9q&{XBFxCz_Qvc|3{8O_$`F|44SR5n#n$*k$pu8Qif<@ zyl+bwv|mw#TzdhzfYB)JLr23$FSUHd6-am*`z84c5=p8`0II6MUWSSnW2mYEHh#s6 z0LaV=*o2ZAUec)wqHw~jPF;;j$CVSf`$ChCXT{#wKqWJLE98Bj*;KqvRC$h$h}aok z1&r3p^MDH2z?J7m8DsLY%&A~vi5U~-@0y$m+M^OmwDK+;3)q@3&3Q`hD4hHIzbcPl zY#-IfmL+;+FGm3`06eDA_hYkUb&F(m%GJF#`jt8FJ5yIeK~@<$(-!^259wzFDzWHN zm5JVe6=7DCv!U`Z^OY*EssIT%o@p-1*^--U=kVs*s;wB*T`{asmCsRtg@D}}LF_iO z!W5^@=EzpaDroa6V-@n$wtH2;G7Qj{CBYrht&mk%)vJ1!($()vFl zhk2tKj{NFHvApqpj>1TP4niu`9g}ja*a}In?3ir3gemh45uf3G8A24<wJAbw!d} z5`bG8V0kwb=@OMyOFgFT4MhksZEq-6DWah`(N#+W6lufFIwEG^mWCC`4fWDc3%DbW zYH5Id+wfCb#N48O@~=<1JmL*1+rmSulAMzWoP#yJhCk{A!<^Ib1&#uI2JjYuspG9g z=Nt#_;&B-FI?cd2j`_$P1V9%%%ojRE^^D`gNcb{YnR5nk??7^k&)nY$>NtTh{Zy?T(YZ!P#7w;MAIQBHc=;~EbtWwXoI%_m5_bSNucHO> z`=HtdrQKe|=Sgx+0%#cLEg0QDXPcH@`gkHdujsac+Fg?6xCMs+-k}9kzm8fYA#U6iZ5{QK2Yy3Sz zUGc$BlcL^Eg{$ym|4zT(z6q+gX}8|#WvTvfAgHLHB;SG`+Q(boce;kNyy>6yzE8MEwFz4Qo8T8} z0{b?-Xp-+&N7?yhqUB|jg+>1@u25)yAegj8T?ruLmpd@7t8}uEEb&v00v%wMvK)2= z)5P*~5|Aa9uf{aMFY|874ntF&;=B(@%)6fi&l0 zqzhyCeL1|F&4nOxcsHA|KEMRuT$F(P-rRzY?brK0f!~{(kqT#Ja}D51lM1|CQ-RIU zpv~WrAITXAj4FP(|GNXh@+ew4HLt+j1bkTGGHH zCc3fOWo9)UBn^p*yND6 zIdjNo17v7ZLq3kf&wTujLq5OEAzw-$!!kAGOIG-qZ>Hjq@1B!kt{U=XkNnIR;Bv?p zE6Z@P8uDfA{LG&e;gCNm#36rkONI;7kiTok&-^)14*6@dtvlw{2Yp*d(dHWsGHCVS z`7pq(hO$qG`GdZtpMFmt^vzX2=o|CZSTero3-_WW_Cqb|#V=`lJ%esKivE2fFof8;TlD@-$*${M$ae<- z%5UABbCg}bh_-)U?`xKv2*L}Y-D<#{N?yD;hcA~~_g@&_H}vt9yn2MA0G|cC31ISl zbB^+A8-!1ru`W9$ueMo`?_6~BPYBPOo4ne#5pDl~K9=*CSCgxblt2#Uwi_|RhUQ^z zZG$##y9Lkj&7s`(CFJ-SFWVkMj$Z)o1H5Wt zf(h4e#O~eUdq~o_Qp(tdFEMz-UL{0Xc9`Zkt3BrO!xLnO`ZxcbeiOS5eBExCozd-d zN&Pj)FGp=(hjERyHQWBkQJ~=8AY|^ikHdHz(GEkd{cg(9HrvMGh<2E8?e_wp1KaP5 zas-&_!x~ey!&Tb;BF)2oF4KfEIg6S5vzYduU}R%=?Y4iJqX009+g}4PRmAMtjmp}N zRHBYGlrtVwaP~xrLs=aHIo6{5?-A--ctKeo(I~3}8)!R1dKJbU?n&aB`^438H3rw@ zAA=(A*u+tQ9>8IZFb?Zt3lptrZ;~`!?~)om;3w13seuFj^-#k;EcM0yoqjdk@i}zv zb=^eG8S?r)^3=^hpu?xQOgH6q!28+pKY-f+zcNYQYc>Ap1Os*E%l#5q5>Gmg5@5Bd zvl>I%s8a`}jQoyLdxrs0at3y>2W(TS;Q=k4*h;s_F+ zA*=kzopY;~ zWrX_YpkPczl|>hnYnPY!u0{2>iKM3=PAngHVd=Z;l{o66>kmZT^C-=)97vi_iJ&XGmtsIGV@#;7 z-*FTO0OGW}N+kvkSy;*tx`RWuv^nG%sSLNPA^T7GnLUd#)Z%#+y1Qy_?Mvuhg*NXn z(9;c*vil+cOiT`CpDq#~#XKoPoYelrbwsIY;(8+SL0X3Ou6!!R{|l*zs;Pv^sf=py zYZ(>GR3|M)>I(d8p_PDE{1ZsS&N*rZoKJ^oJHoA0hyUkOCDr1e1OLv!zg76Rg3hB3 zN=FGbe>&d8sby%lojUPv1NES7=TZaJ(>kOIsz4h?5RYrB(c&K3 zgwzda^%kUEhIZR&94#wG|K}m6O=7H;c2XAJm@ZqDieCcQ+>X|5BNzEl2g3llX_!6? z7zg<1653A}(QbeTPrXRpOJ0iLxliWzB7QyXK@Izme>WgV7b84~T2jP*@u|3=yY z*ojsS0(vDV)J6)m13CffIIPrKSN~UQU2*)@i5rNH9_j~o@ZZsKes233S}V{euneVu z0@LwpDf(?gYzBU(VCV$QU~t!$8TB;Bw_m(iu15n zQx3$&Vm$L3v(+jv{OEQL(PmVi2EyS778xnj7XpV3gh1Gk!xEXbM3!ejD*VUjsRM9B zgz-w|WCE2KuMp}h5PuOU%y`Ac>MM4suh@-J0hJ=)2T@f-X@~mfXR#uTtvH)Vin0BdGsL+Ix)r_M_CB zn|VJ~$Q(h7%)ycUJJVt_s!tkH)!|!>0R%;Wn$86cod^0kA80)nGN=u_+zyWGK>s_z z^IhPnPN1|Mc*&wm9SZ%F_6||eekS{E)fn5@BOJTfEN7W)E?FYpi2+=M&$fF^L zMB*!LGQP6l>CM^zd}Y=14;^2yRuRMadP2k37Ie7%c}ja!BH>VcG%*fyuT;|{f+Pa3 zQVC5Zy`!|@DY`}w(}0R02Y8UscPsj611V)ec4nhn#rR!@7Oep#w4sCDkUX2wE2b3{ zD_eA|Y%yUal|UE*g7Z3!d>AL!M{#mPh;C$@+z2TQ8cLmvlX+NInfD-AVcrM%hmMm= zWDIa3deK&vCWoUq;V^#JPtajVf{$;iTWvW)OB(Vm$LJF~8gf5NJVod(tJ1)vHvvGp*qm-Pga+M09SDLhDjAaSzZr z2+83Au_@FD1+o$<<$V0!05#Q5qv)Cs{5gi4eh}3d9YEX_bU9rEHFYC}B&yF>yQ-u5 zFjCl%K=&omQ&78$K1-hihWnw2KTr1q?+uU}UqC*KB-8>*wVednr^8Z!gtC%iMQIjT zv=GANNIYTkK&&u1NVH(jsR)y6Wvf+rWeAfm>KwxIN)sjz8q874!el{EapU3xoa4qh zfqtK&jH8#dumP|ZJhHHyf9Ui8>kBbV4?mPzlIW!n)aA$M#4-B%opgEbx70z`Q&j2lyr8G(1<0bE7DyNQ^e=**q?ecu zR$KUu`Ig7%-;U8w>W|UOl6+oKYeE`}sC)~`8nvo2job1IL3f=TJ3=KJQOcV8y2`hx z8K1w()d0Hd6@80(1L5|_h?Tl-nokYfL|8WSb*|>L@GL_{E9~0sp2>R4x0`!@lCv2Nk4YoQhPh_sP zShCJVc-+wNlvtWVJDwE9$3*2y+X;GSXP&6ZQ8{6;?MYz=D{yVx80%5tM0+?~(Z3UQ z9u+J5ciK2y&22m`&ilHdpq`^9;P)M1?_J>WBvoKUYJ{LBkwR-lDs95=eqo`DMLJyq zvbhwpWLRX7Uu059WYGbUO@|Qo0i<6o=0p4C(nmxdT`LySC&VJURV=2v#MyMOSVEsc z+~<*gL=-?)6w;%jh#nWk^n@s(W1^IfBmQYoM*kwp>EA^qy)3He6;VyU63gf_98o8hh(GK2unc78%z^AVzdpRiW&vZ7ps$CkULuA$Y3=#T&1bY9R zRWw2zcg5i_(H+BK0%tVV-h2uiCVJv=n7F{qVPgG64%=XGn4LK+?k;}J#IFQ=5-iqz zDgTJFn7B~J%$~(AoZBoW*8fE;ws9hh!LG82jZ`2ufyFk1#kPROwt~g_z+zj#Vgq2Y zZD6tOV6h!wv5UZBJHcWXgT;1%#dd(jwt>Yi1&g`BVuN5YH(1OA7E{1tLtwFCu$UVx z<^qfD1&fV>#e86~F|e2)EEWKZ?FEaCgT*cfi-o{qVX#;PEVd6UwjV5Z04#P8EOrPi zb_G~00u~E{#jZLtSqv_tO~5ClBkKvNwcEhd{I}#WvE_MMa6$u#b;C+to_+|DXP?5Y}&EBZG11hpbQI`3=Ac4%L25 zx#Pn#6yiQC=H6`{8uEGlO3#>USlRAX_MaKugLEgGc`g4fJVU=*|H$FA!-l&8U1Q@u zg>rfZwuKb+(x;Aq2Rls9fN`^RpaaHr-ed#Y*#ZC%s4XDLal&W&CVg{!%!Peno`_qa zd>+8{xZ7@H#25B%j)cb}VZIE<6{fT>lFo<@UxSW))9{(w4&nJ(0H%sEwLJ@Ez+Nq^SwnCf`sr71xL%5h$KR8fh&OSxq?^{YhVgoS(}Jr3w@})CmshT9 zAqw#et^(Wv;7RVC=5iy^a$iKs*T@o*lTwk!b#cKXfNuak3;3qFpf_3&oy|?54D9wB z-Q@BIz@B>H?;;6qj0N9DXpL7m_iUtetA*uV#75!VMM&BJzziw(LUZB0+M9ECA>}5r zg&_Gn5pa$E;@q7`!PfBH0l=;1vZK+m_ao(p@K{C*d-QLX4tU4RRecT_{}XTz;74(* zg6PUyKvv1s8>BIOGc$t3UNha1zbwMXhafPL2WYER; zKier|OEBQZCVT87{a8G^a;UX7|{AcJfX_lVc+8V*p3J4Dvd!BAKk3sL%h zSI9N!JrhJ+-k;%PD$tQdc~~-CScrc7Rt;HTEG%Tfwf}|pCb;6b5{%Qz*r)>60^|(b z8^6KgNIhkF0v&kY z_@v&_!x-CJ4H^ZxEM3b{0Qh&8-loyTZTc=SGhx7Kwe*!K$ZF}sNQ7C<7Y;1dKiqCE z4fZHlL76I1ZuY})fs#p5)EqxMQvhjEaA7P({fVPM1`vP+y(&o*^y(BfwGLEmT#F|d z@p@=UCkK3gGo~ck)^k1@7K+h{?1gQBesDz9gToziXv)E%>IU_D0_=R{8yhNV!Cw8M zl+A;CaX&s*-e;(RGL16mlLv5A?{dL-WYFggjr1$SV~Rh_$29s!TtQF&IL|er23!G5 zjDjZtnAaCPWfHrv`lZk=_y;7sLFr?o9&b=ueo5Y#>%8$cE@m-q^5tx!UX{H=c=N-QTSmbJV5C|#qUyQ6iMEgA!W6z}Ukn))Rd5slqNr%UMh^RRGJ^Rr!L=6k^s43upG3Ee z1OlTWTF3?iX5-;NZ(w*Bcb=|CG-cbn_Ce2c6uhLdf2ZFVDT4Q*=-+e%WbVf$_lj(w zVS5z87g6*hz=r@ojxt7~A>vKkiq@keB7e+va8T(B_@u9X2V;eA2=8>sZ*wKp#~fE5 z#oIC3m+7O;>Z9nF9EI?|5xP`rFLos=-xtH1RBU{BIxgQAL;4l}Jpe+oSpVEK_*sxfTDAsH9XU0~HIh zsY&NT0-Vh%X~6KV)Q6Y3y!iVZh46a_SE;mJvMN!zykrY{dAE*$xLjVc33=`XU`?^) zK9hD&7%ne)1U>tWj)nA*AzvgklH~9N;P6t|&!w6A&@zXYz|CBmi4e=ErCA6;*QHrz z4xe&I1I%?Y-C>cX`uF5F;AnweE@QxoSC=OP@4xL{ikV8ONAG;}J}ICCXeccMi~tq` zye77ucJ?xh-rMZatF`b#)8FZz!<537DSckYgB2zRf21PG;EBNCFJWwdq>rtnY?!5` zn2wf$151AlU<&`S&fxI#AOReJ*gp`JHPd|Uwz&?M&*vI6?@lPi5--odP;<|$z|7LK#gloc$CY!ISPQKsIr?iVz@aTJ(WF#9Is46 zPi4?KWv>D50hm`Yb$Y@oX8B6WmRF;|C4{YI^4lj&ddZdXIlMAn-id+T6eFj~u#Q;{ z1%o_-Bo{%y4TO&vRFZb;&!dQJfKTn>3wk**Ic zi_`Ld?0c4SCk-Sh!!gT5O%Be_(NeAwsnL$qM2t?NhNcyb2htmFEE!uz@S}3#WjI2{XJ?!Nd|XCfe~yHf-qEw(Y(D z+M^OmwDK;U9I!PXA7c(D_kSgVJzjYPWBaH+wk**rdpQbl0pKx>z8{+gZ^&(xJrkX44xv?=>sz6d_iO}fgf#G*@8CVKx>gjpt)hncTbc~u2Sz#&X? z(c~0jj;~2pZN;GOieZJSe2xMv1nkxbVz-$UrZ^5TN47#%L7P_@tB|L*-Kz@johs&# zVSv6Y34<`Y-Kz?#dR6aIx^e)kkx92rBB+UKIP$9(#q!4YISM2FJ%n%pGC5Q)o`yG6 zp0JI$U11lNrzry`Kybn@4D)b7uPfrm*`;8o;!}oQSi+7~67PeSsCJ+`SLi*?ANBft z1JMTK!?|(11l9E@@<9Mx|J7GV)dmd02|{9yA>t%QRz?K+&)PDn^5(e8tHwsm zYU37BHg2jv!BK!4051cWm|vcTtz);}Sw>w$qb|zSXL|6w#{8Xrd$0O!qGii;0=5K| zFm}l3#$NSXNUlRC-#}Pz;@Sz*xEcFtu@AUHqi4dlnq}vrD?z=-)^Q~`gagG%mQ4VU z-!dqeWjE+!%PhNWHAewj05@use509VC-`P!NjVLxa^p0=Ep*WD-ZI!X?#2eJ0|#l5 zUB*P+*nP_75k8C_`*-@edD&;t$yfCL>#l6Hi&1eO01H6NZUyKIK$E>wa~cEi`PLXa zWwY6tkFQ@SLBA{M)K3IsyJkBEICgXFGOT6QTn3u{9YU8%-!;bOSWLbSXs(GGIBIL2 zr5t!&y|AP8v;2m_tAQ7z2J<)m)^&|}{)UoZAw**SR+}vsNjuvvV8=})Ig3jK!m7>3 zz*gw8lSjJ-v$$I9W2(U{t`-+9Fj3T2nsvvtX3!ivZBYxusP;M?0deZcr!%p zuQ9rR*2$dty!I}R0>Ch;eFwnQ{f^G(P#}ji>2F^|WbdbRbu)yaHtczb-vO`zE{gI6 z3P$(V*hi3XcXF?memq?oWpkK}>y++hbzThd~8L*oCAAWaeo_&%O3ww0N?3}xZnRdhy4ZIWLu*n!t_}^QzLbU zf*q^pb#MjRzlN~E#3R=EE?B&$;LMyw+8}AqdgI9t2%6lsk>UI5gzHfH5>(K z1ze*M#5IY|EOmFHx4+jBF$1&I-HzOt+|+#x@OB(#sm~&+U#T)nmp_tpVkH8z)MK}1 zee7<{`V5W&;Kr5u%_>3E8@n|VRI}6%qqoKa>!Wo=(&d`~F5d=N-VH^%L}k@dk7;{D5kgGc8;VtmXedr})zSb(+HkXuh#9!0 zVFhwSy)@JU?uesW8ercx{FD~SFHnSo*m=lKZf{W879Lua)PH{egEL`b>2yG_vx=O2~ zaS0OY$>R0}`2Ojn_kPZM?;Fp-h<3z~RO4cf0zi#7V(u)dp)(#yHSR`^2c{*dM$8@? z9|mBS-T0+=B=uD!yhv7@X7uBJ)g)0RfF<1c6O8Gru|x%h-}oxv7~nMk)5B|KqQX`q zslu94iJI0>?D3~2fk-I6#@{2<6(96j3Z?RgSk8b|&L*hdrrmm{lLwa)=;p{KFUB^c zk1Z2w6BKU~RwJ9Bc$=_lBq=kj6EsM3!ba>V7pID%%Tn_08TGqCTY?I{(IR)Qvsq{S zo&G&=O>mYs{j=Wp3HPWrVGCdr{6bA&-=-H$^8M;4JHL#t9+y!T7X7!lLZSWm3};ft zCxDD!?!dUN(#b-y#7{X2bbwjPa@ZA26U)y@K$cjJ!&}P@*Wd(}SPs>;9In9Su$`9c zuE1HWDcC|d@`_7H57J`wQ&jkFt#>Hg7735E2fdzQg{*c}Oc-)O{yP1_VL7~-&Bm?e zi`;P1gcY@M13{NRG#*GE(@%(F`pvl*>B1O(Uk>kPb0LTv-pyvL4=}+u7bPISH@Bc; z`}Mw0;P>Wcq{3O*Tm!h$qyjJ3RA4hSX!CdEM{)*m<%=I1P56^*Ni~=NYOoo)uKDLW zX|Nh>hDp@?bHKHLR{%^GuOuQ{oFrP&ruTg!TfBqRE_D6Z2)pC3#ft4nxG8zVege&t zR{Sl7^oULo%nd6BI0^u(Xa!pfOb!p|+yDn9{Qk&?*k_1ZGHD5p=DJ6>MwE!s=H{y% z&BslUjqCgxa-M|{n*v+rM@h>Zt2sAqE9C<3+31)S>PBkEK>KVdIz6MNG&5M^8vsmfU68b%CZOW?Lz2j#g(L+ zgrJ-IF~DDmr5jjfEnfj#2f(G#k_H|z(T&wEmpM$|_iVwkWXtyeaAvmX&JGJ%?7TLe zwC57Qo@@CnhW6c9LV;VOJ0gkB$$Lb zx6s;)q1_%sFs<-?wZgc?j!0_V0pQU`$b=(9Xd4dMeBqEyA{k<$z#-40Ib{DChwNIG zAxtO^c|ndt-UT4TG&SViMf}V=HaX;N&K&aD02$iUkdNc=GatX>kk2o3$d?kxuuKj4 zk`;dDo2fYDyXRz>tA>2pBR}&6xE%7u$}(K6hI|=2Kl3L=IOIFzF3hqUVx)he~!kLy4h182*()M}=-Elybvrllf0S$y!u}l-#7H}mAra{qX3@;ya{0PeRGcTY8!-4o3SoCC9k$wkndb{ z^iK%So147awh?XrfIgPwb6CTh-**YA<1ZUzD!KE);Hlq4CT1K!V${{h?v_?1cWUaRp( zCm5(RU+$N{l6Z15ngFX!oz)o9Mx8p?yzMy2Q3zqbbvCKw(Akt=T+s=Z?=(KlHw{;G zUVxn7h)zsZJ8zH26-SWp3|Zwz_Wa4y!HKY1-}z4%Q^Np>7}eN& zzq+vg+y&#R3xcxi8jT{ZiSABF3?r)RPV~+Aa=1p*?+>% z>{*nd7SF5D-BojIUqbgPw0Vbto^F_w-4_91Vsa?^bdmTd<{%m3r1mGSBT7vZ*As~k z(lYo9^Qjd7FQg)>rV=WrGOEF^WmGIvowOLKEAX#{Rsve_Paq9D=cpNQJ{_j*2)9xl z{+~~kREvKO{5uE#R^i_YI*&S#uOI3Bo;6f}T-%}e1v%wg439>TmZ9Bt>cqbd)PuI2 zOAS;{>yRp_0&N&UJg%umi+gAjQa7O0Tab1c+HI$Cw5%BYpNE__iLqMRNm+Pfx@=V{ zehFZ6J6gAmT;xL?3o~`8+K| zxnlgP!2dHejPQ6f);FR38)*k%Ct5iO=#`*Q8!6Nd=mewh#qnGB{{a`R BJ>&oY literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/NoInjection.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/NoInjection.class new file mode 100644 index 0000000000000000000000000000000000000000..0048a0702b7d1b31baa3e1828bb53cad960119d1 GIT binary patch literal 467 zcma)3O-lnY5Ph@#(sf(4O3xnKBF#m-C|(LeVJU*rgSRvdHf6hkW>@Kd>cx}b!5`p{ z5+}P=@uY!dX5PFvGfdt;Uf%$m;W$JEhYhqFI3m<9O=_|$LZ#cA5UN8v(}exlqgc#=*|jTqZey3i^! zHoYK3Zf^5rRzlpeJL=sNTIP!~w0W8lXhaBaZN5_a+V~MV-$ib0VwBNtu#k^3LKQVa z|Nk=(27i!$cUt2F0WZy;fG_t0Z;m~|me|(%FQDfl-Qc%gfFX9+k4ge|5pqP>D-bU} e=g5}}DjWaeN7*ctoie*sdPWm1*6{Zf{DV)K(`O9; literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/OpEntry.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/OpEntry.class new file mode 100644 index 0000000000000000000000000000000000000000..fa6347406150fe284d49b52ed490499d5dcd8b4a GIT binary patch literal 3339 zcmcguZBr9h6n>VxY?7`bL8z#$^hFH`7`0R@C?&*L!ALAgvC+142}@WF*_hoZ*naMR z@DJ$MzCoGJ)R}(iO#M-{&%L_|i{hZunewvt?tMAudCob{NuK@l`%?g;_&$a>E=Q1y z;xMj=$7kYkRXnC+n87tM%ZtbL7-mt3;RZgBVGhL@O87#|=Ed4g6<FJv?Md~R-`a6>_F{*HcMPuKK%H9cK-jH=Nb z=eg3=xm@P*LNTAq-H_+PR%2FQH59~s7m7~PtXFxSyQTF8clX(jUb$PW>kWIwaul4( z8%wQptFmHN^s1Gv*lBy+c8pa!{Xn<%MKfLWpQoj$W3C!Bvf5B^z~?G&Nk>s*tztAB z)2h?yMYC=?6AG3SzJnen-%6X7Z%JBvGiXEe3W8Z{i6p!8X5E-=tu7kPlD=4zL9r@& zZC-Dh;@w*eIxD8FAhDO9LL*mqn(HLL_J0uZg~5xJptkawuHPt~ySs{*c465qmxSMI zJ5NKtYg3k0GxR!R6Is#iD@|E~C;hkD9Cp1FcJyY|U>(wDk#`HMs!Ok(kllgolO=my zZ+L0e8We%!B~iiYJgm7lk<e)SftpoSFtS&j?6^lcQ~4^ER2URL8D6Z^JUs*w z!fLE&wVD;xQ zZp)WCbLGC2+USMUaPS?RPGKY9IG)j784h8?Vcd7uy1U)w8G*Yqr&`$ng%7t z(XJUrLxY2shWmJ+VGZjl9tuj|X?O=m6`a@ueJ9mEKW-H=&bNJa=sIWZ?%xI^I*$VN zzFun?g=Jny%=pX9YjZvF0`pZ%yG9t)uyL=Y*Ercx{+^GQy$-P^Tr;w_dqPsspSb0B zxGk{ZJ!s3a-|p;vei3>ogiqD9a{{P>?4C;4VRC$TSlXi70_H`;sFj3p61NSu+M4;$ zC|M2J6&RPk#I)ap*BBVMWvjWWvj{HuA$!}qt26!wicYcx{hWI?o z<^ZA$q6gv|OD}&9;UJOsu_qislIYUJJW9M{MD!_llDskM;y?<+d?O;sN0BqZs7uZS zmw=oJc0tKy#N+Zecf#Du{0A-rA<}%2%!yZ!IZ5CNk{KfSB*~-*dRUT~aDjBlWIALr zr0bH&h(0OFWJLR<4?-7hlYtN^I_1&&(@RnIO=-0=$5e%7s$L>?<`u-wlEg8sy8*YPDkYPhe6&k)brCC^%v*21YxXfK+Y@R^EsOhrlWm^3v?g02*P@Jx+K zUr&1(cLEYZ=(AV)Zh~Y10Iclq!E|doT3aavqEw*fFgV@ zB~dAEk&h9_F#VsC)B}SDCk4Ip_{78XjB*vh%B4c_p2#1FmjeQwROn+w;=NB0iXSYN zgIo<1%OMVtVmT}jMmEt`EUTPGi(Ba5#M`2*U3mRcYcq6Szyz+b>}CkG=nGY@12KmS z%!dnc99_>T;Vu>9D$63whoa(=iV6NH&v~l7rS9BPDf0-`k@0w?IEtTchV9TV2nOXa WAP_1tfH6sXKl@xaSEjh$h3vn-hWXL} literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/StackSnapshot.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/StackSnapshot.class new file mode 100644 index 0000000000000000000000000000000000000000..b1cfbd42f5d94825a57934c721ab4d76062cd64d GIT binary patch literal 5332 zcmbVP33n6M8NE-EJ+eH;w!mgF28S5%B4pwO2sStb1I4LrNbH)mZN}2r9vEqa7Qktn zZgk)GLfWRKDKu@`CT$`Jv@~5pTaxZHO}C%Xb6QRg^uC#qJhJ61J;#3Y<}KfMzx&m|gd# z)7tc)k;(Q7RE-#uNiCa8b4`1>HCvoPQ%g>EjbzhCaNh8}Q;BRXm6A1KM zaayPyG?MyoE-|jBN40U2BjG_SrkP_}+K}(=V8ujQOK`He#5Tc>O0YXkJ)tKhxIlKw z$OuFS^?0r;7n?F-+N9ML%XDR?Gg&>6={lihv~h#DxOXI}r7}~N+~?=4z=}h!VZO%R zH>9O(ST=2&1eUawqoG$u*;pFPbgB?gr0kxu)JZ$aq@Eoy9wJ7vHy}`BWQKF5xhK6d zk;+apS#54AY}U71mZ@t=#udz3P6`ATl`L@+Lrc=KC+&+1%jP7$v;0h1%uHiOX9i7T z9<@@tWcHYshPDAO&LW6#3GcRKh&`d59Mq5Nrhs6`p{$kKGhss&s4(RO514{ScpkWz zVc1?cXC&kLNe)eE8Fy%{%eGgOULZ4sRc5s`O_6aUv-4O^qx1f@H>RfYhJ`_)B&~G9 z=EM$TyKY)1T!iiOBb<|n+M=1bOGmYXdY6?;#swC7*epb*;41=KU$2vSa#}}b?k6Y4 zgrUcW?E|@Hev@9Z1?o*LF&@`i3rT717ATh%4|Z1`?FR*#+}(3U)q2N_?Sj}_*HbPd zRxTaWcNum~v3V+-_oysvD%K%NuF4cS747Iy@KqIG!=oy`j&CS9t71F)St3|iqJ_c| zjb);4VTn40Ma4Jqm_Vnr8kGb@N2k)d7LOKAnO(2i+(EgjN5!{rPQ`iLqvG3moQYEL z9eh{C6ZoD$9TS+%uq3C3^z4)s&(v1p`*rvMA5YeSQ9OkoD)^C#r|}HWNk~Cn#RXhc z@hmQJyB(e<6Dls_$2>GDeuBqUT)|Ii={XfY!_Vt*j{RTM;g>3&$5j=-!mm|q!@Vkg zBiCNTIRW3{HWe@6MS;b$O>fT`W?WAbMU{%*;&%d(H&TU5!0s78qQ`g&!?qLq1Po;L zw3fAKzkbHEEANuM4!Nvsv0OUMYoYL7S^%93b%4x3nEBUur6;7hOw8_wE9lKxb55$(-yB;rIB1K*{+nc=wz^cSwFs{E?+qOQlR+ zH!DjFPvnxZtYIa)cDWt0>ZoI`Uq+qKQUZ6oQQIr#8kiq9qngo#8&bbznv{!`CgsWz zi{BZ^Nr8=CVoS+)0`#IQnjm&1=GYTh??pM=S+AFUmnUZ5DC)Gagr$Ohr2`hhVf`fa z9Z1@bQfYcP{}cJLucKKvr)SBZXGw_pm7iQvD}k(@p_6Ve5rt_F1x5Pzru8_#n6f%C z2DRk$kd}>23Ebvoq0D0GN*#B;ImVsY7?4N4Fz4Dn0Zt1 z4+b!3Sx0jesydKN>gj${%Vgvi%!^)7u05wR@79uWQ_r+I8+$!x$fevfQnGQBUxnV~ zuYb~U`RaSUB6ThIYo<9unUb@A3ap;PPq}z_^S$~yw6H|9@fQp42zh_<*~vE_BB*7b zmo3{aj$DTym3;2+xB$^{8NLG-;C}{zi>Szx_RgWml|KK*KtrJUEH*|O0^L0oOF5&2 zgLzb)L9_D`vR~>to<_hP$fJ7Ssem|t>)KPa?ZDn1p7Wa{z`ki$@byc3A#Rnyw=_Qd)@uZIuam>`5h7vfB zfd3*EJV}cVqmIRu9*fIdi;|s6`0M@KBpQAyxz-1WMWS2jn614;?)hm_??X6z5euKi zA|IYZgLL5qeY?lS$|C3;*vVBg=q?(SW-FxG*_+pTHdnZt9p-j%)0?oHtu*p)8k0&q z=!$U2-{+ug>%+Uc`hX-B!M2Y+GW+D&b0Sr>B zKHAxfA&&V`P>M4b;hfAz1N=9!P{FWJu;&%DDA@a7icV1Y1q#NwR7$nE=@Beza-vty zqE_~r@>nKQBWCjNsCP5ZP!F2uRh}G2z0F0O&BP~hN(6q0CU!?K%2rZ-pX;yDaaG%S ziFT-m>&R;$;5875YB4mq}$HMFtaj9 zXb;%nWnEdz(D#!QN%Wy&7>5|f2Evy-si>%Jcm+bV-LPxP0cP74x{&FS8XYTYlu(8p z^j?{6^2&5+1!<@{je3cDIKmex)R)%T#Dt2*zDe8c8oy*FILt161ijqC3Pq zA7-t1E6?+TOrA#R#F$LIsMQD~FKBhF7~7beq9BH8Lu$2#937?|uU6$;L95FUxQRw; zRl(bAwMMAc8>qR#z0TQvJEi*|5jY9o&2d=(>N~DtK}WbHkK6p+tXCefI>pMcp*rQS z-i8XBas|HHZS+wWlAj5#)gD@vS*q;pAc3C aP4ivq^CAAf1MkGU+}=ms-pBC?eDZ(Y1OPMu literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/StackSnapshot.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/StackSnapshot.java new file mode 100644 index 00000000..f384e319 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/StackSnapshot.java @@ -0,0 +1,107 @@ +package edu.uchicago.cs.systems.wasabi; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.stream.Collectors; + +class StackSnapshot { + private ArrayList stacktrace; + + public StackSnapshot() { + this.stacktrace = new ArrayList(); + + StackTraceElement[] ste = Thread.currentThread().getStackTrace(); + for (StackTraceElement frame : ste) { + if (!frame.toString().contains("edu.uchicago.cs.systems.wasabi") && + !frame.toString().contains("java.lang.Thread.getStackTrace(Thread.java:")) { + this.stacktrace.add(frame.toString()); + } + } + } + + public StackSnapshot(ArrayList stacktrace) { + this.stacktrace = stacktrace; + } + + public int getSize() { + return this.stacktrace.size(); + } + + public Boolean isNullOrEmpty() { + return this.stacktrace == null || this.stacktrace.isEmpty(); + } + + public String toString() { + return this.stacktrace.stream().map(frame -> "\t" + frame).collect(Collectors.joining("\n")); + } + + public ArrayList getStacktrace() { + return this.stacktrace; + } + + public String serializeTopFrames(int maxLevel) { + ArrayList topOfStack = new ArrayList(); + int level = 0; + + for (String frame : this.stacktrace) { + if (++level > maxLevel) { + break; + } + topOfStack.add(frame); + } + + return topOfStack.stream().map(frame -> "\t" + frame).collect(Collectors.joining("\n")); + } + + public String getFrame(int index) { + if (index >= 0 && index < this.stacktrace.size()) { + return stacktrace.get(index); + } + return null; + } + + public Boolean hasFrame(String target) { + return this.stacktrace.stream().anyMatch(frame -> frame.contains(target)); + } + + public Boolean isEqual(StackSnapshot target) { + if (target.isNullOrEmpty()) { + return false; + } + + if (this.stacktrace.size() != target.stacktrace.size()) { + return false; + } + + for (int i = 0; i < this.stacktrace.size(); ++i) { + if (!this.stacktrace.get(i).equals(target.stacktrace.get(i))) { + return false; + } + } + + return true; + } + + public ArrayList normalizeStackBelowFrame(String target) { + ArrayList normalizedStack = new ArrayList(); + Boolean targetFound = false; + + for (String frame : stacktrace) { + if (frame.contains(target)) { + targetFound = true; + normalizedStack.add(target); + continue; + } + + if (targetFound) { + normalizedStack.add(frame); + } + } + + return normalizedStack; + } + + public static String getQualifiedName(String frame) { + return frame != null ? frame.split("\\(")[0] : null; + } +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContext.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContext.class new file mode 100644 index 0000000000000000000000000000000000000000..cb4cf5655105a2afaeccc3c06b7a9b6d0f9ee634 GIT binary patch literal 6951 zcmcgx3wRt=75;CsyOT_&Nt#zlp|mLh(mc8aOMwO|O`5hT+a_&7Ar&ms%_Nz2Gqdc@ zh87hch=_uU?~3BvDxd;352zptf&xB36hTE4-y-5$l!yPFne5Icpr$3f`ll#C!5yIr2Vv zdB2Je;DhqAU&V)TZ3#Xs?;k0_btU+yf{&@F@z#7?!6#HKkRm>*q8``CMW0gfX?#X* zbU-fqtcuU!dI{hL702O5De&_Oz92hatRl>DIWnPQ5>pCpRdE{*sc6ENCCuAp>y9#f z1$WBJR~3A%6j9uz;%f+t!dd z+^eV3M(PNbcLt_&`TP+*Jz`qJy(x3lbj&d$EpT!n2peav;YRaJYqt@1Oxx;B=$1f5 zY_~q9M>CF@h;G)CoKf0m4qLjDNf`p$@}HjJb-8dj+UKN*r@at{?yNZ5w4C-e6i|_a zU?0lY}Zq!?E8ZuXT+p!mKPG^VWKd{*y~7j5-#`2-BEpS zmIkh=1w^+%?F=4xjFKo^N(Na*-u5|qd=G8!qH<&LdkP*_@O{bY^p;E_(Ua;LO**90 ziM}6$J1h%q+F{!XL$`>rIPEYP=MNjsOn^rPxv(~s()Y#8w9~$fxYe|T;&`;H4e%g0 zjW!+`(-Q)9`4-)moVKcu$Bnz}x*%En_>#nEofFHPlO?{IOma|njF}ph>w|;+wu}Nl zV%E)JrtU&scHPit>B;nnO>>Y<5j(j>A0>O(=%<48hijneNk>4P{7nVQ{BY|x<-TH* z!1n(gYk&a0Z6*5hl;NcIb?uECNtsM$kfB#5ErDC-kUo36mpM}49LcxMvO@mJdfkOi z@{~A6+VLEe%l&<(L&Gk}24J6^NyQDxRnG|3u2nkqM8Zg|&sgqxA>fV9oLipV#gA=` z)W{?TJtP98SpgMiV19{EHIwv2!7M*xFFH8MbIJ+OzM~+X{Omd_8A;j{Gr93Pn&x#; zLLc2Vs5j0Pc8x0p+Jo$wPWS<`Ob-S1o*pCn_t5Zj%;u9Z<|5A<>rFR(=cVA~61avQ z{D22+0T0Zo6f|_8lVwVQb@^wi6!wUQO*mWNgj`v1xRX>v44XBq!7DYKg|*D+8h(gJ zH9UqNF}G{@F&<^{WZ7+5mTCA29v4uC?36JkYpGJ6FKuyogbOqm0KCP{5=6sBFk7}3 zSmDiIKP~K}Bbt6rvftjU?{x!0!%y*qf}d&lIiA$84qY04fnO^4m4;vAHyVD6LD~A9 zhTr2UCZHVQd=_ZfI3xC8x*~$7EAbR>f2_n68lJ(QH2fKVQSes{ zf5YGDg#u`Ml3fM z{8Nf4To(Uc%@#2(%IFD}W3|Dg;%VEyYzIN*?dz8K^QU(W6#2Ee@a(ji<=qU=Z7VX? zs6A*7xdkArErBJzpzPvc<>J-CikbE+FX~1N0S5b}7Q>b0P{!yPVoB7rBdBGr7}E${ zCZg?frkvLuoR`apa$ZkroiU_m5_Iutb66sfFQ;uYdx(ZLEytCn3RRTxeUEHKSWhMs ztRfro%r@kog3%6h`atC2s>JQlWJaE)T`!5kHQZdwgWCBh^GW5tP!gr3TeepU(Y`E( z%5yxA*%nWr>ZVP>&Ez1#4Fw_jWC~be+Mt0UcVVH^dPYG)qARQ{V|rSKTfwu{&p2-7 zxcC17Frc1q0~wq1a{PB$UdBVp(M>CTwn5hylVMDrL3oFwQK2Iw&tjC#-Q6Mo6=Fdi z(XuZC^kBuduKsNUJ3H6LVqM#I_Vfx|RnWkB!h)}wvl;O6My7cq&A7Zkdd=p(=?oWQ zP%}d)(gfxujGO9gdB!;LU*;7tPZQ;$O2b=lg}~Ar-A!xE-eW{#Zo$P)l2poI(d04{lU1#!}n!?X*EXdd@k~JCc zRk9j%`>bAA39NV98~B_hl-p*_=iXV(WuI?>%61QWdEE+#+Y#d4!1K+M5Y2~BG%$(c zafH|m4^*m?h>SyFr-b9B<4~Jh#!=SXIu5P*AhZe0TjSl!SBL6DtHVXBBK6@3RNTNV zDFrCL_91(S_l`%dy?L1TlOMb0hWmM6S|6^eoWT73IH7n|a$YR6G`04?k-VDBimw}`#^fkl&8=yuBkQ=2{1 zM^E9HaV)x-8x><4ubXIA;8+@^78O{CV{kOZEJiCGaT1o|bTrcJ$7714ckx5zJ!r;* zXu-p1!xLDJC$R!gV8H8q>b&_`bT!yT`NEYSL2+5}SqyYpC2}6g0*8AP^S*@E z3!U3Cg(YXQr5-bd1`27Iz|uQ$+yokL%u168K?=*y*3uqJy!Ba$OJHD#5>?b;m{usl z2xn;=k#h~0YvUEp=qE+8l^5Yg=KA%Xr4fe&c7_WZK36 zPZnpvEQaNJg4@D&?IK$&$GJ94UZ#*HPb3V-hjBT-xywLqkTAmeFv1c>eP|M`a{xJ; z8^&nt%`T8Nt}a2VOap1i0%`DpP#7{UVZ#g*2`S8xFC?=COGoroU9iq%SUePjYBP2%KLCC#n3;1%RheWX4#ft8049bi+b54YBbYD;L; zNt}{n^HPccV`?5_sDe-$$lX?4fOhO;EE`O7J6*NT_kd*WyA^wV`);KJcepIwic8p% z{NC!TC0l%9qFS;gtskL;6?iSj6v{cCZ%gM9fsEH;hzja`DPHeuKgJ8pkT~WbsY;aau+H0=qGvtUr!^Zld{R1bH#rmer&UZ@?QV z(#O!m=9_Stk0DMBQlT2jhY75{&Q04&3wh9TD>Pl5s1irwnR9Pxr)pDKqC!-QN}d36OPMNe=A2vbB^>+@=+%^i literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContext.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContext.java new file mode 100644 index 00000000..4c63a57f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContext.java @@ -0,0 +1,120 @@ +package edu.uchicago.cs.systems.wasabi; + +import java.util.ArrayList; +import java.util.concurrent.ConcurrentHashMap; +import java.util.HashMap; +import java.util.Map; +import java.util.Collections; + +import edu.uchicago.cs.systems.wasabi.ConfigParser; +import edu.uchicago.cs.systems.wasabi.WasabiLogger; +import edu.uchicago.cs.systems.wasabi.InjectionPolicy; +import edu.uchicago.cs.systems.wasabi.StackSnapshot; +import edu.uchicago.cs.systems.wasabi.InjectionPoint; +import edu.uchicago.cs.systems.wasabi.ExecutionTrace; + +class WasabiContext { + + private WasabiLogger LOG; + private ConfigParser configParser; + + private final HashingPrimitives hashingPrimitives = new HashingPrimitives(); + + private Map injectionPlan; + private InjectionPolicy injectionPolicy; + + private ExecutionTrace executionTrace = new ExecutionTrace(10); + private ConcurrentHashMap injectionCounts = new ConcurrentHashMap<>(); + + public WasabiContext(WasabiLogger logger, + ConfigParser configParser) { + this.LOG = logger; + this.configParser = configParser; + + int maxInjectionCount = this.configParser.getMaxInjectionCount(); + + String injectionPolicyString = this.configParser.getInjectionPolicy(); + switch (injectionPolicyString) { + case "no-injection": + injectionPolicy = new NoInjection(); + break; + case "forever": + injectionPolicy = new InjectForever(); + break; + case "max-count": + injectionPolicy = new InjectUpToMaxCount(maxInjectionCount); + break; + default: + injectionPolicy = new NoInjection(); + break; + } + + injectionPlan = Collections.unmodifiableMap(this.configParser.getInjectionPlan()); + } + + private Boolean isNullOrEmpty(String str) { + return str == null || str.isEmpty(); + } + + private synchronized int getInjectionCount(ArrayList stacktrace) { + int hval = hashingPrimitives.getHashValue(stacktrace); + return injectionCounts.getOrDefault(hval, 0); + } + + private synchronized int updateInjectionCount(ArrayList stacktrace) { + int hval = hashingPrimitives.getHashValue(stacktrace); + return injectionCounts.compute(hval, (k, v) -> (v == null) ? 1 : v + 1); + } + + public synchronized void addToExecTrace(String opName, int opType, StackSnapshot stackSnapshot) { + long currentTime = System.nanoTime(); + executionTrace.addLast(new OpEntry(opName, opType, currentTime, stackSnapshot)); + } + + public synchronized void addToExecTrace(String opName, int opType, StackSnapshot stackSnapshot, String retryException) { + long currentTime = System.nanoTime(); + executionTrace.addLast(new OpEntry(opName, opType, currentTime, stackSnapshot, retryException)); + } + + public synchronized InjectionPoint getInjectionPoint(String testName, + String injectionSite, + String injectionSourceLocation, + String retryException, + String retryCallerFunction, + StackSnapshot stackSnapshot) { + + if (!injectionPlan.containsKey(injectionSourceLocation)) { + return null; + } + + String retrySourceLocation = injectionPlan.get(injectionSourceLocation).retryCallerFunction; + int injectionCount = getInjectionCount(stackSnapshot.getStacktrace()); + + addToExecTrace(injectionSite, OpEntry.RETRY_CALLER_OP, stackSnapshot, retryException); + + return new InjectionPoint( + stackSnapshot, + retrySourceLocation, + retryCallerFunction, + injectionSite, + retryException, + injectionCount + ); + } + + public Boolean shouldInject(InjectionPoint ipt) { + if (injectionPolicy.shouldInject(ipt.injectionCount)) { + ipt.injectionCount = updateInjectionCount(ipt.stackSnapshot.getStacktrace()); + return true; + } + + return false; + } + + public void printExecTrace(WasabiLogger log, String msg) { + if (executionTrace.getSize() > 0) { + executionTrace.printExecutionTrace(log, msg); + } + } + +} diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContextHolder.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContextHolder.class new file mode 100644 index 0000000000000000000000000000000000000000..8af3ea8f717d8d35940bbec2e8f8433ade12fc42 GIT binary patch literal 307 zcmX^0Z`VEs1_l!bZgvJvb_Om+27%(#lJLah#H38;{JfIXiV{W!Lk*wQlv4fDH7XjS*gh-Y>W(y3{1e_U|?WkVPs%t VU}0bY(yR<@KoLd;c91v&2LKXKT&n;8 literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContextHolder.java b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContextHolder.java new file mode 100644 index 00000000..cf900b3c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiContextHolder.java @@ -0,0 +1,7 @@ +package edu.uchicago.cs.systems.wasabi; + +// A simple interface for runnables that can hold a WasabiContext object +public interface WasabiContextHolder { + public void setWasabiContext(WasabiContext ctx); + public WasabiContext getWasabiContext(); + } \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiLogger.class b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/edu/uchicago/cs/systems/wasabi/WasabiLogger.class new file mode 100644 index 0000000000000000000000000000000000000000..a21a76557ba1f7316cde4a1df22ef17404e75043 GIT binary patch literal 1642 zcmb7E&r=*l6#jaDu*)z3vJ#>u8c?GP0Y(xuDkK`ng5biMT>?fVRPStO7~GxNnwd>1 z2Tz`@^5nl@l{c#lL9NoN9P@Wr9<9>5mS68~%z(LY=-2PPdGGbt-+Mie|M}?`05jMz zFoa7P%ounJZ}%dB%Ld-Ty9VCFtQK<_TrrTvr7W)M{e3My$l_WS^IBc#!*vw2Skz)k ziw`qc7DyILO9Hu~A2?Q6zcaIE6@AB1!K^?(KkXC?8-?P|^4elaKrsHqg71Zq^r8(} zZ>c2Vi9?Z_*UD?!n-Caynt#18e{)H@lZV`ea=BF2?vy~!oa?#KRU*odZ3v_m{F>6i zuBX;ojj9UPWwlNZq1v*(Ap=+2U1uuVbwh#4qN=s5mc8rR((x@jw8Hygq#B`hPlmGU zTAS_dzZ;s(!1bb46^7Db>EZlxaZlcrR$Y3IRf+h~nblyjb>AtfyQ)rfjnL5`{ud|E z8@UZdZW>KewZg1uH&C*+TqA3hNZOyT%4Qd@QSn=WtrlH;TX5c zV8z5oD4IBh;S5$ytf7>_$0lx|Y@!18@AOg7^DVbtQ-Of7)gfqmWXr@lZfe1M8?-x@ zxFV3)9x<_rPcpb=;!`m2GcC5YxQ#7=!KdX*)jefLJn`sQElNA`gZm`QQBkK40_XEF zIv46P3}?rlHIT6bD($|KV^4biI(cu;4M~s1thebW`F1M^lovg*hw@{w^EzIRdzy%J zuX<#&sXQu^aad2LA(q*3bva~#v-y>H;iI3kk>7C%97fPBP3%Y6;xll)JHEiFXF<`g z#aR+GZyjuj36`qsU{dQ%QW$ zjsgBUKzjZFJ^RR9PM`UXQNV9p`jiycIj$RAUvfPd{{g9=k-ha0y*XnaeWUv@b0??_ zr?u8kZGvkb13zLgfp786aWYQojM{NBaysMUaWbAuK(m#EW@`$4lmooyAeqWxg1y^f z-)^&KU$F~cvtPfmUys,Void>.parse!!!N/A!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/example_hdfs.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/example_hdfs.conf new file mode 100644 index 00000000..d7a10a5a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/example_hdfs.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/example_hdfs.data +injection_policy: max-count +max_injection_count: 97 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/example_hdfs.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/example_hdfs.data new file mode 100644 index 00000000..35784eee --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/example_hdfs.data @@ -0,0 +1,3 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock!!!DFSStripedInputStream.java:245!!!java.io.IOException +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSStripedInputStream.java:256!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/example.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/example.conf new file mode 100644 index 00000000..3567cd66 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/example.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/example.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/example.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/example.data new file mode 100644 index 00000000..35784eee --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/example.data @@ -0,0 +1,3 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock!!!DFSStripedInputStream.java:245!!!java.io.IOException +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSStripedInputStream.java:256!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop.conf new file mode 100644 index 00000000..be986fa6 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop.conf @@ -0,0 +1,3 @@ +retry_data_file: /home/bastoica/projects/current/wasabi/tool/config/hadoop/hadoop_retry_locations.data +injection_policy: max-count +max_injection_count: 0 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop_retry_bounds.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop_retry_bounds.data new file mode 100644 index 00000000..3a333dd1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop_retry_bounds.data @@ -0,0 +1,195 @@ +Var name!!!Assigned value!!!Assign method!!!Test class +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestAMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestApplicationCleanup +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestApplicationCleanup +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestApplicationCleanup +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestApplicationCleanup +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestApplicationCleanup +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestApplicationMasterLauncher +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBalancer +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBalancerService +MAX_ATTEMPTS_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBalancerService +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBalancerWithHANameNodes +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBlockRecovery +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBlockRecovery2 +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBlockTokenWithDFS +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestBlockTokenWithShortCircuitRead +RM_AM_MAX_ATTEMPTS!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestCapacityScheduler +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestCapacitySchedulerApps +RM_AM_MAX_ATTEMPTS!!!"1"!!!org.apache.hadoop.conf.Configuration.set!!!TestCapacitySchedulerSurgicalPreemption +DFS_NAMENODE_CHECKPOINT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestCheckpoint +MR_CLIENT_JOB_MAX_RETRIES!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestCLI +MR_CLIENT_JOB_MAX_RETRIES!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestCLI +LOCATEFOLLOWINGBLOCK_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestClientProtocolForPipelineRecovery +CLIENT_FAILOVER_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setLong!!!TestClientRMProxy +MR_CLIENT_MAX_RETRIES!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestClientServiceDelegate +MR_CLIENT_MAX_RETRIES!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestClientServiceDelegate +MAX_ATTEMPTS_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestConsistentReadsObserver +MAX_ATTEMPTS_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestConsistentReadsObserver +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestContainerResizing +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestContainerResourceUsage +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDataNodeMetricsLogger +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDatanodeProtocolRetryPolicy +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDataNodeReconfiguration +RM_DT_RENEWER_THREAD_RETRY_MAX_ATTEMPTS!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDelegationTokenRenewer +RM_DT_RENEWER_THREAD_RETRY_MAX_ATTEMPTS!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDelegationTokenRenewer +RM_DT_RENEWER_THREAD_RETRY_MAX_ATTEMPTS!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDelegationTokenRenewer +RM_DT_RENEWER_THREAD_RETRY_MAX_ATTEMPTS!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDelegationTokenRenewer +OBSERVER_PROBE_RETRY_PERIOD_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDelegationTokensWithHA +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDFSAdmin +MAX_ATTEMPTS_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDFSAdminWithHA +MAX_ATTEMPTS_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDFSAdminWithHA +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDFSAdminWithHA +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDFSInotifyEventInputStreamKerberized +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDFSStripedOutputStreamWithFailure +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDSTimelineV10 +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestDSTimelineV10 +DFS_HA_TAILEDITS_ALL_NAMESNODES_RETRY_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestEditLogTailer +DFS_HA_TAILEDITS_ALL_NAMESNODES_RETRY_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestEditLogTailer +DFS_HA_TAILEDITS_ALL_NAMESNODES_RETRY_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestEditLogTailer +DFS_HA_TAILEDITS_ALL_NAMESNODES_RETRY_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestEditLogTailer +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestExternalStoragePolicySatisfier +DFS_STORAGE_POLICY_SATISFIER_SELF_RETRY_TIMEOUT_MILLIS_KEY!!!"5000"!!!org.apache.hadoop.conf.Configuration.set!!!TestExternalStoragePolicySatisfier +DFS_STORAGE_POLICY_SATISFIER_SELF_RETRY_TIMEOUT_MILLIS_KEY!!!"5000"!!!org.apache.hadoop.conf.Configuration.set!!!TestExternalStoragePolicySatisfier +DFS_STORAGE_POLICY_SATISFIER_SELF_RETRY_TIMEOUT_MILLIS_KEY!!!"5000"!!!org.apache.hadoop.conf.Configuration.set!!!TestExternalStoragePolicySatisfier +REDUCE_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +REDUCE_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +REDUCE_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +REDUCE_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +REDUCE_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +REDUCE_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +MAP_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFail +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFileAppend4 +FILEOUTPUTCOMMITTER_FAILURE_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFileOutputCommitter +FS_RM_STATE_STORE_NUM_RETRIES!!!8!!!org.apache.hadoop.conf.Configuration.setInt!!!TestFSRMStateStore +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestHealthMonitor +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SOCKET_TIMEOUTS_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestIPC +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SOCKET_TIMEOUTS_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestIPC +MR_CLIENT_JOB_MAX_RETRIES!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestJobClients +MR_JOB_END_RETRY_ATTEMPTS!!!"0"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_NOTIFICATION_MAX_ATTEMPTS!!!"0"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_RETRY_ATTEMPTS!!!"0"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_NOTIFICATION_MAX_ATTEMPTS!!!"1"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_NOTIFICATION_MAX_ATTEMPTS!!!"1"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_RETRY_ATTEMPTS!!!"10"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_RETRY_ATTEMPTS!!!"10"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_NOTIFICATION_MAX_ATTEMPTS!!!"20"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_RETRY_ATTEMPTS!!!"3"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_NOTIFICATION_MAX_ATTEMPTS!!!"3"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MR_JOB_END_RETRY_ATTEMPTS!!!"3"!!!org.apache.hadoop.conf.Configuration.set!!!TestJobEndNotifier +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestJobImpl +MR_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestJobImpl +AUTH_RETRY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestKMS +LDAP_NUM_ATTEMPTS_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLdapGroupsMappingWithBindUserSwitch +LDAP_NUM_ATTEMPTS_KEY!!!"1"!!!org.apache.hadoop.conf.Configuration.set!!!TestLdapGroupsMappingWithOneQuery +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!3!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!4!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!5!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +KMS_CLIENT_FAILOVER_MAX_RETRIES_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestLoadBalancingKMSClientProvider +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMover +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!10000!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!10000!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!"2"!!!org.apache.hadoop.conf.Configuration.set!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!"2"!!!org.apache.hadoop.conf.Configuration.set!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!"2"!!!org.apache.hadoop.conf.Configuration.set!!!TestMover +DFS_MOVER_RETRY_MAX_ATTEMPTS_KEY!!!"2"!!!org.apache.hadoop.conf.Configuration.set!!!TestMover +MAP_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMRJobs +MAP_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestMRJobs +LOCATEFOLLOWINGBLOCK_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestNamenodeCapacityReport +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SOCKET_TIMEOUTS_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestNMProxy +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestNMProxy +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestNNStartupWhenViewFSOverloadSchemeEnabled +RM_AM_MAX_ATTEMPTS!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestNodeBlacklistingOnAMFailures +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestNodeStatusUpdater +OBSERVER_PROBE_RETRY_PERIOD_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setTimeDuration!!!TestObserverNode +OBSERVER_PROBE_RETRY_PERIOD_KEY!!!5000!!!org.apache.hadoop.conf.Configuration.setLong!!!TestObserverNode +OBSERVER_PROBE_RETRY_PERIOD_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setTimeDuration!!!TestObserverReadProxyProvider +DFS_STORAGE_POLICY_SATISFIER_MAX_RETRY_ATTEMPTS_KEY!!!20!!!org.apache.hadoop.conf.Configuration.setInt!!!TestPersistentStoragePolicySatisfier +DFS_STORAGE_POLICY_SATISFIER_MAX_RETRY_ATTEMPTS_KEY!!!20!!!org.apache.hadoop.conf.Configuration.setInt!!!TestPersistentStoragePolicySatisfier +RM_PLACEMENT_CONSTRAINTS_RETRY_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestPlacementProcessor +RM_PLACEMENT_CONSTRAINTS_RETRY_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestPlacementProcessor +RM_PLACEMENT_CONSTRAINTS_RETRY_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestPlacementProcessor +RM_PLACEMENT_CONSTRAINTS_RETRY_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestPlacementProcessor +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestQJMWithFaults +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestQuorumJournalManager +REDUCE_MAX_ATTEMPTS!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestReduceFetchFromPartialMem +MAP_MAX_ATTEMPTS!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestReduceFetchFromPartialMem +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRM +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMContainerImpl +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMContainerImpl +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!5!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!40!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRMWebServicesAppAttempts +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRollingFileSystemSinkWithSecureHdfs +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRouterRPCClientRetries +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRPC +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRPC +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRPC +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestRPCServerShutdown +SPECULATIVE_RETRY_AFTER_SPECULATE!!!5000L!!!org.apache.hadoop.conf.Configuration.setLong!!!TestRuntimeEstimators +SPECULATIVE_RETRY_AFTER_NO_SPECULATE!!!500L!!!org.apache.hadoop.conf.Configuration.setLong!!!TestRuntimeEstimators +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestSecureEncryptionZoneWithKMS +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestSecureNNWithQJM +MAX_ATTEMPTS_KEY!!!128!!!org.apache.hadoop.conf.Configuration.setInt!!!TestSeveralNameNodes +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestSpaceReservation +SPECULATIVE_RETRY_AFTER_NO_SPECULATE!!!3000L!!!org.apache.hadoop.conf.Configuration.setLong!!!TestSpeculativeExecutionWithMRApp +RETRY_LIMIT!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestStagingCommitter +DFS_STORAGE_POLICY_SATISFIER_MAX_RETRY_ATTEMPTS_KEY!!!30!!!org.apache.hadoop.conf.Configuration.setInt!!!TestStoragePolicySatisfierWithStripedFile +DFS_STORAGE_POLICY_SATISFIER_MAX_RETRY_ATTEMPTS_KEY!!!30!!!org.apache.hadoop.conf.Configuration.setInt!!!TestStoragePolicySatisfierWithStripedFile +DFS_STORAGE_POLICY_SATISFIER_SELF_RETRY_TIMEOUT_MILLIS_KEY!!!"5000"!!!org.apache.hadoop.conf.Configuration.set!!!TestStoragePolicySatisfierWithStripedFile +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineAuthenticationFilterForV1 +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!-2!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineClient +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!0!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineClient +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!5!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineCollector +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!5!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineCollector +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!5!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineCollector +TIMELINE_SERVICE_CLIENT_MAX_RETRIES!!!5!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTimelineCollector +IPC_CLIENT_CONNECT_MAX_RETRIES_ON_SASL_KEY!!!10!!!org.apache.hadoop.conf.Configuration.setInt!!!TestTrashWithSecureEncryptionZones +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestViewDistributedFileSystemWithMountLinks +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestViewFileSystemHdfs +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestViewFileSystemOverloadSchemeWithDFSAdmin +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestViewFileSystemOverloadSchemeWithFSCommands +IPC_CLIENT_CONNECT_MAX_RETRIES_KEY!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestViewFileSystemOverloadSchemeWithHdfsScheme +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestWorkPreservingRMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestWorkPreservingRMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestWorkPreservingRMRestart +RM_AM_MAX_ATTEMPTS!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestWorkPreservingRMRestart +HA_FC_ELECTOR_ZK_OP_RETRIES_KEY!!!100!!!org.apache.hadoop.conf.Configuration.setInt!!!TestZKFailoverControllerStress +ZK_NUM_RETRIES!!!1!!!org.apache.hadoop.conf.Configuration.setInt!!!TestZKRMStateStoreZKClientConnections diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop_retry_locations.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop_retry_locations.data new file mode 100644 index 00000000..4e970b83 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop_retry_locations.data @@ -0,0 +1,202 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/blob/ee7d178/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/TrashPolicyDefault.java#L151!!!org.apache.hadoop.fs.TrashPolicyDefault.moveToTrash!!!org.apache.hadoop.fs.FileSystem.mkdirs!!!TrashPolicyDefault.java:161!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/TrashPolicyDefault.java#L151!!!org.apache.hadoop.fs.TrashPolicyDefault.run!!!deleteCheckpoint!!!TrashPolicyDefault.java:303!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/TrashPolicyDefault.java#L151!!!org.apache.hadoop.fs.TrashPolicyDefault.run!!!createCheckpoint!!!TrashPolicyDefault.java:304!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ha/HealthMonitor.java#L170!!!org.apache.hadoop.ha.HealthMonitor.tryConnect!!!org.apache.hadoop.ha.HealthMonitor.createProxy!!!HealthMonitor.java:175!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/retry/RetryInvocationHandler.java#L89!!!org.apache.hadoop.io.retry.RetryInvocationHandler.invokeOnce!!!invoke!!!RetryInvocationHandler.java:100!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/DiskChecker.java#L262!!!org.apache.hadoop.util.DiskChecker.doDiskIo!!!org.apache.hadoop.util.DiskChecker.diskIoCheckWithoutNativeIo!!!DiskChecker.java:262!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/protocol/CacheDirectiveIterator.java#L96!!!org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator.makeRequest!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.listCacheDirectives!!!CacheDirectiveIterator.java:97!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/BlockPlacementPolicyRackFaultTolerant.java#L172!!!org.apache.hadoop.hdfs.server.blockmanagement.BlockPlacementPolicyRackFaultTolerant.chooseEvenlyFromRemainingRacks!!!org.apache.hadoop.hdfs.server.blockmanagement.BlockPlacementPolicyRackFaultTolerant.chooseOnce!!!BlockPlacementPolicyRackFaultTolerant.java:187!!!NotEnoughReplicasException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/BlockPlacementPolicyWithNodeGroup.java#L64!!!org.apache.hadoop.hdfs.server.blockmanagement.BlockPlacementPolicyWithNodeGroup.chooseFavouredNodes!!!chooseRandom!!!BlockPlacementPolicyWithNodeGroup.java:91!!!NotEnoughReplicasException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/sps/ExternalStoragePolicySatisfier.java#L111!!!org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier.getNameNodeConnector!!!newNameNodeConnectors!!!ExternalStoragePolicySatisfier.java:114!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/local/LocalContainerAllocator.java#L106!!!org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator.heartbeat!!!org.apache.hadoop.yarn.api.ApplicationMasterProtocol.allocate!!!LocalContainerAllocator.java:113!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/lib/output/committer/manifest/stages/CreateOutputDirectoriesStage.java#L299!!!CreateOutputDirectoriesStage.maybeCreateOneDirectory!!!org.apache.hadoop.fs.FileSystem.mkdirs!!!CreateOutputDirectoriesStage.java:305!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/main/java/org/apache/hadoop/yarn/server/AMRMClientRelayer.java#L347!!!org.apache.hadoop.yarn.server.AMRMClientRelayer.allocate!!!org.apache.hadoop.yarn.server.AMRMClientRelayer.reRegisterApplicationMaster!!!AMRMClientRelayer.java:386!!!java.io.IOException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/constraint/algorithm/DefaultPlacementAlgorithm.java#L153!!!org.apache.hadoop.yarn.server.resourcemanager.scheduler.constraint.algorithm.DefaultPlacementAlgorithm.doPlacement!!!org.apache.hadoop.yarn.server.resourcemanager.scheduler.constraint.algorithm.DefaultPlacementAlgorithm.attemptPlacementOnNode!!!DefaultPlacementAlgorithm.java:162!!!InvalidAllocationTagsQueryException +https://github.com/apache/hadoop/blob/ee7d178/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/security/DelegationTokenRenewer.java#L382!!!org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer.run!!!doAs!!!DelegationTokenRenewer.java:391!!!java.io.IOException +https://github.com/apache/hadoop/blob/trunk/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSClient.java#L617!!!org.apache.hadoop.hdfs.DFSClient.renewLease!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.renewLease!!!DFSClient.java:618!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-cos/src/main/java/org/apache/hadoop/fs/cosn/CosNativeFileSystemStore.java#L692!!!org.apache.hadoop.fs.cosn.CosNativeFileSystemStore.callCOSClientWithRetry!!!org.apache.hadoop.fs.azure.StorageInterface$CloudBlockBlobWrapper.commitBlockList!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-cos/src/main/java/org/apache/hadoop/fs/cosn/CosNFileReadTask.java#L85!!!org.apache.hadoop.fs.cosn.CosNFileReadTask.run!!!org.apache.hadoop.fs.cosn.NativeFileSystemStore.retrieveBlock!!!CosNFileReadTask.java:87!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-cos/src/main/java/org/apache/hadoop/fs/cosn/CosNFileReadTask.java#L85!!!org.apache.hadoop.fs.cosn.CosNFileReadTask.run!!!org.apache.hadoop.io.IOUtils.readFully!!!CosNFileReadTask.java:89!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-cos/src/main/java/org/apache/hadoop/fs/cosn/CosNFileReadTask.java#L85!!!org.apache.hadoop.fs.cosn.CosNFileReadTask.run!!!java.io.InputStream.close!!!CosNFileReadTask.java:91!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSCommonUtils.java#L891!!!org.apache.hadoop.fs.obs.OBSCommonUtils.isFolderEmpty!!!org.apache.hadoop.fs.obs.OBSCommonUtils.innerIsFolderEmpty!!!OBSCommonUtils.java:893!!!java.io.FileNotFoundException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSFileSystem.java#L1214!!!org.apache.hadoop.fs.obs.OBSFileSystem.getFileStatus!!!org.apache.hadoop.fs.obs.OBSFileSystem.innerGetFileStatus!!!OBSFileSystem.java:1217!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L373!!!org.apache.hadoop.fs.obs.OBSInputStream.lazySeek!!!org.apache.hadoop.fs.obs.OBSInputStream.seekInStream!!!OBSInputStream.java:376!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L373!!!org.apache.hadoop.fs.obs.OBSInputStream.lazySeek!!!org.apache.hadoop.fs.obs.OBSInputStream.reopen!!!OBSInputStream.java:380!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L457!!!org.apache.hadoop.fs.obs.OBSInputStream.read!!!java.io.InputStream.read!!!OBSInputStream.java:459!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L526!!!org.apache.hadoop.fs.obs.OBSInputStream.onReadFailure!!!org.apache.hadoop.fs.obs.OBSInputStream.reopen!!!OBSInputStream.java:528!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L577!!!org.apache.hadoop.fs.obs.OBSInputStream.read!!!org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L687!!!org.apache.hadoop.fs.obs.OBSInputStream.read!!!org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSInputStream.java#L970!!!org.apache.hadoop.fs.obs.OBSInputStream.randomReadWithNewInputStream!!!org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream!!!OBSInputStream.java:976!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSObjectBucketUtils.java#L479!!!org.apache.hadoop.fs.obs.OBSObjectBucketUtils.createEmptyObject!!!org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCreateEmptyObject!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSObjectBucketUtils.java#L542!!!org.apache.hadoop.fs.obs.OBSObjectBucketUtils.copyFile!!!org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCopyFile!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSPosixBucketUtils.java#L182!!!org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry!!!org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile!!!N/A!!!java.io.FileNotFoundException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSPosixBucketUtils.java#L182!!!org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry!!!org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/crypto/key/kms/LoadBalancingKMSClientProvider.java#L173!!!org.apache.hadoop.crypto.key.kms.LoadBalancingKMSClientProvider.doOp!!!org.apache.hadoop.crypto.key.kms.LoadBalancingKMSClientProvider$ProviderCallable.call!!!LoadBalancingKMSClientProvider.java:176!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FSInputChecker.java#L301!!!org.apache.hadoop.fs.FSInputChecker.readChecksumChunk!!!org.apache.hadoop.fs.FSInputChecker.readChunk!!!FSInputChecker.java:305!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/impl/prefetch/CachingBlockManager.java#L149!!!org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get!!!org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.getInternal!!!CachingBlockManager.java:160!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/impl/prefetch/CachingBlockManager.java#L149!!!org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get!!!org.apache.hadoop.fs.impl.prefetch.BufferPool.acquire!!!N/A!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ha/ActiveStandbyElector.java#L1126!!!org.apache.hadoop.ha.ActiveStandbyElector.zkDoWithRetries!!!org.apache.hadoop.ha.ActiveStandbyElector$ZKAction.run!!!ActiveStandbyElector.java:1150!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ha/ActiveStandbyElector.java#L853!!!org.apache.hadoop.ha.ActiveStandbyElector.reEstablishSession!!!org.apache.hadoop.ha.ActiveStandbyElector.createConnection!!!ActiveStandbyElector.java:880!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!javax.net.SocketFactory.createSocket!!!Client.java:625!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!java.net.Socket.setTcpNoDelay!!!Client.java:626!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!java.net.Socket.setKeepAlive!!!Client.java:627!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!java.net.Socket.setTrafficClass!!!Client.java:639!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!org.apache.hadoop.net.NetUtils.getLocalInetAddress!!!Client.java:656!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!java.net.Socket.setReuseAddress!!!Client.java:658!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!java.net.Socket.bind!!!Client.java:663!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!org.apache.hadoop.net.NetUtils.connect!!!Client.java:668!!!java.net.ConnectException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L614!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!java.net.Socket.setSoTimeout!!!Client.java:669!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L790!!!org.apache.hadoop.ipc.Client$Connection.setupIOstreams!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!Client.java:789!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L790!!!org.apache.hadoop.ipc.Client$Connection.setupIOstreams!!!org.apache.hadoop.ipc.Client$Connection.writeConnectionHeader!!!Client.java:791!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L790!!!org.apache.hadoop.ipc.Client$Connection.setupIOstreams!!!org.apache.hadoop.security.UserGroupInformation.doAs!!!Client.java:795!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L790!!!org.apache.hadoop.ipc.Client$Connection.setupIOstreams!!!org.apache.hadoop.ipc.Client$IpcStreams.setSaslClient!!!Client.java:818!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L790!!!org.apache.hadoop.ipc.Client$Connection.setupIOstreams!!!org.apache.hadoop.ipc.Client$Connection.writeConnectionContext!!!Client.java:831!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/RPC.java#L419!!!org.apache.hadoop.ipc.RPC.waitForProtocolProxy!!!org.apache.hadoop.ipc.RPC.getProtocolProxy!!!RPC.java:421!!!java.net.ConnectException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/RPC.java#L419!!!org.apache.hadoop.ipc.RPC.waitForProtocolProxy!!!org.apache.hadoop.security.UserGroupInformation.getCurrentUser!!!RPC.java:422!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/UserGroupInformation.java#L967!!!org.apache.hadoop.security.UserGroupInformation$AutoRenewalForUserCredsRunnable.run!!!org.apache.hadoop.security.UserGroupInformation$AutoRenewalForUserCredsRunnable.relogin!!!UserGroupInformation.java:986!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readTag!!!RpcHeaderProtos.java:1835!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readEnum!!!RpcHeaderProtos.java:1841!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readSInt32!!!RpcHeaderProtos.java:1866!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readBytes!!!RpcHeaderProtos.java:1871!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readMessage!!!RpcHeaderProtos.java:1884!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readInt64!!!RpcHeaderProtos.java:1907!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L1834!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcRequestHeaderProto.RpcRequestHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.GeneratedMessageV3.parseUnknownField!!!RpcHeaderProtos.java:1916!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readTag!!!RpcHeaderProtos.java:3785!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readUInt32!!!RpcHeaderProtos.java:3792!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readEnum!!!RpcHeaderProtos.java:3796!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readBytes!!!RpcHeaderProtos.java:3831!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readSInt32!!!RpcHeaderProtos.java:3843!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readInt64!!!RpcHeaderProtos.java:3848!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-common-project/hadoop-common/target/generated-sources/java/org/apache/hadoop/ipc/protobuf/RpcHeaderProtos.java#L3784!!!org.apache.hadoop.ipc.protobuf.RpcHeaderProtos$RpcResponseHeaderProto.RpcResponseHeaderProto!!!org.apache.hadoop.thirdparty.protobuf.GeneratedMessageV3.parseUnknownField!!!RpcHeaderProtos.java:3857!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/LeaseRenewer.java#L440!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew!!!LeaseRenewer.java:445!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1550!!!org.apache.hadoop.hdfs.DataStreamer.transfer!!!org.apache.hadoop.hdfs.DataStreamer$StreamerStreams.sendTransferBlock!!!DataStreamer.java:1594!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.DataStreamer.createSocketForPipeline!!!DataStreamer.java:1868!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.net.NetUtils.getOutputStream!!!DataStreamer.java:1872!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.net.NetUtils.getInputStream!!!DataStreamer.java:1873!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient.socketSend!!!DataStreamer.java:1874!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage.getRecoveryStage!!!DataStreamer.java:1887!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocol.datatransfer.Sender.writeBlock!!!DataStreamer.java:1896!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos$BlockOpResponseProto.parseFrom!!!DataStreamer.java:1904!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed!!!DataStreamer.java:1905!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed!!!DataStreamer.java:1905!!!java.io.EOFException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil.checkBlockOpStatus!!!DataStreamer.java:1921!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L1156!!!org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSInputStream.java:1218!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L1156!!!org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode!!!org.apache.hadoop.fs.ByteBufferReadable.read!!!DFSInputStream.java:1229!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L235!!!org.apache.hadoop.hdfs.DFSInputStream.openInfo!!!org.apache.hadoop.hdfs.DFSInputStream.fetchAndCheckLocatedBlocks!!!DFSInputStream.java:238!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L235!!!org.apache.hadoop.hdfs.DFSInputStream.openInfo!!!org.apache.hadoop.hdfs.DFSInputStream.getLastBlockLength!!!DFSInputStream.java:243!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L344!!!org.apache.hadoop.hdfs.DFSInputStream.readBlockLength!!!org.apache.hadoop.hdfs.DFSUtilClient.createClientDatanodeProtocolProxy!!!DFSInputStream.java:348!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L344!!!org.apache.hadoop.hdfs.DFSInputStream.readBlockLength!!!org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol.getReplicaVisibleLength!!!DFSInputStream.java:352!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L622!!!org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockAt!!!DFSInputStream.java:627!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L622!!!org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo!!!org.apache.hadoop.hdfs.DFSInputStream.chooseDataNode!!!DFSInputStream.java:637!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L622!!!org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSInputStream.java:645!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L786!!!org.apache.hadoop.hdfs.DFSInputStream.readBuffer!!!org.apache.hadoop.hdfs.ReaderStrategy.readFromBlock!!!DFSInputStream.java:790!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L786!!!org.apache.hadoop.hdfs.DFSInputStream.readBuffer!!!org.apache.hadoop.hdfs.DFSInputStream.seekToBlockSource!!!DFSInputStream.java:820!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L786!!!org.apache.hadoop.hdfs.DFSInputStream.readBuffer!!!org.apache.hadoop.hdfs.DFSInputStream.seekToNewSource!!!DFSInputStream.java:824!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L840!!!org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy!!!org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo!!!DFSInputStream.java:879!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L840!!!org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy!!!org.apache.hadoop.hdfs.DFSInputStream.readBuffer!!!DFSInputStream.java:889!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java#L1141!!!org.apache.hadoop.hdfs.DFSOutputStream.addBlock!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock!!!DFSOutputStream.java:1148!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java#L291!!!org.apache.hadoop.hdfs.DFSOutputStream.newStreamForCreate!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.create!!!DFSOutputStream.java:294!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java#L990!!!org.apache.hadoop.hdfs.DFSOutputStream.completeFile!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.complete!!!DFSOutputStream.java:997!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock!!!DFSStripedInputStream.java:247!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSStripedInputStream.java:258!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/FileChecksumHelper.java#L521!!!org.apache.hadoop.hdfs.FileChecksumHelper$ReplicatedFileChecksumComputer.checksumBlock!!!org.apache.hadoop.hdfs.FileChecksumHelper$ReplicatedFileChecksumComputer.tryDatanode!!!FileChecksumHelper.java:523!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/FileChecksumHelper.java#L653!!!org.apache.hadoop.hdfs.FileChecksumHelper$StripedFileNonStripedChecksumComputer.checksumBlockGroup!!!org.apache.hadoop.hdfs.FileChecksumHelper$StripedFileNonStripedChecksumComputer.tryDatanode!!!FileChecksumHelper.java:655!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/server/namenode/ha/ObserverReadProxyProvider.java#L431!!!org.apache.hadoop.hdfs.server.namenode.ha.ObserverReadProxyProvider$ObserverReadInvocationHandler.invoke!!!java.lang.reflect.Method.invoke!!!ObserverReadProxyProvider.java:543!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java#L197!!!org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache$SlotReleaser.run!!!org.apache.hadoop.hdfs.protocol.datatransfer.Sender.releaseShortCircuitFds!!!ShortCircuitCache.java:209!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java#L197!!!org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache$SlotReleaser.run!!!org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos$ReleaseShortCircuitAccessResponseProto.parseFrom!!!ShortCircuitCache.java:214!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java#L197!!!org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache$SlotReleaser.run!!!org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed!!!ShortCircuitCache.java:214!!!java.io.EOFException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java#L197!!!org.apache.hadoop.hdfs.shortcircuit.ShortCircuitCache$SlotReleaser.run!!!org.apache.hadoop.net.unix.DomainSocket.connect!!!UserGroupInformation.java:986!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/web/WebHdfsFileSystem.java#L824!!!org.apache.hadoop.hdfs.web.WebHdfsFileSystem$AbstractRunner.runWithRetry!!!org.apache.hadoop.hdfs.web.WebHdfsFileSystem$AbstractRunner.getUrl!!!WebHdfsFileSystem.java:827!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/web/WebHdfsFileSystem.java#L824!!!org.apache.hadoop.hdfs.web.WebHdfsFileSystem$AbstractRunner.runWithRetry!!!org.apache.hadoop.hdfs.web.WebHdfsFileSystem$AbstractRunner.connect!!!WebHdfsFileSystem.java:829!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/web/WebHdfsFileSystem.java#L824!!!org.apache.hadoop.hdfs.web.WebHdfsFileSystem$AbstractRunner.runWithRetry!!!org.apache.hadoop.hdfs.web.WebHdfsFileSystem$AbstractRunner.getResponse!!!WebHdfsFileSystem.java:830!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/balancer/Balancer.java#L885!!!org.apache.hadoop.hdfs.server.balancer.Balancer.run!!!org.apache.hadoop.hdfs.server.balancer.Balancer.doBalance!!!Balancer.java:887!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPServiceActor.java#L880!!!org.apache.hadoop.hdfs.server.datanode.BPServiceActor.run!!!org.apache.hadoop.hdfs.server.datanode.BPServiceActor.connectToNNAndHandshake!!!BPServiceActor.java:893!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DataXceiverServer.java#L226!!!org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run!!!org.apache.hadoop.hdfs.net.PeerServer.accept!!!DataXceiverServer.java:242!!!java.net.SocketTimeoutException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DataXceiverServer.java#L226!!!org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run!!!org.apache.hadoop.hdfs.server.datanode.DataXceiver.create!!!DataXceiverServer.java:253!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/ProvidedVolumeImpl.java#L163!!!org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.ProvidedVolumeImpl$ProvidedBlockPoolSlice.fetchVolumeMap!!!org.apache.hadoop.hdfs.server.common.blockaliasmap.BlockAliasMap.getReader!!!ProvidedVolumeImpl.java:165!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirEncryptionZoneOp.java#L585!!!org.apache.hadoop.hdfs.server.namenode.FSDirEncryptionZoneOp$EDEKCacheLoader.run!!!org.apache.hadoop.crypto.key.KeyProviderCryptoExtension.warmUpEncryptedKeys!!!FSDirEncryptionZoneOp.java:587!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSNamesystem.java#L4632!!!org.apache.hadoop.hdfs.server.namenode.FSNamesystem$LazyPersistFileScrubber.run!!!org.apache.hadoop.hdfs.server.namenode.FSNamesystem$LazyPersistFileScrubber.clearCorruptLazyPersistFiles!!!FSNamesystem.java:4671!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ha/EditLogTailer.java#L609!!!org.apache.hadoop.hdfs.server.namenode.ha.EditLogTailer$MultipleNameNodeProxy.getActiveNodeProxy!!!org.apache.hadoop.ipc.RPC.waitForProxy!!!EditLogTailer.java:632!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ha/EditLogTailer.java#L609!!!org.apache.hadoop.hdfs.server.namenode.ha.EditLogTailer$MultipleNameNodeProxy.getActiveNodeProxy!!!org.apache.hadoop.ipc.RPC.getProtocolVersion!!!EditLogTailer.java:633!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ReencryptionHandler.java#L328!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler.run!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler$ReencryptionPendingInodeIdCollector.checkPauseForTesting!!!ReencryptionHandler.java:333!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ReencryptionUpdater.java#L436!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks!!!org.apache.hadoop.util.StopWatch.start!!!ReencryptionUpdater.java:439!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ReencryptionUpdater.java#L436!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.processTask!!!ReencryptionUpdater.java:440!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/SecondaryNameNode.java#L341!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork!!!org.apache.hadoop.security.UserGroupInformation.checkTGTAndReloginFromKeytab!!!SecondaryNameNode.java:353!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/SecondaryNameNode.java#L341!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork!!!org.apache.hadoop.security.UserGroupInformation.getCurrentUser!!!SecondaryNameNode.java:353!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/SecondaryNameNode.java#L341!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.shouldCheckpointBasedOnCount!!!SecondaryNameNode.java:358!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/SecondaryNameNode.java#L341!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doCheckpoint!!!SecondaryNameNode.java:360!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/sps/BlockStorageMovementNeeded.java#L238!!!org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded$SPSPathIdProcessor.run!!!org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles!!!BlockStorageMovementNeeded.java:249!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/sps/BlockStorageMovementNeeded.java#L238!!!org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded$SPSPathIdProcessor.run!!!org.apache.hadoop.hdfs.server.namenode.sps.Context.removeSPSHint!!!BlockStorageMovementNeeded.java:256!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/sps/StoragePolicySatisfier.java#L217!!!org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run!!!org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded.removeItemTrackInfo!!!StoragePolicySatisfier.java:235!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/sps/StoragePolicySatisfier.java#L217!!!org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run!!!org.apache.hadoop.hdfs.server.namenode.sps.Context.getFileInfo!!!StoragePolicySatisfier.java:243!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/sps/StoragePolicySatisfier.java#L217!!!org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run!!!org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.analyseBlocksStorageMovementsAndAssignToDN!!!StoragePolicySatisfier.java:255!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/sps/ExternalSPSBlockMoveTaskHandler.java#L203!!!org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock!!!org.apache.hadoop.hdfs.server.balancer.KeyManager.getAccessToken!!!ExternalSPSBlockMoveTaskHandler.java:206!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/sps/ExternalSPSBlockMoveTaskHandler.java#L203!!!org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock!!!org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher.moveBlock!!!ExternalSPSBlockMoveTaskHandler.java:209!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/tools/DebugAdmin.java#L379!!!org.apache.hadoop.hdfs.tools.DebugAdmin$RecoverLeaseCommand.run!!!org.apache.hadoop.hdfs.DistributedFileSystem.recoverLease!!!DebugAdmin.java:384!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapred/YarnChild.java#L135!!!org.apache.hadoop.mapred.YarnChild.main!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.getTask!!!YarnChild.java:140!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/JobClient.java#L633!!!org.apache.hadoop.mapred.JobClient.getJob!!!org.apache.hadoop.mapred.JobClient.getJobInner!!!JobClient.java:639!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/JobEndNotifier.java#L87!!!org.apache.hadoop.mapred.JobEndNotifier.localRunnerNotification!!!org.apache.hadoop.mapred.JobEndNotifier.httpNotification!!!JobEndNotifier.java:89!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1251!!!org.apache.hadoop.mapred.Task.done!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending!!!Task.java:1253!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1315!!!org.apache.hadoop.mapred.Task.statusUpdate!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate!!!Task.java:1317!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1377!!!org.apache.hadoop.mapred.Task.sendDone!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.done!!!Task.java:1379!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1397!!!org.apache.hadoop.mapred.Task.commit!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.canCommit!!!Task.java:1399!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L860!!!org.apache.hadoop.mapred.Task$TaskReporter.run!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate!!!Task.java:885!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L860!!!org.apache.hadoop.mapred.Task$TaskReporter.run!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate!!!Task.java:891!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/lib/output/FileOutputCommitter.java#L375!!!org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob!!!org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJobInternal!!!FileOutputCommitter.java:377!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/task/reduce/EventFetcher.java#L64!!!org.apache.hadoop.mapreduce.task.reduce.EventFetcher.run!!!org.apache.hadoop.mapreduce.task.reduce.EventFetcher.getMapCompletionEvents!!!EventFetcher.java:66!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/task/reduce/Fetcher.java#L343!!!org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyFromHost!!!org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyMapOutput!!!Fetcher.java:346!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/task/reduce/Fetcher.java#L410!!!org.apache.hadoop.mapreduce.task.reduce.Fetcher.setupConnectionsWithRetry!!!org.apache.hadoop.mapreduce.task.reduce.Fetcher.openConnection!!!Fetcher.java:413!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/task/reduce/Fetcher.java#L713!!!org.apache.hadoop.mapreduce.task.reduce.Fetcher.connect!!!java.net.URLConnection.connect!!!Fetcher.java:717!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/tools/CLI.java#L662!!!org.apache.hadoop.mapreduce.tools.CLI.getJob!!!org.apache.hadoop.mapreduce.Cluster.getJob!!!CLI.java:660!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/tools/CLI.java#L662!!!org.apache.hadoop.mapreduce.tools.CLI.getJob!!!org.apache.hadoop.mapreduce.Cluster.getJob!!!CLI.java:670!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/main/java/org/apache/hadoop/mapred/ClientServiceDelegate.java#L322!!!org.apache.hadoop.mapred.ClientServiceDelegate.invoke!!!org.apache.hadoop.mapred.ClientServiceDelegate.getProxy!!!ClientServiceDelegate.java:325!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/main/java/org/apache/hadoop/mapred/ClientServiceDelegate.java#L322!!!org.apache.hadoop.mapred.ClientServiceDelegate.invoke!!!java.lang.reflect.Method.invoke!!!ClientServiceDelegate.java:326!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-aliyun/src/main/java/org/apache/hadoop/fs/aliyun/oss/AliyunOSSFileReaderTask.java#L72!!!org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask.run!!!org.apache.hadoop.io.IOUtils.readFully!!!AliyunOSSFileReaderTask.java:75!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-aws/src/main/java/org/apache/hadoop/fs/s3a/Invoker.java#L462!!!org.apache.hadoop.fs.s3a.Invoker.retryUntranslated!!!org.apache.hadoop.util.functional.CallableRaisingIOE.apply!!!Invoker.java:468!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/BlockBlobAppendStream.java#L716!!!org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal!!!org.apache.hadoop.fs.azure.StorageInterface$CloudBlockBlobWrapper.uploadBlock!!!BlockBlobAppendStream.java:720!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/BlockBlobAppendStream.java#L782!!!org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockListRequestInternal!!!org.apache.hadoop.fs.azure.StorageInterface$CloudBlockBlobWrapper.commitBlockList!!!BlockBlobAppendStream.java:787!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/WasbRemoteCallHelper.java#L129!!!org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest!!!org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest!!!WasbRemoteCallHelper.java:148!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/WasbRemoteCallHelper.java#L129!!!org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest!!!org.apache.http.client.HttpClient.execute!!!WasbRemoteCallHelper.java:151!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/WasbRemoteCallHelper.java#L129!!!org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest!!!org.apache.http.HttpEntity.getContent!!!WasbRemoteCallHelper.java:203!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/WasbRemoteCallHelper.java#L129!!!org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest!!!java.io.BufferedReader.readLine!!!WasbRemoteCallHelper.java:206!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/oauth2/AzureADAuthenticator.java#L303!!!org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenCall!!!org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenSingleCall!!!AzureADAuthenticator.java:307!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/oauth2/CustomTokenProviderAdapter.java#L72!!!org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter.refreshToken!!!org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee.getAccessToken!!!CustomTokenProviderAdapter.java:75!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/SimpleCopyListing.java#L722!!!org.apache.hadoop.tools.SimpleCopyListing$TraverseDirectory.traverseDirectoryMultiThreaded!!!org.apache.hadoop.tools.util.ProducerConsumer.take!!!SimpleCopyListing.java:750!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/SimpleCopyListing.java#L722!!!org.apache.hadoop.tools.SimpleCopyListing$TraverseDirectory.traverseDirectoryMultiThreaded!!!org.apache.hadoop.tools.util.DistCpUtils.toCopyListingFileStatus!!!SimpleCopyListing.java:757!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/SimpleCopyListing.java#L722!!!org.apache.hadoop.tools.SimpleCopyListing$TraverseDirectory.traverseDirectoryMultiThreaded!!!org.apache.hadoop.tools.SimpleCopyListing.addToFileListing!!!SimpleCopyListing.java:765!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/SimpleCopyListing.java#L722!!!org.apache.hadoop.tools.SimpleCopyListing$TraverseDirectory.traverseDirectoryMultiThreaded!!!org.apache.hadoop.tools.SimpleCopyListing.writeToFileListing!!!SimpleCopyListing.java:768!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/util/RetriableCommand.java#L85!!!org.apache.hadoop.tools.util.RetriableCommand.execute!!!org.apache.hadoop.tools.util.RetriableCommand.doExecute!!!RetriableCommand.java:87!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/src/main/java/org/apache/hadoop/tools/dynamometer/DynoInfraUtils.java#L235!!!org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties!!!org.apache.hadoop.fs.FileSystem.open!!!DynoInfraUtils.java:237!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/src/main/java/org/apache/hadoop/tools/dynamometer/DynoInfraUtils.java#L235!!!org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties!!!org.apache.hadoop.fs.Path.getFileSystem!!!DynoInfraUtils.java:237!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/src/main/java/org/apache/hadoop/tools/dynamometer/DynoInfraUtils.java#L235!!!org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties!!!java.util.Properties.load!!!DynoInfraUtils.java:239!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/src/main/java/org/apache/hadoop/tools/dynamometer/DynoInfraUtils.java#L458!!!org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForNameNodeJMXValue!!!org.apache.hadoop.tools.dynamometer.DynoInfraUtils.fetchNameNodeJMXValue!!!DynoInfraUtils.java:460!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L83812!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerLaunchContextProto.ContainerLaunchContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readTag!!!YarnProtos.java:88317!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L83812!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerLaunchContextProto.ContainerLaunchContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readMessage!!!YarnProtos.java:88328!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L83812!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerLaunchContextProto.ContainerLaunchContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readBytes!!!YarnProtos.java:88333!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L83812!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerLaunchContextProto.ContainerLaunchContextProto!!!org.apache.hadoop.thirdparty.protobuf.GeneratedMessageV3.parseUnknownField!!!YarnProtos.java:88391!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L87908!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerRetryContextProto.ContainerRetryContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readTag!!!YarnProtos.java:92413!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L87908!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerRetryContextProto.ContainerRetryContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readEnum!!!YarnProtos.java:92419!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L87908!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerRetryContextProto.ContainerRetryContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readInt32!!!YarnProtos.java:92435!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L87908!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerRetryContextProto.ContainerRetryContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readInt64!!!YarnProtos.java:92435!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L87908!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerRetryContextProto.ContainerRetryContextProto!!!org.apache.hadoop.thirdparty.protobuf.CodedInputStream.readRawVarint32!!!YarnProtos.java:92463!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/target/generated-sources/java/org/apache/hadoop/yarn/proto/YarnProtos.java#L87908!!!org.apache.hadoop.yarn.proto.YarnProtos$ContainerRetryContextProto.ContainerRetryContextProto!!!org.apache.hadoop.thirdparty.protobuf.GeneratedMessageV3.parseUnknownField!!!YarnProtos.java:92467!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/src/main/java/org/apache/hadoop/yarn/client/cli/LogsCLI.java#L1542!!!org.apache.hadoop.yarn.client.cli.LogsCLI$ClientConnectionRetry.retryOn!!!org.apache.hadoop.yarn.client.cli.LogsCLI$ClientRetryOp.run!!!LogsCLI.java:1545!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/client/api/impl/TimelineConnector.java#L342!!!org.apache.hadoop.yarn.client.api.impl.TimelineConnector$TimelineClientConnectionRetry.retryOn!!!org.apache.hadoop.yarn.client.api.impl.TimelineConnector$TimelineClientRetryOp.run!!!TimelineConnector.java:341!!!java.net.SocketException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/client/api/impl/TimelineV2ClientImpl.java#L251!!!org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects!!!org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects!!!TimelineV2ClientImpl.java:255!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.java#L1278!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController$FSAction.runWithRetries!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController$FSAction.run!!!LogAggregationIndexedFileController.java:1279!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.java#L1321!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile!!!org.apache.hadoop.fs.RemoteIterator.hasNext!!!LogAggregationIndexedFileController.java:1320!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.java#L1321!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile!!!org.apache.hadoop.fs.RemoteIterator.next!!!LogAggregationIndexedFileController.java:1322!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.java#L1321!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile!!!org.apache.hadoop.fs.FileContext.open!!!LogAggregationIndexedFileController.java:1326!!!java.io.FileNotFoundException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.java#L1321!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile!!!java.io.DataInputStream.readFully!!!LogAggregationIndexedFileController.java:1328!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.java#L1321!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile!!!org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.deleteFileWithRetries!!!LogAggregationIndexedFileController.java:1331!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/main/java/org/apache/hadoop/yarn/server/federation/retry/FederationActionRetry.java#L31!!!org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.runWithRetries!!!org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.run!!!FederationActionRetry.java:33!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/main/java/org/apache/hadoop/yarn/server/uam/UnmanagedApplicationManager.java#L460!!!org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt!!!org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport!!!UnmanagedApplicationManager.java:475!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/main/java/org/apache/hadoop/yarn/server/uam/UnmanagedApplicationManager.java#L460!!!org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt!!!org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport!!!UnmanagedApplicationManager.java:486!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/main/java/org/apache/hadoop/yarn/server/uam/UnmanagedApplicationManager.java#L460!!!org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt!!!org.apache.hadoop.yarn.api.ApplicationBaseProtocol.getApplicationAttemptReport!!!UnmanagedApplicationManager.java:499!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/recovery/NMLeveldbStateStoreService.java#L355!!!org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState!!!org.apache.hadoop.yarn.server.utils.BuilderUtils.newContainerTokenIdentifier!!!NMLeveldbStateStoreService.java:368!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/recovery/NMLeveldbStateStoreService.java#L355!!!org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState!!!org.apache.hadoop.yarn.server.nodemanager.containermanager.container.ResourceMappings$AssignedResources.fromBytes!!!NMLeveldbStateStoreService.java:432!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/recovery/FileSystemRMStateStore.java#L788!!!org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore$FSAction.runWithRetries!!!org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore$FSAction.run!!!FileSystemRMStateStore.java:790!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-router/src/main/java/org/apache/hadoop/yarn/server/router/clientrm/FederationClientInterceptor.java#L1000!!!org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.submitReservation!!!org.apache.hadoop.yarn.api.ApplicationClientProtocol.submitReservation!!!FederationClientInterceptor.java:1218!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-router/src/main/java/org/apache/hadoop/yarn/server/router/clientrm/FederationClientInterceptor.java#L963!!!org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.getNewReservation!!!org.apache.hadoop.yarn.api.ApplicationClientProtocol.getNewReservation!!!FederationClientInterceptor.java:1151!!!java.io.IOException +https://github.com/apache/hadoop/tree//ee7d178//hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/FileSystemTimelineWriterImpl.java#L268!!!org.apache.hadoop.yarn.server.timelineservice.storage.FileSystemTimelineWriterImpl$FSAction.runWithRetries!!!org.apache.hadoop.yarn.server.timelineservice.storage.FileSystemTimelineWriterImpl$FSAction.run!!!FileSystemTimelineWriterImpl.java:271!!!java.io.IOException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop_timeout_bounds.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop_timeout_bounds.data new file mode 100644 index 00000000..975f93e4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/hadoop_timeout_bounds.data @@ -0,0 +1,221 @@ +TestBatchIbr.testIbr +TestCheckpoint.testActiveImageWithTimeDeltaRelaxation +TestCheckpoint.testActiveRejectSmallerTxidDeltaImage +TestCheckpoint.testCheckpoint +TestCheckpoint.testCheckpointAfterTwoFailedUploads +TestCheckpoint.testCheckpointTriggerOnTxnCount +TestCheckpoint.testCheckpointWithFailedStorageDir +TestCheckpoint.testCheckpointWithSeparateDirsAfterNameFails +TestCheckpoint.testDeleteTemporaryEditsOnStartup +TestCheckpoint.testEditFailureBeforeRename +TestCheckpoint.testEditFailureOnFirstCheckpoint +TestCheckpoint.testFailureBeforeRename +TestCheckpoint.testImportCheckpoint +TestCheckpoint.testLegacyOivImage +TestCheckpoint.testMultipleSecondaryNNsAgainstSameNN +TestCheckpoint.testMultipleSecondaryNNsAgainstSameNN2 +TestCheckpoint.testMultipleSecondaryNamenodes +TestCheckpoint.testNameDirError +TestCheckpoint.testNameDirLocking +TestCheckpoint.testNameNodeImageSendFailWrongDigest +TestCheckpoint.testNameNodeImageSendFailWrongSize +TestCheckpoint.testNamespaceVerifiedOnFileTransfer +TestCheckpoint.testReloadOnEditReplayFailure +TestCheckpoint.testSaveNamespace +TestCheckpoint.testSecondaryFailsWithErrorBeforeSettingHeaders +TestCheckpoint.testSecondaryImageDownload +TestCheckpoint.testSecondaryNameNodeLocking +TestCheckpoint.testSecondaryNameNodeWithDelegationTokens +TestCheckpoint.testSecondaryNamenodeError1 +TestCheckpoint.testSecondaryNamenodeError2 +TestCheckpoint.testSecondaryNamenodeError3 +TestCheckpoint.testSecondaryPurgesEditLogs +TestCheckpoint.testStorageAlreadyLockedErrorMessage +TestCheckpoint.testTooManyEditReplayFailures +TestComparators.testAllUserComparators +TestComparators.testBakedUserComparator +TestComparators.testDefaultMRComparator +TestComparators.testUserMRComparator +TestComparators.testUserValueGroupingComparator +TestCompressionEmulationUtils.testCompressibleGridmixRecord +TestCompressionEmulationUtils.testCompressionRatios +TestCompressionEmulationUtils.testFileQueueDecompression +TestCompressionEmulationUtils.testPossiblyCompressedDecompressedStreams +TestCompressionEmulationUtils.testRandomCompressedTextDataGenerator +TestCopyToLocal.testCopy +TestCopyToLocal.testCopySingleFile +TestCopyToLocal.testCopyWithThreads +TestCopyToLocal.testCopyWithThreadsAndQueueSize +TestCopyToLocal.testCopyWithThreadsAndQueueSizeWrong +TestDataDrivenDBInputFormat.testDateSplits +TestDatanodeDeath.testComplex +TestDatanodeDeath.testSimple0 +TestDatanodeDeath.testSimple1 +TestDatanodeDeath.testSimple2 +TestDecommissionWithStriped.testCountNodes +TestDecommissionWithStriped.testDecommission2NodeWithBusyNode +TestDecommissionWithStriped.testDecommissionTwoNodes +TestDecommissionWithStriped.testDecommissionWithBusyNode +TestDecommissionWithStriped.testDecommissionWithFailedReplicating +TestDecommissionWithStriped.testDecommissionWithMissingBlock +TestDecommissionWithStriped.testDecommissionWithURBlockForSameBlockGroup +TestDecommissionWithStriped.testFileChecksumAfterDecommission +TestDecommissionWithStriped.testFileFullBlockGroup +TestDecommissionWithStriped.testFileMultipleBlockGroups +TestDecommissionWithStriped.testFileSmallerThanOneCell +TestDecommissionWithStriped.testFileSmallerThanOneStripe +TestDecommissionWithStriped.testRecoveryWithDecommission +TestDirectoryCommitterScale.test_010_createTaskFiles +TestDirectoryCommitterScale.test_030_commitFiles +TestDirectoryCommitterScale.test_040_abortFiles +TestDistCh.testDistCh +TestFSEditLogLoader.testAddNewStripedBlock +TestFSEditLogLoader.testDisplayRecentEditLogOpCodes +TestFSEditLogLoader.testErasureCodingPolicyOperations +TestFSEditLogLoader.testFSEditLogOpCodes +TestFSEditLogLoader.testHasNonEcBlockUsingStripedIDForAddBlock +TestFSEditLogLoader.testHasNonEcBlockUsingStripedIDForUpdateBlocks +TestFSEditLogLoader.testReplicationAdjusted +TestFSEditLogLoader.testUpdateStripedBlocks +TestFSEditLogLoader.testValidateEmptyEditLog +TestFileOutputCommitter.testAbortV1 +TestFileOutputCommitter.testCommitterV1 +TestFileOutputCommitter.testCommitterV2 +TestFileOutputCommitter.testCommitterWithDuplicatedCommitV1 +TestFileOutputCommitter.testCommitterWithDuplicatedCommitV2 +TestFileOutputCommitter.testCommitterWithFailureV1 +TestFileOutputCommitter.testCommitterWithFailureV2 +TestFileOutputCommitter.testMapFileOutputCommitterV2 +TestFileOutputCommitter.testMapOnlyNoOutputV1 +TestFileOutputCommitter.testMapOnlyNoOutputV2 +TestFileOutputCommitter.testRecoveryUpgradeV1V2 +TestFileOutputCommitter.testRecoveryV1 +TestFileOutputCommitter.testRecoveryV2 +TestFileSystemAccessService.createFileSystem +TestFileSystemAccessService.fileSystemCache +TestFileSystemAccessService.fileSystemExecutor +TestFileSystemAccessService.serviceHadoopConf +TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap +TestFsVolumeList.testExcludeSlowDiskWhenChoosingVolume +TestFsVolumeList.testGetNextVolumeWithClosedVolume +TestFsVolumeList.testInstanceOfAddReplicaThreadPool +TestHDFSCLI.testAll +TestHFlush.hFlush_01 +TestHFlush.hFlush_02 +TestHFlush.hFlush_03 +TestHFlush.hSyncEndBlockAndUpdateLength +TestHFlush.hSyncEndBlock_00 +TestHFlush.hSyncEndBlock_01 +TestHFlush.hSyncEndBlock_02 +TestHFlush.hSyncEndBlock_03 +TestHFlush.hSyncUpdateLength_00 +TestHFlush.hSyncUpdateLength_01 +TestHFlush.hSyncUpdateLength_02 +TestHFlush.hSyncUpdateLength_03 +TestHFlush.testHFlushInterrupted +TestHFlush.testPipelineHeartbeat +TestHadoopArchives.testReadFileContent +TestHttpFSServer.testAccess +TestHttpFSServer.testAllowSnapshot +TestHttpFSServer.testContentType +TestHttpFSServer.testCreateFileWithUnmaskedPermissions +TestHttpFSServer.testCreateSnapshot +TestHttpFSServer.testCreateSnapshotNoSnapshotName +TestHttpFSServer.testCustomizedUserAndGroupNames +TestHttpFSServer.testDelegationTokenOperations +TestHttpFSServer.testDelegationTokenOperationsSsl +TestHttpFSServer.testDeleteSnapshot +TestHttpFSServer.testDirAcls +TestHttpFSServer.testDisallowSnapshot +TestHttpFSServer.testDisallowSnapshotException +TestHttpFSServer.testECPolicy +TestHttpFSServer.testErasureCodingPolicy +TestHttpFSServer.testFileAcls +TestHttpFSServer.testGetFileBlockLocations +TestHttpFSServer.testGetServerDefaults +TestHttpFSServer.testGetSnapshotDiff +TestHttpFSServer.testGetSnapshotDiffIllegalParam +TestHttpFSServer.testGetSnapshotList +TestHttpFSServer.testGetSnapshottableDirectoryList +TestHttpFSServer.testGetTrashRoot +TestHttpFSServer.testGlobFilter +TestHttpFSServer.testHdfsAccess +TestHttpFSServer.testMkdirWithUnmaskedPermissions +TestHttpFSServer.testMkdirs +TestHttpFSServer.testNoRedirect +TestHttpFSServer.testNoRedirectWithData +TestHttpFSServer.testOpenOffsetLength +TestHttpFSServer.testPerms +TestHttpFSServer.testRenameSnapshot +TestHttpFSServer.testStoragePolicySatisfier +TestHttpFSServer.testXAttrs +TestKeyFieldBasedComparator.testBasicUnixComparator +TestLineRecordReaderJobs.testCustomRecordDelimiters +TestLineRecordReaderJobs.testDefaultRecordDelimiters +TestMRKeyFieldBasedComparator.testBasicUnixComparator +TestMapRed.testBiggerInput +TestMapRed.testCompression +TestMapRed.testMapred +TestMapRed.testNullKeys +TestMapRed.testSmallInput +TestMapReduce.testMapred +TestMultipleCachefiles.testMultipleCachefiles +TestNameserviceRPCMetrics.testProxyOp +TestNameserviceRPCMetrics.testProxyOpCompleteConcurrent +TestRMFailover.testAutomaticFailover +TestRMFailover.testEmbeddedWebAppProxy +TestRMFailover.testExplicitFailover +TestRMFailover.testRMWebAppRedirect +TestRMFailover.testUncaughtExceptionHandlerWithHAEnabled +TestRMFailover.testWebAppProxyInStandAloneMode +TestReencryption.testCancelFutureThenReencrypt +TestReencryption.testCancelFutureThenRestart +TestReencryption.testDeleteDuringReencrypt +TestReencryption.testRaceCreateHandler +TestReencryption.testRaceDeleteCreateHandler +TestReencryption.testRaceDeleteCreateUpdater +TestReencryption.testRaceDeleteCurrentDirHandler +TestReencryption.testRaceDeleteCurrentDirUpdater +TestReencryption.testRaceDeleteHandler +TestReencryption.testRaceDeleteUpdater +TestReencryption.testRaceDeleteZoneHandler +TestReencryption.testReencryptCancel +TestReencryption.testReencryptCancelForUpdater +TestReencryption.testReencryptCommandsQueuedOrdering +TestReencryption.testReencryptLoadedFromEdits +TestReencryption.testReencryptLoadedFromFsimage +TestReencryption.testReencryptNestedZones +TestReencryption.testReencryptOrdering +TestReencryption.testReencryptRaceRename +TestReencryption.testReencryptSnapshots +TestReencryption.testReencryptionBasic +TestReencryption.testReencryptionKMSDown +TestReencryption.testReencryptionNNSafeMode +TestReencryption.testReencryptionUpdaterFaultCkpt +TestReencryption.testReencryptionUpdaterFaultOneTask +TestReencryption.testReencryptionUpdaterFaultRecover +TestReencryption.testReencryptionWithoutProvider +TestReencryption.testRestartAfterReencrypt +TestReencryption.testRestartAfterReencryptAndCheckpoint +TestReencryption.testRestartDuringReencrypt +TestReencryption.testRestartWithRenames +TestReencryption.testZoneDeleteDuringReencrypt +TestReplaceDatanodeOnFailure.testAppend +TestReplaceDatanodeOnFailure.testBestEffort +TestReplaceDatanodeOnFailure.testDefaultPolicy +TestReplaceDatanodeOnFailure.testReplaceDatanodeOnFailure +TestRouterAllResolver.testHashAll +TestRouterAllResolver.testRandomAll +TestRouterAllResolver.testSpaceAll +TestStoragePolicySatisfierWithStripedFile.testMoverWithFullStripe +TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks +TestStoragePolicySatisfierWithStripedFile.testWhenNoTargetDatanodeToSatisfyStoragePolicy +TestStoragePolicySatisfierWithStripedFile.testWhenOnlyFewTargetNodesAreAvailableToSatisfyStoragePolicy +TestStreamAggregate.testCommandLine +TestStreamXmlRecordReader.testStreamXmlRecordReader +TestStreaming.testCommandLine +TestViewFileSystemLinkRegex.testConfLinkRegexFixedDestMapping +TestViewFileSystemLinkRegex.testConfLinkRegexIndexMapping +TestViewFileSystemLinkRegex.testConfLinkRegexNamedGroupMapping +TestViewFileSystemLinkRegex.testConfLinkRegexWithInterceptors +TestViewFileSystemLinkRegex.testConfLinkRegexWithSingleInterceptor diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/pom-hadoop.xml b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/pom-hadoop.xml new file mode 100644 index 00000000..9960fc0b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/pom-hadoop.xml @@ -0,0 +1,963 @@ + + + + 4.0.0 + org.apache.hadoop + hadoop-main + 3.4.0-SNAPSHOT + Apache Hadoop Main + Apache Hadoop Main + pom + + + + + com.cenqua.clover + clover + + 3.0.2 + + + org.opentest4j + opentest4j + + 1.2.0 + test + + + + + + + ${distMgmtStagingId} + ${distMgmtStagingName} + ${distMgmtStagingUrl} + + + ${distMgmtSnapshotsId} + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + apache.website + scpexe://people.apache.org/www/hadoop.apache.org/docs/r${project.version} + + + + + + + org.aspectj + aspectjrt + ${aspectj.version} + + + edu.uchicago.cs.systems + wasabi + ${wasabi.version} + + + + + + ${distMgmtSnapshotsId} + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + repository.jboss.org + https://repository.jboss.org/nexus/content/groups/public/ + + false + + + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + + + + + Apache Software Foundation + https://www.apache.org + + + + + 3.4.0-SNAPSHOT + + apache.snapshots.https + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + apache.staging.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + UTF-8 + UTF-8 + + + 2.8.1 + 3.9.1 + 1.5 + 1.7 + 2.4 + 3.0.2 + 3.0.0 + 2.0.0 + 3.0.1 + 1.5 + 1.5 + 3.0.1 + 0.12 + 2.4 + 4.4.1 + 2.5.0 + 1.0.0 + 3.1.0 + 8.29 + 7.1.1 + 4.2.2 + 4.2.0 + 1.1.1 + 3.8.1 + 2.7.6 + + bash + + org.fusesource.leveldbjni + + + 1.9.8.M1 + 1.13 + 1.0.0 + + + + + hadoop-project + hadoop-project-dist + hadoop-assemblies + hadoop-maven-plugins + hadoop-common-project + hadoop-hdfs-project + hadoop-yarn-project + hadoop-mapreduce-project + hadoop-tools + hadoop-dist + hadoop-minicluster + hadoop-client-modules + hadoop-build-tools + hadoop-cloud-storage-project + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + ${maven-dependency-plugin.version} + + + org.apache.maven.plugins + maven-enforcer-plugin + ${maven-enforcer-plugin.version} + + + + [3.0.2,) + + + [1.8,) + + + + + + de.skuzzle.enforcer + restrict-imports-enforcer-rule + ${restrict-imports.enforcer.version} + + + + + banned-illegal-imports + process-sources + + enforce + + + + + true + Use hadoop-thirdparty shaded instead of curator shaded + + org.apache.curator.shaded.** + + + + true + Use hadoop-common provided Sets rather than Guava provided Sets + + org.apache.hadoop.thirdparty.com.google.common.collect.Sets + org.apache.hadoop.thirdparty.com.google.common.collect.Sets.** + + + + true + Use hadoop-common provided Lists rather than Guava provided Lists + + org.apache.hadoop.thirdparty.com.google.common.collect.Lists + org.apache.hadoop.thirdparty.com.google.common.collect.Lists.** + + + + true + Use hadoop-annotation provided VisibleForTesting rather than the one provided by Guava + + org.apache.hadoop.thirdparty.com.google.common.annotations.VisibleForTesting + + + + true + Use alternatives to Guava common classes + + com.google.common.** + + + + true + Use alternative to Guava provided BaseEncoding + + org.apache.hadoop.thirdparty.com.google.common.io.BaseEncoding + org.apache.hadoop.thirdparty.com.google.common.io.BaseEncoding.** + + + + true + Use alternative to Guava provided Optional + + org.apache.hadoop.thirdparty.com.google.common.base.Optional + org.apache.hadoop.thirdparty.com.google.common.base.Optional.** + + + + true + Use alternative to Guava provided Function + + org.apache.hadoop.thirdparty.com.google.common.base.Function + org.apache.hadoop.thirdparty.com.google.common.base.Function.** + + + + true + Use alternative to Guava provided Predicate + + org.apache.hadoop.thirdparty.com.google.common.base.Predicate + org.apache.hadoop.thirdparty.com.google.common.base.Predicate.** + + + + true + Use alternative to Guava provided Supplier + + org.apache.hadoop.thirdparty.com.google.common.base.Supplier + org.apache.hadoop.thirdparty.com.google.common.base.Supplier.** + + + + true + Use alternative to Guava provided ImmutableListMultimap + + org.apache.hadoop.thirdparty.com.google.common.collect.ImmutableListMultimap + org.apache.hadoop.thirdparty.com.google.common.collect.ImmutableListMultimap.** + + + + true + Use hadoop-common provided Preconditions rather than Guava provided + + org.apache.hadoop.thirdparty.com.google.common.base.Preconditions + org.apache.hadoop.thirdparty.com.google.common.base.Preconditions.** + + + + true + Use Fasterxml Jackson 2 dependency in place of org.codehaus Jackson 1 + + org.codehaus.jackson.** + + + + true + Use HttpServlet APIs instead + + org.glassfish.grizzly + org.glassfish.grizzly.** + + + + true + Use slf4j based Logger + + org.apache.commons.logging.** + + + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + ${maven-assembly-plugin.version} + + + org.apache.maven.plugins + maven-deploy-plugin + ${maven-deploy-plugin.version} + + + org.apache.rat + apache-rat-plugin + ${apache-rat-plugin.version} + + + org.apache.maven.plugins + maven-antrun-plugin + ${maven-antrun-plugin.version} + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + org.apache.maven.wagon + wagon-ssh + ${wagon-ssh.version} + + + + + + org.eclipse.m2e + lifecycle-mapping + ${lifecycle-mapping.version} + + + + + + org.apache.maven.plugins + maven-antrun-plugin + [1.7,) + + run + + + + + + + + + org.apache.maven.plugins + maven-resources-plugin + [2.2,) + + testResources + resources + + + + + + + + + org.apache.avro + avro-maven-plugin + [1.5.3,) + + schema + protocol + + + + + + + + + org.codehaus.mojo.jspc + jspc-maven-plugin + [2.0-alpha-3,) + + compile + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + [2.4,) + + copy-dependencies + build-classpath + + + + + + + + + org.codehaus.mojo + exec-maven-plugin + [1.2,) + + exec + + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + [2.3.1,) + + test-jar + + + + + + + + + + + + org.openclover + clover-maven-plugin + ${clover-maven-plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${maven-bundle-plugin.version} + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven-checkstyle-plugin.version} + + + org.apache.hadoop + hadoop-build-tools + ${hadoop.version} + + + com.puppycrawl.tools + checkstyle + ${checkstyle.version} + + + + checkstyle/checkstyle.xml + checkstyle/suppressions.xml + true + false + ${project.build.directory}/test/checkstyle-errors.xml + + + + org.owasp + dependency-check-maven + ${dependency-check-maven.version} + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs-maven-plugin.version} + + + com.github.spotbugs + spotbugs + ${spotbugs.version} + + + + + org.jsonschema2pojo + jsonschema2pojo-maven-plugin + ${jsonschema2pojo-maven-plugin.version} + + + org.apache.maven.plugins + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + false + + + clean + + enforce + + pre-clean + + + default + + enforce + + validate + + + site + + enforce + + pre-site + + + enforce-property + + enforce + + + + + hadoop.version + You must set a hadoop.version to be the same as ${project.version} + ${project.version} + The hadoop.version property should be set and should be ${project.version}. + + + true + + + + + + org.apache.rat + apache-rat-plugin + + + .gitattributes + .gitignore + .git/** + .github/pull_request_template.md + .idea/** + **/build/** + **/patchprocess/** + **/*.js + licenses/** + licenses-binary/** + dev-support/docker/pkg-resolver/packages.json + dev-support/docker/pkg-resolver/platforms.json + **/target/** + + + + + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.felix + maven-bundle-plugin + true + true + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven-checkstyle-plugin.version} + + + + org.owasp + dependency-check-maven + ${dependency-check-maven.version} + + + com.github.spotbugs + spotbugs-maven-plugin + + + org.cyclonedx + cyclonedx-maven-plugin + ${cyclonedx.version} + + + + + dev.aspectj + aspectj-maven-plugin + ${aspectj-maven.version} + + 1.8 + 1.8 + true + true + + + edu.uchicago.cs.systems + wasabi + + + + --add-exports=java.base/sun.net.spi.nameservice=ALL-UNNAMED + --add-opens=java.base/sun.net.spi.nameservice=ALL-UNNAMED + + + + + + test-compile + compile + + + 1.8 + 1.8 + + false + true + true + unmatchedSuperTypeInCall=ignore,adviceDidNotMatch=ignore,typeNotExposedToWeaver=ignore,uncheckedAdviceConversion=ignore,invalidAbsoluteTypeName=ignore,cantFindType=ignore + + + + + + org.aspectj + aspectjtools + ${aspectj.version} + + + + + + + + + true + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + false + + + aggregate + + 1024m + true + false + ${maven.compile.source} + ${maven.compile.encoding} + ${project.build.directory}/site + hadoop-project/api + + org.apache.hadoop.authentication*,org.apache.hadoop.mapreduce.v2.proto,org.apache.hadoop.yarn.proto,org.apache.hadoop.yarn.server*,org.apache.hadoop.yarn.webapp* + + + Common + org.apache.hadoop* + + + HDFS + org.apache.hadoop.hdfs* + + + MapReduce + org.apache.hadoop.mapred* + + + YARN + org.apache.hadoop.yarn* + + + org.apache.hadoop.classification.tools.IncludePublicAnnotationsStandardDoclet + + + org.apache.hadoop + hadoop-annotations + ${project.version} + + + true + + + false + + + + org.apache.hadoop:hadoop-annotations + + + + + aggregate + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + ${maven-dependency-plugin.version} + + + + analyze-report + + + + + + + + + + src + + false + + + + + org.apache.maven.plugins + maven-assembly-plugin + false + + + src-dist + package + + single + + + false + false + hadoop-${project.version}-src + hadoop-dist/target + + + + hadoop-assemblies/src/main/resources/assemblies/hadoop-src.xml + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + false + + + src-dist-msg + package + + run + + + + + Hadoop source tar available at: ${basedir}/hadoop-dist/target/hadoop-${project.version}-src.tar.gz + + + + + + + + + + + + dist + + + + org.cyclonedx + cyclonedx-maven-plugin + ${cyclonedx.version} + + + package + + makeBom + + + + + xml + + + + + + + + sign + + + + org.apache.maven.plugins + maven-gpg-plugin + ${maven-gpg-plugin.version} + + + sign-artifacts + verify + + sign + + + + + + + + + clover + + false + + clover + + + + ${project.build.directory}/clover/hadoop-coverage.db + + true + true + true + false + + + + + org.openclover + clover-maven-plugin + + false + true + ${cloverDatabase} + 50% + ${project.build.directory}/clover + ${cloverAlwaysReport} + ${cloverGenHtml} + ${cloverGenXml} + ${cloverGenHistorical} + + **/examples/**/*.java + **/hamlet/*.java + **/ha/proto/*.java + **/protocol/proto/*.java + **/compiler/generated/*.java + **/protobuf/*.java + **/v2/proto/*.java + **/yarn/proto/*.java + **/security/proto/*.java + **/tools/proto/*.java + **/hs/proto/*.java + + + + + clover-setup + process-sources + + setup + + + + clover + test + + clover + + + + + + + + + aarch64 + + org.openlabtesting.leveldbjni + + + + linux + aarch64 + + + + + + \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.conf new file mode 100644 index 00000000..c6d1e4d7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.data new file mode 100644 index 00000000..397dd50a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.cli.TestHDFSCLI.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L622!!!org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo!!!org.apache.hadoop.hdfs.DFSInputStream.chooseDataNode!!!DFSInputStream.java:637!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.conf new file mode 100644 index 00000000..4d3874cb --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.data new file mode 100644 index 00000000..ec89adb5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.http.server.TestHttpFSServer.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirEncryptionZoneOp.java#L585!!!org.apache.hadoop.hdfs.server.namenode.FSDirEncryptionZoneOp$EDEKCacheLoader.run!!!org.apache.hadoop.crypto.key.KeyProviderCryptoExtension.warmUpEncryptedKeys!!!FSDirEncryptionZoneOp.java:587!!!java.net.SocketException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.conf new file mode 100644 index 00000000..e0e4dd26 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.data new file mode 100644 index 00000000..592cf524 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.s3a.commit.staging.TestDirectoryCommitterScale.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//warmUpEncryptedKeys//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FSInputChecker.java#L301!!!org.apache.hadoop.fs.FSInputChecker.readChecksumChunk!!!org.apache.hadoop.fs.FSInputChecker.readChunk!!!FSInputChecker.java:305!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.conf new file mode 100644 index 00000000..f4d70289 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.data new file mode 100644 index 00000000..6ef0bfcf --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.shell.TestCopyToLocal.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FSInputChecker.java#L301!!!org.apache.hadoop.fs.FSInputChecker.readChecksumChunk!!!org.apache.hadoop.fs.FSInputChecker.readChunk!!!FSInputChecker.java:305!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.conf new file mode 100644 index 00000000..dd07e7ce --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.data new file mode 100644 index 00000000..a95e0b33 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.fs.viewfs.TestViewFileSystemLinkRegex.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java#L1141!!!org.apache.hadoop.hdfs.DFSOutputStream.addBlock!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock!!!DFSOutputStream.java:1143!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.conf new file mode 100644 index 00000000..cf340a0c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.data new file mode 100644 index 00000000..b2573113 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDatanodeDeath.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L1177!!!org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSInputStream.java:1181!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.conf new file mode 100644 index 00000000..eec6fbfc --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.data new file mode 100644 index 00000000..47b321ca --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestDecommissionWithStriped.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/FileChecksumHelper.java#L521!!!org.apache.hadoop.hdfs.FileChecksumHelper$ReplicatedFileChecksumComputer.checksumBlock!!!org.apache.hadoop.hdfs.FileChecksumHelper$ReplicatedFileChecksumComputer.tryDatanode!!!FileChecksumHelper.java:523!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.conf new file mode 100644 index 00000000..225538d3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.data new file mode 100644 index 00000000..3dc83d98 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestHFlush.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L344!!!org.apache.hadoop.hdfs.DFSInputStream.readBlockLength!!!org.apache.hadoop.hdfs.DFSUtilClient.createClientDatanodeProtocolProxy!!!DFSInputStream.java:348!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.conf new file mode 100644 index 00000000..a3eaff9b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.data new file mode 100644 index 00000000..019d2604 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestLeaseRecovery.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/LeaseRenewer.java#L440!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew!!!LeaseRenewer.java:445!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.conf new file mode 100644 index 00000000..ce7498d1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.data new file mode 100644 index 00000000..f3ab6767 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.TestReplaceDatanodeOnFailure.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1550!!!org.apache.hadoop.hdfs.DataStreamer.transfer!!!org.apache.hadoop.hdfs.DataStreamer$StreamerStreams.sendTransferBlock!!!DataStreamer.java:1558!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.conf new file mode 100644 index 00000000..6cc9d084 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.data new file mode 100644 index 00000000..019d2604 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.client.impl.TestLeaseRenewer.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/LeaseRenewer.java#L440!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew!!!LeaseRenewer.java:445!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.conf new file mode 100644 index 00000000..71483c63 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.data new file mode 100644 index 00000000..81cd9bf5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.nfs.TestMountd.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BPServiceActor.java#L895!!!org.apache.hadoop.hdfs.server.datanode.BPServiceActor.run!!!org.apache.hadoop.hdfs.server.datanode.BPServiceActor.connectToNNAndHandshake!!!BPServiceActor.java:903!!!java.net.SocketException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.conf new file mode 100644 index 00000000..66b77e5a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.data new file mode 100644 index 00000000..4c0affa3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.TestBatchIbr.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L622!!!org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo!!!org.apache.hadoop.hdfs.DFSInputStream.getBlockReader!!!DFSInputStream.java:645!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.conf new file mode 100644 index 00000000..3a7d402e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.data new file mode 100644 index 00000000..0943556c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestFsVolumeList.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.net.NetUtils.getInputStream!!!DataStreamer.java:1837!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.conf new file mode 100644 index 00000000..c618b37a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.data new file mode 100644 index 00000000..019d2604 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.TestSpaceReservation.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/LeaseRenewer.java#L440!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew!!!LeaseRenewer.java:445!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.conf new file mode 100644 index 00000000..ccff78e0 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.data new file mode 100644 index 00000000..4271ce5d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.metrics.TestNameserviceRPCMetrics.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java#L613!!!org.apache.hadoop.ipc.Client$Connection.setupConnection!!!org.apache.hadoop.net.NetUtils.connect!!!Client.java:668!!!java.net.ConnectException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.conf new file mode 100644 index 00000000..b82ae3f5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.data new file mode 100644 index 00000000..18318d46 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterAllResolver.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.hdfs.DataStreamer.createSocketForPipeline!!!DataStreamer.java:1832!!!java.net.SocketException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.conf new file mode 100644 index 00000000..b50a14b4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.data new file mode 100644 index 00000000..a7d82f22 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.federation.router.TestRouterFsck.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java#L291!!!org.apache.hadoop.hdfs.DFSOutputStream.newStreamForCreate!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.create!!!DFSOutputStream.java:294!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.conf new file mode 100644 index 00000000..caba43a4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.data new file mode 100644 index 00000000..e463af73 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestCheckpoint.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/SecondaryNameNode.java#L341!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork!!!org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.shouldCheckpointBasedOnCount!!!SecondaryNameNode.java:358!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.conf new file mode 100644 index 00000000..21995051 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.data new file mode 100644 index 00000000..a262fcd3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestFSEditLogLoader.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedInputStream.java#L241!!!org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader!!!org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock!!!DFSStripedInputStream.java:245!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.conf new file mode 100644 index 00000000..83b00166 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.data new file mode 100644 index 00000000..de18cb5d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.TestReencryption.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ReencryptionUpdater.java#L436!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks!!!org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.processTask!!!ReencryptionUpdater.java:440!!!RetriableException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.conf new file mode 100644 index 00000000..adcf412b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.data new file mode 100644 index 00000000..019d2604 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.snapshot.TestRandomOpsWithSnapshots.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/LeaseRenewer.java#L440!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run!!!org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew!!!LeaseRenewer.java:445!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.conf new file mode 100644 index 00000000..12e0a377 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.data new file mode 100644 index 00000000..7ad9b323 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.hdfs.server.namenode.sps.TestStoragePolicySatisfierWithStripedFile.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/sps/ExternalSPSBlockMoveTaskHandler.java#L203!!!org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock!!!org.apache.hadoop.hdfs.server.balancer.KeyManager.getAccessToken!!!ExternalSPSBlockMoveTaskHandler.java:206!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.conf new file mode 100644 index 00000000..bbb0a548 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.data new file mode 100644 index 00000000..ec89adb5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.lib.service.hadoop.TestFileSystemAccessService.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirEncryptionZoneOp.java#L585!!!org.apache.hadoop.hdfs.server.namenode.FSDirEncryptionZoneOp$EDEKCacheLoader.run!!!org.apache.hadoop.crypto.key.KeyProviderCryptoExtension.warmUpEncryptedKeys!!!FSDirEncryptionZoneOp.java:587!!!java.net.SocketException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.conf new file mode 100644 index 00000000..dc3f7016 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.data new file mode 100644 index 00000000..a7456842 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestComparators.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1377!!!org.apache.hadoop.mapred.Task.sendDone!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.done!!!Task.java:1379!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.conf new file mode 100644 index 00000000..b58e3720 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.data new file mode 100644 index 00000000..53fc96a6 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestFileOutputCommitter.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/lib/output/FileOutputCommitter.java#L375!!!org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob!!!org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJobInternal!!!FileOutputCommitter.java:377!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.conf new file mode 100644 index 00000000..b7c588be --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.data new file mode 100644 index 00000000..a7456842 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestLineRecordReaderJobs.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1377!!!org.apache.hadoop.mapred.Task.sendDone!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.done!!!Task.java:1379!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.conf new file mode 100644 index 00000000..f92bce47 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.data new file mode 100644 index 00000000..a7456842 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.TestMapRed.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1377!!!org.apache.hadoop.mapred.Task.sendDone!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.done!!!Task.java:1379!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.conf new file mode 100644 index 00000000..cf775654 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.data new file mode 100644 index 00000000..3f2b005e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.gridmix.TestCompressionEmulationUtils.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1315!!!org.apache.hadoop.mapred.Task.statusUpdate!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate!!!Task.java:1317!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.conf new file mode 100644 index 00000000..0415330e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.data new file mode 100644 index 00000000..a7456842 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapred.lib.TestKeyFieldBasedComparator.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1377!!!org.apache.hadoop.mapred.Task.sendDone!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.done!!!Task.java:1379!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.conf new file mode 100644 index 00000000..1a651be8 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.data new file mode 100644 index 00000000..3f2b005e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.TestMapReduce.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1315!!!org.apache.hadoop.mapred.Task.statusUpdate!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate!!!Task.java:1317!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.conf new file mode 100644 index 00000000..c0b72643 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.data new file mode 100644 index 00000000..3f2b005e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.db.TestDataDrivenDBInputFormat.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1315!!!org.apache.hadoop.mapred.Task.statusUpdate!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate!!!Task.java:1317!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.conf new file mode 100644 index 00000000..b6568012 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.data new file mode 100644 index 00000000..ce98ff5b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.mapreduce.lib.partition.TestMRKeyFieldBasedComparator.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1251!!!org.apache.hadoop.mapred.Task.done!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending!!!Task.java:1253!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.conf new file mode 100644 index 00000000..497bfb35 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.data new file mode 100644 index 00000000..7ac78106 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.security.TestUGIWithMiniKdc.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/UserGroupInformation.java#L979!!!org.apache.hadoop.security.UserGroupInformation$AutoRenewalForUserCredsRunnable.run!!!org.apache.hadoop.security.UserGroupInformation$AutoRenewalForUserCredsRunnable.relogin!!!UserGroupInformation.java:986!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.conf new file mode 100644 index 00000000..1839ee15 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.data new file mode 100644 index 00000000..cbc4b54c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestDumpTypedBytes.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java#L235!!!org.apache.hadoop.hdfs.DFSInputStream.openInfo!!!org.apache.hadoop.hdfs.DFSInputStream.getLastBlockLength!!!DFSInputStream.java:243!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.conf new file mode 100644 index 00000000..06bfbc0f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.data new file mode 100644 index 00000000..56af3faa --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestMultipleCachefiles.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DataXceiverServer.java#L240!!!org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run!!!org.apache.hadoop.hdfs.server.datanode.DataXceiver.create!!!DataXceiverServer.java:253!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.conf new file mode 100644 index 00000000..f29fc968 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.data new file mode 100644 index 00000000..a7456842 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreamAggregate.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1377!!!org.apache.hadoop.mapred.Task.sendDone!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.done!!!Task.java:1379!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.conf new file mode 100644 index 00000000..61d0260a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.data new file mode 100644 index 00000000..ce98ff5b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.TestStreaming.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapred/Task.java#L1251!!!org.apache.hadoop.mapred.Task.done!!!org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending!!!Task.java:1253!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.conf new file mode 100644 index 00000000..e7049c21 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.data new file mode 100644 index 00000000..2b4f0088 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.streaming.mapreduce.TestStreamXmlRecordReader.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/task/reduce/EventFetcher.java#L64!!!org.apache.hadoop.mapreduce.task.reduce.EventFetcher.run!!!org.apache.hadoop.mapreduce.task.reduce.EventFetcher.getMapCompletionEvents!!!EventFetcher.java:66!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.conf new file mode 100644 index 00000000..d56df585 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.data new file mode 100644 index 00000000..ec89adb5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.test.TestHFSTestCase.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirEncryptionZoneOp.java#L585!!!org.apache.hadoop.hdfs.server.namenode.FSDirEncryptionZoneOp$EDEKCacheLoader.run!!!org.apache.hadoop.crypto.key.KeyProviderCryptoExtension.warmUpEncryptedKeys!!!FSDirEncryptionZoneOp.java:587!!!java.net.SocketException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.conf new file mode 100644 index 00000000..667e321f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.data new file mode 100644 index 00000000..0943556c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestDistCh.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DataStreamer.java#L1826!!!org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream!!!org.apache.hadoop.net.NetUtils.getInputStream!!!DataStreamer.java:1837!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.conf new file mode 100644 index 00000000..10e261c3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.data new file mode 100644 index 00000000..56af3faa --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.TestHadoopArchives.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DataXceiverServer.java#L240!!!org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run!!!org.apache.hadoop.hdfs.server.datanode.DataXceiver.create!!!DataXceiverServer.java:253!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.conf new file mode 100644 index 00000000..fc63c9d5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.data new file mode 100644 index 00000000..ca8b1acd --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.tools.fedbalance.TestDistCpProcedure.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/SimpleCopyListing.java#L748!!!org.apache.hadoop.tools.SimpleCopyListing$TraverseDirectory.traverseDirectoryMultiThreaded!!!org.apache.hadoop.tools.util.DistCpUtils.toCopyListingFileStatus!!!SimpleCopyListing.java:757!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.conf new file mode 100644 index 00000000..7e6114c8 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.data new file mode 100644 index 00000000..6ea9f2fb --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hadoop/test-plan/hadoop_retry_locations-org.apache.hadoop.yarn.client.TestRMFailover.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hadoop/tree//60867de//hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ha/ActiveStandbyElector.java#L853!!!org.apache.hadoop.ha.ActiveStandbyElector.reEstablishSession!!!org.apache.hadoop.ha.ActiveStandbyElector.createConnection!!!ActiveStandbyElector.java:858!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase.conf new file mode 100644 index 00000000..ba08c39f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase.conf @@ -0,0 +1,3 @@ +retry_data_file: /home/bastoica/projects/wasabi/tool/wasabi/config/hbase/hbase_retry_locations.data +injection_policy: max-count +max_injection_count: 0 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase_retry_bounds.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase_retry_bounds.data new file mode 100644 index 00000000..4ea9802f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase_retry_bounds.data @@ -0,0 +1,158 @@ +Var name!!!Assigned value!!!Assign method!!!Test class +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!AbstractTestShell +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestShellRSGroups +hbase.client.retries.number!!!100!!!setInt!!!IntegrationTestMobCompaction +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!3!!!setInt!!!TestShadeSaslAuthenticationProvider +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestRefreshHFilesBase +ReadOnlyZKClient.RECOVERY_RETRY!!!3!!!setInt!!!TestReadOnlyZKClient +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncCoprocessorOnAllRegionServersEndpoint +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestCoprocessorEndpoint +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncCoprocessorEndpoint +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestZstdDictionarySplitMerge +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestBackupDeleteWithFailures +|hbase.client.retries.number"!!!"3"!!!setInt!!!TestThriftHBaseServiceHandler +"hbase.client.retries.number"!!!"3"!!!setInt!!!TestThriftHBaseServiceHandler +"hbase.client.retries.number"!!!"3"!!!setInt!!!TestThriftHBaseServiceHandlerWithReadOnly +"hbase.client.retries.number"!!!3!!!setInt!!!TestThriftServer +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestExportSnapshotV1NoCluster +DFSConfigKeys.DFS_CLIENT_RETRY_WINDOW_BASE!!!0!!!setInt!!!TestFSUtils +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!5!!!setInt!!!TestNamespaceAuditor +hbase.client.retries.number!!!100!!!setInt!!!MobStressToolRunner +hbase.client.retries.number!!!100!!!setInt!!!TestRSMobFileCleanerChore +hbase.client.retries.number!!!100!!!setInt!!!TestMobFileCleanerChore +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestBulkLoadHFilesSplitRecovery +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestBulkLoadHFilesSplitRecovery +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestRestoreFlushSnapshotFromClient +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestRegionServerCoprocessorExceptionWithAbort +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestRegionServerCoprocessorExceptionWithAbort +dfs.client.block.recovery.retries!!!2!!!setInt!!!TestWALObserver +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestMasterCoprocessorExceptionWithAbort +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestIncrementAndAppendWithNullResult +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestNegativeMemStoreSizeWithSlowCoprocessor +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setLong!!!TestClientOperationTimeout +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestPassCustomCellViaRegionObserver +hbase.ipc.client.connect.max.retries!!!1!!!setInt!!!TestFullLogReconstruction +dfs.client.block.recovery.retries!!!1!!!setInt!!!TestFullLogReconstruction +zookeeper.recovery.retry!!!1!!!setInt!!!TestReplicationBase +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestReplicationBase +replication.source.maxretriesmultiplier!!!10!!!setInt!!!TestReplicationBase +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestReplicationBase +zookeeper.recovery.retry!!!1!!!setInt!!!TestReplicationWithTags +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestReplicationWithTags +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestReplicationWithTags +zookeeper.recovery.retry!!!1!!!setInt!!!SyncReplicationTestBase +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!SyncReplicationTestBase +replication.source.maxretriesmultiplier!!!10!!!setInt!!!SyncReplicationTestBase +hbase.security.relogin.maxretries!!!1!!!setInt!!!TestRpcSkipInitialSaslHandshake +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestRpcClientLeaks +zookeeper.recovery.retry!!!1!!!setInt!!!TestMetaRegionReplicaReplication +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestMetaRegionReplicaReplication +HConstants.HBASE_CLIENT_SERVERSIDE_RETRIES_MULTIPLIER!!!1!!!setInt!!!TestMetaRegionReplicaReplication +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestWALEntryStreamCompressionReset +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestReplicationSource +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestReplicationSource +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestReplicationSource +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestReplicationSource +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestBasicWALEntryStream +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestBasicWALEntryStream +replication.source.maxretriesmultiplier!!!1!!!setInt!!!TestBasicWALEntryStream +zookeeper.recovery.retry!!!1!!!setInt!!!TestRegionReplicaReplication +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestRegionReplicaReplication +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!5!!!setInt!!!TestRegionReplicaReplication +HConstants.HBASE_CLIENT_SERVERSIDE_RETRIES_MULTIPLIER!!!1!!!setInt!!!TestRegionReplicaReplication +hbase.security.relogin.maxretries!!!1!!!setInt!!!TestSecurityRpcSentBytesMetrics +zookeeper.recovery.retry!!!1!!!setInt!!!TestReplicationWithWALExtendedAttributes +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestReplicationWithWALExtendedAttributes +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestReplicationWithWALExtendedAttributes +hbase.ipc.client.connect.max.retries!!!1!!!setInt!!!TestBoundedRegionGroupingStrategy +dfs.client.block.recovery.retries!!!1!!!setInt!!!TestBoundedRegionGroupingStrategy +hbase.ipc.client.connect.max.retries!!!1!!!setInt!!!TestFSHLogProvider +dfs.client.block.recovery.retries!!!1!!!setInt!!!TestFSHLogProvider +hbase.ipc.client.connect.max.retries!!!1!!!setInt!!!TestWALFactory +dfs.client.block.recovery.retries!!!1!!!setInt!!!TestWALFactory +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestSplitMerge +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestRegionServerScan +RegionReplicationSink.RETRIES_NUMBER!!!1!!!setInt!!!TestRegionReplicationForWriteException +RegionReplicationSink.RETRIES_NUMBER!!!1!!!setInt!!!TestRegionReplicationForFlushMarker +RegionReplicationSink.RETRIES_NUMBER!!!15!!!setInt!!!TestRegionReplicationSinkCallbackAndFlushConcurrently +hbase.client.retries.number!!!2!!!setInt!!!TestIsDeleteFailure +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!5!!!setInt!!!TestEndToEndSplitTransaction +zookeeper.recovery.retry!!!0!!!setInt!!!TestRemoveRegionMetrics +zookeeper.recovery.retry!!!0!!!setInt!!!TestRegionServerMetrics +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestSettingTimeoutOnBlockingPoint +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestRegionInterrupt +dfs.client.block.write.retries!!!10!!!setInt!!!TestLogRollAbort +FanOutOneBlockAsyncDFSOutputHelper.ASYNC_DFS_OUTPUT_CREATE_MAX_RETRIES!!!100!!!setInt!!!TestAsyncLogRolling +dfs.client.block.recovery.retries!!!1!!!setInt!!!AbstractTestProtobufLog +dfs.client.block.recovery.retries!!!2!!!setInt!!!AbstractTestWALReplay +hbase.hstore.flush.retries.number!!!1!!!setInt!!!TestHRegion +hbase.hstore.flush.retries.number!!!1!!!setInt!!!TestHRegion +RegionReplicationSink.RETRIES_NUMBER!!!1!!!setInt!!!TestWALSyncTimeoutException +dfs.client.block.write.retries!!!30!!!setInt!!!TestLogRolling +hbase.ipc.client.connect.max.retries!!!1!!!setInt!!!AbstractTestFSWAL +dfs.client.block.recovery.retries!!!1!!!setInt!!!AbstractTestFSWAL +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!0!!!setInt!!!TestCompactionWithShippingCoprocessor +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!0!!!setInt!!!TestScannerTimeoutHandling +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestFSErrorsExposed +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestTags +hbase.hstore.flush.retries.number!!!1!!!setInt!!!TestHStore +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!100!!!setInt!!!TestConnection +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestConnection +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!CloneSnapshotFromClientTestBase +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestTableOperationException +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncReplicationAdminApi +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestFromClientSide3 +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestFromClientSide3 +zookeeper.recovery.retry!!!1!!!setInt!!!TestSeparateClientZKCluster +zookeeper.recovery.retry!!!1!!!setInt!!!TestReplicaWithCluster +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!0!!!setInt!!!TestBlockEvictionFromClient +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!100!!!setInt!!!TestAsyncAdminBuilder +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncClusterAdminApi2 +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncAdminBase +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncProcedureAdminApi +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!5!!!setInt!!!AbstractTestCITimeout +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestReplicasClient +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!3!!!setInt!!!TestFromClientSideScanExcpetion +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!0!!!setInt!!!TestAvoidCellReferencesIntoShippedBlocks +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncQuotaAdminApi +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!0!!!setInt!!!TestMalformedCellFromClient +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!RestoreSnapshotFromClientTestBase +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestBadReplicationPeer +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestReplicationAdminForSyncReplication +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncReplicationAdminApiWithClusters +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestAsyncClientPauseForRpcThrottling +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncNamespaceAdminApi +hbase.client.retries.number!!!3!!!setInt!!!TestEntityLocks +dfs.client.block.write.retries!!!30!!!setInt!!!TestAdmin2 +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestAsyncClusterAdminApi +dfs.client.block.write.retries!!!30!!!setInt!!!TestAsyncClusterAdminApi +hbase.client.retries.number!!!1!!!setInt!!!TestCheckAndMutateWithByteBuff +hbase.client.retries.number!!!6!!!setInt!!!TestAdminBase +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestAssignmentManagerMetrics +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!3!!!setInt!!!TestSimpleRegionNormalizerOnCluster +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!3!!!setInt!!!TestMaster +zookeeper.recovery.retry!!!0!!!setInt!!!AbstractTestDLS +WALProcedureStore.ROLL_RETRIES_CONF_KEY!!!10!!!setInt!!!TestWALProcedureStoreOnHDFS +hbase.client.retries.number!!!1!!!setInt!!!TestMasterShutdown +ReadOnlyZKClient.RECOVERY_RETRY!!!3!!!setInt!!!TestMasterShutdown +ReadOnlyZKClient.RECOVERY_RETRY_INTERVAL_MILLIS!!!100!!!setInt!!!TestMasterShutdown +zookeeper.recovery.retry!!!1!!!setInt!!!TestVisibilityLabelReplicationWithExpAsString +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestVisibilityLabelReplicationWithExpAsString +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestVisibilityLabelReplicationWithExpAsString +zookeeper.recovery.retry!!!1!!!setInt!!!TestVisibilityLabelsReplication +zookeeper.recovery.retry.intervalmill!!!10!!!setInt!!!TestVisibilityLabelsReplication +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestVisibilityLabelsReplication +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!CustomSaslAuthenticationProviderTestBase +hbase.client.retries.number!!!5!!!setInt!!!TestCoprocessorWhitelistMasterObserver +hbase.client.retries.number!!!5!!!setInt!!!TestCoprocessorWhitelistMasterObserver +hbase.client.retries.number!!!5!!!setInt!!!TestCoprocessorWhitelistMasterObserver +hbase.client.retries.number!!!5!!!setInt!!!TestCoprocessorWhitelistMasterObserver +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!2!!!setInt!!!TestNamespaceCommands +hbase.security.relogin.maxretries!!!1!!!setInt!!!AbstractTestSecureIPC +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!3!!!setInt!!!TestMetaTableLocator +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!FilterTestingCluster +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!1!!!setInt!!!TestFilterWrapper +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!10!!!setInt!!!TestMetaTableAccessor +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestQuotaTableUtil +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestQuotaAdmin +HConstants.HBASE_CLIENT_RETRIES_NUMBER!!!6!!!setInt!!!TestQuotaThrottle diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase_retry_locations.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase_retry_locations.data new file mode 100644 index 00000000..8446d3e7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase_retry_locations.data @@ -0,0 +1,137 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/io/FileLink.java#L114!!!org.apache.hadoop.hbase.io.FileLink.read!!!org.apache.hadoop.fs.FSDataInputStream.read!!!FileLink.java:117!!!java.io.FileNotFoundException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/io/FileLink.java#L164!!!org.apache.hadoop.hbase.io.FileLink.readFully!!!readFully!!!FileLink.java:166!!!java.io.FileNotFoundException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/RSProcedureDispatcher.java#L349!!!org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher.run!!!org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher.sendRequest!!!RSProcedureDispatcher.java:398!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/ServerCrashProcedure.java#L136!!!org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState!!!org.apache.hadoop.hbase.master.MasterServices.getProcedures!!!ServerCrashProcedure.java:278!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/SnapshotVerifyProcedure.java#L124!!!org.apache.hadoop.hbase.master.procedure.SnapshotVerifyProcedure.execute!!!org.apache.hadoop.hbase.master.procedure.ServerRemoteProcedure.execute!!!SnapshotVerifyProcedure.java:142!!!java.lang.InterruptedException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/SplitWALProcedure.java#L64!!!org.apache.hadoop.hbase.master.procedure.SplitWALProcedure.executeFromState!!!org.apache.hadoop.hbase.master.SplitWALManager.isSplitWALFinished!!!SplitWALProcedure.java:80!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/SwitchRpcThrottleProcedure.java#L65!!!org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure.executeFromState!!!org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure.switchThrottleState!!!SwitchRpcThrottleProcedure.java:70!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/SyncReplicationReplayWALProcedure.java#L59!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.isReplayWALFinished!!!SyncReplicationReplayWALProcedure.java:75!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/SyncReplicationReplayWALRemoteProcedure.java#L89!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALRemoteProcedure.truncateWALs!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.finishReplayWAL!!!SyncReplicationReplayWALRemoteProcedure.java:92!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/BootstrapNodeManager.java#L135!!!org.apache.hadoop.hbase.regionserver.BootstrapNodeManager.getFromMaster!!!org.apache.hadoop.hbase.util.FutureUtils.get!!!BootstrapNodeManager.java:140!!!java.io.IOException +https://github.com/apache/hbase/blob/89ca7f4ade84c84a246281c71898543b6161c099/hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsckRepair.java#L103!!!org.apache.hadoop.hbase.util.HBaseFsckRepair.waitUntilAssigned!!!org.apache.hadoop.hbase.client.Admin.getClusterMetrics!!!HBaseFsckRepair.java:110!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/coordination/ZkSplitLogWorkerCoordination.java#L446!!!ZkSplitLogWorkerCoordination.getTaskList!!!listChildrenAndWatchForNewChildren!!!ZkSplitLogWorkerCoordination.java:449!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/HBaseServerBase.java#L336!!!org.apache.hadoop.hbase.HBaseServerBase.putUpWebUI!!!org.apache.hadoop.hbase.http.InfoServer.start!!!HBaseServerBase.java:348!!!java.net.BindException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/TransitRegionStateProcedure.java#L339!!!org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState!!!openRegion!!!TransitRegionStateProcedure.java:491!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/TransitRegionStateProcedure.java#L339!!!org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState!!!confirmOpened!!!TransitRegionStateProcedure.java:494!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/TransitRegionStateProcedure.java#L339!!!org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState!!!closeRegion!!!TransitRegionStateProcedure.java:496!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/TransitRegionStateProcedure.java#L339!!!org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState!!!confirmClosed!!!TransitRegionStateProcedure.java:499!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterWalManager.java#L215!!!org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders!!!listStatus!!!MasterWalManager.jav:234!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ClaimReplicationQueuesProcedure.java#L84!!!org.apache.hadoop.hbase.master.replication.ClaimReplicationQueuesProcedure.execute!!!removeQueue!!!ClaimReplicationQueuesProcedure.java:102!!!ReplicationException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ModifyPeerProcedure.java#L158!!!org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState!!!updatePeerStorage!!!ModifyPeerProcedure.java:205!!!ReplicationException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ModifyPeerProcedure.java#L158!!!org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState!!!reopenRegions!!!ModifyPeerProcedure.java:220!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ModifyPeerProcedure.java#L158!!!org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState!!!updateLastPushedSequenceIdForSerialPeer!!!ModifyPeerProcedure.java:231!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ModifyPeerProcedure.java#L158!!!org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState!!!enablePeer!!!ModifyPeerProcedure.java:238!!!ReplicationException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ModifyPeerProcedure.java#L158!!!org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState!!!postPeerModification!!!ModifyPeerProcedure.java:259!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ModifyPeerProcedure.java#L176!!!org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState!!!prePeerModification!!!ModifyPeerProcedure.java:188!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/RecoverStandbyProcedure.java#L59!!!org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure.executeFromState!!!renameToPeerReplayWALDir!!!RecoverStandbyProcedure.java:62!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/RecoverStandbyProcedure.java#L59!!!org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure.executeFromState!!!renameToPeerSnapshotWALDir!!!RecoverStandbyProcedure.java:84!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobFileCleanerChore.java#L178!!!org.apache.hadoop.hbase.mob.MobFileCleanerChore.cleanupObsoleteMobFiles!!!initReader!!!MobFileCleanupUtil.java:125!!!java.io.IOException +https://github.com/apache/hbase/blob/e1ad781dd9ddc201123a63122e22496ee7f8a4b0/hbase-server/src/main/java/org/apache/hadoop/hbase/mob/MobFileCleanupUtil.java#L100!!!org.apache.hadoop.hbase.mob.MobFileCleanerChore.cleanupObsoleteMobFiles!!!closeStoreFile!!!MobFileCleanupUtil.java:129!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-asyncfs/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java#L470!!!org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.createOutput!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock!!!FanOutOneBlockAsyncDFSOutputHelper.java:493!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-asyncfs/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java#L589!!!org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.complete!!!FanOutOneBlockAsyncDFSOutputHelper.java:592!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/FullTableBackupClient.java#L950!!!org.apache.hadoop.hbase.backup.impl.FullTableBackupClient.snapshotTable!!!snapshot!!!FullTableBackupClient.java:209!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/BlockingRpcConnection.java#L250!!!org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection!!!org.apache.hadoop.net.NetUtils.connect!!!BlockingRpcConnection.java:258!!!java.net.SocketException +https://github.com/apache/hbase/tree//e1ad781//hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/BlockingRpcConnection.java#L461!!!org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupIOstreams!!!org.apache.hadoop.security.UserGroupInformation.doAs!!!BlockingRpcConnection.java:476!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-it/src/main/java/org/apache/hadoop/hbase/chaos/ChaosAgent.java#L412!!!org.apache.hadoop.hbase.chaos.ChaosAgent.execWithRetries!!!org.apache.hadoop.hbase.chaos.ChaosAgent.exec!!!ChaosAgent.java:414!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/WALInputFormat.java#L157!!!org.apache.hadoop.hbase.wal.AbstractFSWALProvider.openReader!!!org.apache.hadoop.fs.Path.getFileSystem!!!WALInputFormat.java:162!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/WALInputFormat.java#L157!!!org.apache.hadoop.hbase.wal.AbstractFSWALProvider.openReader!!!org.apache.hadoop.hbase.wal.WALFactory.createStreamReader!!!WALInputFormat.java:162!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L402!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.getLogFiles!!!WALProcedureStore.java:410!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L402!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.initOldLogs!!!WALProcedureStore.java:413!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L402!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriter!!!WALProcedureStore.java:420!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L402!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease!!!org.apache.hadoop.hbase.procedure2.store.wal.ProcedureWALFile.removeFile!!!WALProcedureStore.java:430!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L898!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.syncSlots!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.syncSlots!!!WALProcedureStore.java:900 !!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L950!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriterWithRetries!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriter!!!WALProcedureStore.java:956!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readTag!!!RPCProtos.java:5020!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBytes!!!RPCProtos.java:5026!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBytes!!!RPCProtos.java:5031!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBytes!!!RPCProtos.java:5036!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readInt32!!!RPCProtos.java:5041!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBool!!!RPCProtos.java:5046!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBool!!!RPCProtos.java:5051!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L4652!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.GeneratedMessageV3$Builder.parseUnknownField!!!RPCProtos.java:5056!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-replication/src/main/java/org/apache/hadoop/hbase/replication/ZKReplicationQueueStorage.java#L233!!!org.apache.hadoop.hbase.replication.ZKReplicationQueueStorage.setWALPosition!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.multiOrSequential!!!N/A!!!java.net.BindException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.fs.FileSystem.exists!!!HFileArchiver.java:555!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.fs.FileSystem.mkdirs!!!HFileArchiver.java:556!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.hbase.backup.HFileArchiver$File.moveAndClose!!!HFileArchiver.java:566!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterWalManager.java#L215!!!org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders!!!org.apache.hadoop.fs.FileSystem.exists!!!MasterWalManager.java:233!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterWalManager.java#L215!!!org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders!!!org.apache.hadoop.hbase.util.CommonFSUtils.listStatus!!!MasterWalManager.java:234!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.setPeerNewSyncReplicationState!!!TransitPeerSyncReplicationStateProcedure.java:265!!!ReplicationException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.setLastPushedSequenceId!!!TransitPeerSyncReplicationStateProcedure.java:296!!!ReplicationException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.removeAllReplicationQueues !!!TransitPeerSyncReplicationStateProcedure.java:314!!!ReplicationException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.transitPeerSyncReplicationState!!!TransitPeerSyncReplicationStateProcedure.java:329!!!ReplicationException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.enablePeer!!!TransitPeerSyncReplicationStateProcedure.java:349!!!ReplicationException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.createDirForRemoteWAL!!!TransitPeerSyncReplicationStateProcedure.java:367!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/TransitPeerSyncReplicationStateProcedure.java#L234!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.postTransit!!!TransitPeerSyncReplicationStateProcedure.java:381!!!ReplicationException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/zksyncer/ClientZKSyncer.java#L169!!!org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.createNodeIfNotExistsNoWatch!!!ClientZKSyncer.java:173!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/zksyncer/ClientZKSyncer.java#L169!!!org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.setData!!!ClientZKSyncer.java:175!!!org.apache.zookeeper.KeeperExceptionNoNodeException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/zksyncer/ClientZKSyncer.java#L169!!!org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.deleteDataForClientZkUntilSuccess!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.deleteNode!!!ClientZKSyncer.java:198!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/zksyncer/ClientZKSyncer.java#L169!!!org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.reconnectAfterExpiration!!!ZKWatcher.reconnectAfterExpiration!!!ClientZKSyncer.java:216!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/master/zksyncer/ClientZKSyncer.java#L195!!!org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.deleteDataForClientZkUntilSuccess!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.deleteNode!!!ClientZKSyncer.java:198!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/MetaRegionLocationCache.java#L107!!!org.apache.hadoop.hbase.MetaRegionLocationCache.loadMetaLocationsFromZk!!!org.apache.hadoop.hbase.zookeeper.ZKWatcher.getMetaReplicaNodesAndWatchChildren!!!MetaRegionLocationCache.java:109!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/MetaRegionLocationCache.java#L171!!!org.apache.hadoop.hbase.MetaRegionLocationCache.updateMetaLocation!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.watchAndCheckExists!!!MetaRegionLocationCache.java:174!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/MetaRegionLocationCache.java#L171!!!org.apache.hadoop.hbase.MetaRegionLocationCache.updateMetaLocation!!!org.apache.hadoop.hbase.MetaRegionLocationCache.getMetaRegionLocation!!!MetaRegionLocationCache.java:181!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/namequeues/WALEventTrackerTableAccessor.java#L70!!!org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor.doPut!!!org.apache.hadoop.hbase.client.Connection.getTable!!!WALEventTrackerTableAccessor.java:71!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/namequeues/WALEventTrackerTableAccessor.java#L70!!!org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor.doPut!!!org.apache.hadoop.hbase.client.Table.put!!!WALEventTrackerTableAccessor.java:72!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/handler/RegionReplicaFlushHandler.java#L107!!!org.apache.hadoop.hbase.regionserver.handler.RegionReplicaFlushHandler.triggerFlushInPrimaryRegion!!!org.apache.hadoop.hbase.util.FutureUtils.get!!!RegionReplicaFlushHandler.java:114!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionFileSystem.java#L1078!!!org.apache.hadoop.hbase.regionserver.HRegionFileSystem.createDir!!!org.apache.hadoop.hbase.regionserver.HRegionFileSystem.mkdirs!!!HRegionFileSystem.java:1080!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionFileSystem.java#L1101!!!org.apache.hadoop.hbase.regionserver.HRegionFileSystem.rename!!!org.apache.hadoop.fs.FileSystem.rename!!!HRegionFileSystem.java:1103!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionFileSystem.java#L1126!!!org.apache.hadoop.hbase.regionserver.HRegionFileSystem.deleteDir!!!org.apache.hadoop.fs.FileSystem.delete!!!HRegionFileSystem.java:1128!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionFileSystem.java#L1165!!!org.apache.hadoop.hbase.regionserver.HRegionFileSystem.createDirOnFileSystem!!!org.apache.hadoop.fs.FileSystem.mkdirs!!!HRegionFileSystem.java:1167!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java#L2505!!!org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub!!!org.apache.hadoop.hbase.security.UserProvider.getCurrent!!!HRegionServer.java:2590!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java#L817!!!org.apache.hadoop.hbase.regionserver.HStore.flushCache!!!org.apache.hadoop.hbase.regionserver.StoreFlusher.flushSnapshot!!!HStore.java:828!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.java#L71!!!org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RegionServerStatusProtos$ReportProcedureDoneRequest$Builder.addResult!!!RemoteProcedureResultReporter.java:74!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.java#L71!!!org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run!!!org.apache.hadoop.hbase.regionserver.HRegionServer.reportProcedureDone!!!RemoteProcedureResultReporter.java:89!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/snapshot/FlushSnapshotSubprocedure.java#L113!!!org.apache.hadoop.hbase.regionserver.snapshot.FlushSnapshotSubprocedure$RegionSnapshotTask.call!!!org.apache.hadoop.hbase.regionserver.HRegion.flush!!!FlushSnapshotSubprocedure.java:114!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SnapshotRegionCallable.java#L57!!!org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall!!!org.apache.hadoop.hbase.regionserver.HRegion.flush!!!SnapshotRegionCallable.java:58!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/AbstractFSWAL.java#L783!!!org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive!!!org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archiveLogFile!!!AbstractFSWAL.java:923!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/DualAsyncFSWAL.java#L76!!!org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance!!!org.apache.hadoop.hbase.regionserver.wal.AsyncFSWAL.createAsyncWriter!!!N/A!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HBaseInterClusterReplicationEndpoint.java#L452!!!org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint.replicate!!!org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint.parallelReplicate!!!HBaseInterClusterReplicationEndpoint.java:461!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/HFileReplicator.java#L169!!!org.apache.hadoop.hbase.replication.regionserver.HFileReplicator.doBulkLoad!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.loadHFileQueue!!!HFileReplicator.java:179!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/RecoveredReplicationSourceShipper.java#L57!!!org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSourceShipper.getStartPosition!!!org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSource.locateRecoveredPaths!!!N/A!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java#L432!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.uncaughtException!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.refreshSources!!!N/A!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java#L512!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.createReplicationEndpoint!!!ReplicationSource.java:555!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java#L512!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initAndStartReplicationEndpoint!!!ReplicationSource.java:565!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.java#L706!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.cleanOldLogs!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.removeRemoteWALs!!!ReplicationSourceManager.java:739!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceShipper.java#L179!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper.shipEdits!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper.cleanUpHFileRefs!!!ReplicationSourceShipper.java:195!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceWALReader.java#L130!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.tryAdvanceStreamAndCreateWALBatch!!!N/A!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceWALReader.java#L130!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run!!!org.apache.hadoop.hbase.replication.regionserver.WALEntryStream.reset!!!N/A!!!WALEntryFilterRetryableException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceWALReader.java#L130!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.readWALEntries!!!ReplicationSourceWALReader.java:171!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupInfoManagerImpl.java#L1019!!!org.apache.hadoop.hbase.rsgroup.RSGroupInfoManagerImpl.moveRegionsBetweenGroups!!!moveAsync!!!RSGroupInfoManagerImpl.java:1037!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/tool/BulkLoadHFilesTool.java#L908!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad!!!org.apache.hadoop.hbase.util.FutureUtils.get!!!BulkLoadHFilesTool.java:966!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/tool/BulkLoadHFilesTool.java#L908!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.groupOrSplitPhase!!!BulkLoadHFilesTool.java:981!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/tool/BulkLoadHFilesTool.java#L908!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.bulkLoadPhase!!!BulkLoadHFilesTool.java:990!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSTableDescriptors.java#L622!!!org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor!!!org.apache.hadoop.fs.FileSystem.create!!!FSTableDescriptors.java:626!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSTableDescriptors.java#L622!!!org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor!!!java.io.FilterOutputStream.write!!!FSTableDescriptors.java:627!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSTableDescriptors.java#L622!!!org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor!!!org.apache.hadoop.hbase.util.FSTableDescriptors.deleteTableDescriptorFiles!!!FSTableDescriptors.java:635!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L444!!!org.apache.hadoop.hbase.util.FSUtils.setVersion!!!org.apache.hadoop.fs.FileSystem.create!!!FSUtils.java:440!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L499!!!org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists!!!org.apache.hadoop.fs.FileSystem.exists!!!FSUtils.java:495!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L601!!!org.apache.hadoop.hbase.util.FSUtils.setClusterId!!!org.apache.hadoop.fs.FileSystem.create!!!FSUtils.java:598!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L601!!!org.apache.hadoop.hbase.util.FSUtils.setClusterId!!!java.io.FilterOutputStream.write!!!FSUtils.java:599!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L601!!!org.apache.hadoop.hbase.util.FSUtils.setClusterId!!!org.apache.hadoop.fs.FileSystem.rename!!!FSUtils.java:609!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java#L426!!!org.apache.hadoop.hbase.util.HBaseFsck$FileLockCallable.createFileWithRetries!!!org.apache.hadoop.hbase.util.CommonFSUtils.create!!!HBaseFsck.java:428!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java#L481!!!org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck!!!org.apache.hbase.thirdparty.com.google.common.io.Closeables.close!!!HBaseFsck.java:483!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java#L481!!!org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck!!!org.apache.hadoop.hbase.util.CommonFSUtils.delete!!!HBaseFsck.java:484!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java#L481!!!org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck!!!org.apache.hadoop.hbase.util.CommonFSUtils.getCurrentFileSystem!!!HBaseFsck.java:484!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java#L720!!!org.apache.hadoop.hbase.util.HBaseFsck.setMasterInMaintenanceMode!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.createEphemeralNodeAndWatch!!!HBaseFsck.java:735!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsckRepair.java#L107!!!org.apache.hadoop.hbase.util.HBaseFsckRepair.waitUntilAssigned!!!org.apache.hadoop.hbase.client.Admin.getClusterMetrics!!!HBaseFsckRepair.java:110!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/MoveWithAck.java#L76!!!org.apache.hadoop.hbase.util.MoveWithAck.call!!!org.apache.hadoop.hbase.client.Admin.move!!!MoveWithAck.java:82!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/util/MoveWithAck.java#L76!!!org.apache.hadoop.hbase.util.MoveWithAck.call!!!org.apache.hadoop.hbase.util.MoveWithAck.isSameServer!!!MoveWithAck.java:85!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/wal/AbstractWALRoller.java#L174!!!org.apache.hadoop.hbase.wal.AbstractWALRoller.run!!!org.apache.hadoop.hbase.wal.AbstractWALRoller$RollController.rollWal!!!AbstractWALRoller.java:212!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALFactory.java#L339!!!org.apache.hadoop.hbase.wal.WALFactory.createStreamReader!!!org.apache.hadoop.hbase.wal.AbstractFSWALProvider$Reader.init!!!WALFactory.java:417!!!java.io.IOException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L208!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.delete!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:210!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L258!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.exists!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:262!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L258!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.exists!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:264!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L320!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getChildren!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:324!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L320!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getChildren!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:326!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L373!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getData!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:377!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L373!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getData!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:379!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L425!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.setData!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:428!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L475!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getAcl!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:478!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L509!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.setAcl!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:512!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L574!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.createNonSequential!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:576!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L616!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.createSequential!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:626!!!org.apache.zookeeper.KeeperExceptionOperationTimeoutException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RecoverableZooKeeper.java#L680!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.multi!!!org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.checkZk!!!RecoverableZooKeeper.java:683!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKNodeTracker.java#L140!!!org.apache.hadoop.hbase.zookeeper.ZKNodeTracker.blockUntilAvailable!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.getDataAndWatch!!!ZKNodeTracker.java:131!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKNodeTracker.java#L140!!!org.apache.hadoop.hbase.zookeeper.ZKNodeTracker.blockUntilAvailable!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.checkExists!!!ZKNodeTracker.java:143!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException +https://github.com/apache/hbase/tree//e1ad781//hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java#L1400!!!org.apache.hadoop.hbase.zookeeper.ZKUtil.waitForBaseZNode!!!org.apache.zookeeper.ZooKeeper.exists!!!ZKUtil.java:1402!!!org.apache.zookeeper.KeeperExceptionSessionExpiredException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase_timeout_bounds.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase_timeout_bounds.data new file mode 100644 index 00000000..e49cb2c6 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/hbase_timeout_bounds.data @@ -0,0 +1,81 @@ +AbstractTestFSWAL.testFailedToCreateWALIfParentRenamed +AbstractTestFSWAL.testFindMemStoresEligibleForFlush +AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile +AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards +AbstractTestFSWAL.testRollWriterForClosedWAL +AbstractTestFSWAL.testSyncNoAppend +AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal +AbstractTestFSWAL.testWALCoprocessorLoaded +AbstractTestFSWAL.testWriteEntryCanBeNull +TestAsyncTable.testDisabled +TestAsyncTable.testIncrement +TestBackupDeleteRestore.testBackupDeleteRestore +TestBasicWALEntryStream.testEOFExceptionInOldWALsDirectory +TestBootstrapNodeManager.testNormal +TestBootstrapNodeManager.testOnlyMaster +TestBootstrapNodeManager.testRegionServerError +TestBulkLoadReplicationHFileRefs.testWhenExcludeCF +TestBulkLoadReplicationHFileRefs.testWhenExcludeNamespace +TestBulkLoadReplicationHFileRefs.testWhenExcludeTable +TestClassLoading.testClassLoadingFromHDFS +TestClassLoading.testClassLoadingFromLibDirInJar +TestClassLoading.testClassLoadingFromLocalFS +TestClassLoading.testClassLoadingFromRelativeLibDirInJar +TestClassLoading.testHBase3810 +TestClassLoading.testPrivateClassLoader +TestClientSideRegionScanner.testContinuesToScanIfHasMore +TestClientTimeouts.testAdminTimeout +TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +TestDrainReplicationQueuesForStandBy.test +TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +TestFSHLog.testUnflushedSeqIdTracking +TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +TestFlushSnapshotFromClient.testAsyncFlushSnapshot +TestFlushSnapshotFromClient.testFlushCreateListDestroy +TestFlushSnapshotFromClient.testFlushTableSnapshot +TestFlushSnapshotFromClient.testFlushTableSnapshotWithProcedure +TestFlushSnapshotFromClient.testSkipFlushTableSnapshot +TestFlushSnapshotFromClient.testSnapshotFailsOnNonExistantTable +TestFlushSnapshotFromClient.testSnapshotStateAfterMerge +TestFlushSnapshotFromClient.testTakeSnapshotAfterMerge +TestHelloHBase.testCreateNamespaceAndTable +TestHelloHBase.testDeleteRow +TestHelloHBase.testNamespaceExists +TestHelloHBase.testPutRowToTable +TestMetaWithReplicasShutdownHandling.testShutdownHandling +TestMultiVersions.testGetRowVersions +TestMultiVersions.testScanMultipleVersions +TestMultiVersions.testTimestamps +TestRSGroupsBalance.testGetRSGroupAssignmentsByTable +TestRSGroupsBalance.testGroupBalance +TestRSGroupsBalance.testGroupDryRunBalance +TestRSGroupsBalance.testMisplacedRegions +TestRefreshRecoveredReplication.testReplicationRefreshSource +TestRegionAssignedToMultipleRegionServers.test +TestRegionMoverWithRSGroupEnable.testUnloadRegions +TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +TestRegionObserverScannerOpenHook.testRegionObserverFlushTimeStacking +TestRegionObserverScannerOpenHook.testRegionObserverScanTimeStacking +TestRegionReplicaSplit.testAssignFakeReplicaRegion +TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +TestRegionReplicationLagEvaluation.test +TestRegionServerCrashDisableWAL.test +TestReplicator.testReplicatorBatching +TestReplicator.testReplicatorWithErrors +TestRetainAssignmentOnRestart.testForceRetainAssignment +TestRetainAssignmentOnRestart.testRetainAssignmentOnClusterRestart +TestRetainAssignmentOnRestart.testRetainAssignmentOnSingleRSRestart +TestSecurityHeadersFilter.testDefaultValues +TestSecurityHeadersFilter.testHstsAndCspSettings +TestSerialReplicationFailover.testKillRS +TestSnapshotProcedureMasterRestarts.testMasterRestarts +TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileVerifyingSnapshot +TestSuperUserQuotaPermissions.testSuperUserCanStillCompact +TestSuperUserQuotaPermissions.testSuperuserCanRemoveQuota +TestSyncReplicationWALProvider.test +TestTableMapReduceUtil.testInitCredentialsForCluster1 +TestTableMapReduceUtil.testInitCredentialsForCluster2 +TestTableMapReduceUtil.testInitCredentialsForCluster3 +TestTableMapReduceUtil.testInitCredentialsForCluster4 +TestZooKeeperScanPolicyObserver.test diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/pom-hbase.xml b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/pom-hbase.xml new file mode 100644 index 00000000..6a74163b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/pom-hbase.xml @@ -0,0 +1,4721 @@ + + + + 4.0.0 + + org.apache + apache + 23 + + + + org.apache.hbase + hbase + ${revision} + pom + Apache HBase + Apache HBase™ is the Hadoop database. Use it when you need + random, realtime read/write access to your Big Data. + This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters + of commodity hardware. + https://hbase.apache.org + 2007 + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + achouhan + Abhishek Singh Chouhan + achouhan@apache.org + +5 + + + acube123 + Amitanand S. Aiyer + acube123@apache.org + -8 + + + allan163 + Allan Yang + allan163@apache.org + +8 + + + appy + Apekshit Sharma + appy@apache.org + -8 + + + anastasia + Anastasia Braginsky + anastasia@apache.org + +2 + + + apurtell + Andrew Purtell + apurtell@apache.org + -8 + + + anoopsamjohn + Anoop Sam John + anoopsamjohn@apache.org + +5 + + + antonov + Mikhail Antonov + antonov@apache.org + -8 + + + ashishsinghi + Ashish Singhi + ashishsinghi@apache.org + +5 + + + ashu + Ashu Pachauri + ashu@apache.org + +5 + + + bharathv + Bharath Vissapragada + bharathv@apache.org + -8 + + + binlijin + Lijin Bin + binlijin@apache.org + +8 + + + brfrn169 + Toshihiro Suzuki + brfrn169@apache.org + +9 + + + busbey + Sean Busbey + busbey@apache.org + -6 + + + chenglei + Cheng Lei + chenglei@apache.org + +8 + + + chenheng + Heng Chen + chenheng@apache.org + +8 + + + chia7712 + Chia-Ping Tsai + chia7712@apache.org + +8 + + + ddas + Devaraj Das + ddas@apache.org + -8 + + + dimaspivak + Dima Spivak + dimaspivak@apache.org + -8 + + + dmeil + Doug Meil + dmeil@apache.org + -5 + + + eclark + Elliott Clark + eclark@apache.org + -8 + + + elserj + Josh Elser + elserj@apache.org + -5 + + + enis + Enis Soztutar + enis@apache.org + -8 + + + eshcar + Eshcar Hillel + eshcar@apache.org + +2 + + + fenghh + Honghua Feng + fenghh@apache.org + +8 + + + garyh + Gary Helmling + garyh@apache.org + -8 + + + gchanan + Gregory Chanan + gchanan@apache.org + -8 + + + gjacoby + Geoffrey Jacoby + gjacoby@apache.org + -5 + + + gxcheng + Guangxu Cheng + gxcheng@apache.org + +8 + + + haxiaolin + Xiaolin Ha + haxiaolin@apache.org + +8 + + + huaxiangsun + Huaxiang Sun + huaxiangsun@apache.org + -8 + + + jdcryans + Jean-Daniel Cryans + jdcryans@apache.org + -8 + + + jeffreyz + Jeffrey Zhong + jeffreyz@apache.org + -8 + + + jerryjch + Jing Chen (Jerry) He + jerryjch@apache.org + -8 + + + jyates + Jesse Yates + jyates@apache.org + -8 + + + jgray + Jonathan Gray + jgray@fb.com + -8 + + + jingchengdu + Jingcheng Du + jingchengdu@apache.org + +8 + + + esteban + Esteban Gutierrez + esteban@apache.org + -8 + + + janh + Jan Hentschel + janh@apache.org + +1 + + + jmhsieh + Jonathan Hsieh + jmhsieh@apache.org + -8 + + + jxiang + Jimmy Xiang + jxiang@apache.org + -8 + + + kannan + Kannan Muthukkaruppan + kannan@fb.com + -8 + + + karthik + Karthik Ranganathan + kranganathan@fb.com + -8 + + + larsfrancke + Lars Francke + larsfrancke@apache.org + Europe/Berlin + + + larsgeorge + Lars George + larsgeorge@apache.org + +1 + + + larsh + Lars Hofhansl + larsh@apache.org + -8 + + + liangxie + Liang Xie + liangxie@apache.org + +8 + + + liushaohui + Shaohui Liu + liushaohui@apache.org + +8 + + + liyin + Liyin Tang + liyin.tang@fb.com + -8 + + + liyu + Yu Li + liyu@apache.org + +8 + + + mbautin + Mikhail Bautin + mbautin@apache.org + -8 + + + mbertozzi + Matteo Bertozzi + mbertozzi@apache.org + 0 + + + mdrob + Mike Drob + mdrob@apache.org + -5 + + + meszibalu + Balazs Meszaros + meszibalu@apache.org + +1 + + + misty + Misty Stanley-Jones + misty@apache.org + -8 + + + ndimiduk + Nick Dimiduk + ndimiduk@apache.org + -8 + + + nihaljain + Nihal Jain + nihaljain@apache.org + +5 + + + niuyulin + Yulin Niu + niuyulin@apache.org + +8 + + + nkeywal + Nicolas Liochon + nkeywal@apache.org + +1 + + + nspiegelberg + Nicolas Spiegelberg + nspiegelberg@fb.com + -8 + + + octo47 + Andrey Stepachev + octo47@gmail.com + 0 + + + openinx + Zheng Hu + openinx@apache.org + +8 + + + pankajkumar + Pankaj Kumar + pankajkumar@apache.org + +5 + + + psomogyi + Peter Somogyi + psomogyi@apache.org + +1 + + + rajeshbabu + Rajeshbabu Chintaguntla + rajeshbabu@apache.org + +5 + + + ramkrishna + Ramkrishna S Vasudevan + ramkrishna@apache.org + +5 + + + rawson + Ryan Rawson + rawson@apache.org + -8 + + + reidchan + Reid Chan + reidchan@apache.org + +8 + + + shahrs87 + Rushabh Shah + shahrs87@apache.org + -8 + + + sakthi + Sakthi Vel + sakthi@apache.org + -8 + + + sershe + Sergey Shelukhin + sershe@apache.org + -8 + + + ssrungarapu + Srikanth Srungarapu + ssrungarapu@apache.org + -8 + + + stack + Michael Stack + stack@apache.org + -8 + + + syuanjiang + Stephen Yuan Jiang + syuanjiang@apache.org + -8 + + + taklwu + Tak-Lon (Stephen) Wu + taklwu@apache.org + -8 + + + tedyu + Ted Yu + yuzhihong@gmail.com + -8 + + + tianhang + Tianhang Tang + tianhang@apache.org + +8 + + + tianjy + tianjy@apache.org + +8 + + + todd + Todd Lipcon + todd@apache.org + -8 + + + toffer + Francis Liu + toffer@apache.org + -8 + + + vikasv + Vikas Vishwakarma + vikasv@apache.org + +5 + + + virag + Virag Kothari + virag@yahoo-inc.com + -8 + + + vjasani + Viraj Jasani + vjasani@apache.org + +5 + + + water + Xiang Li + xiangli@apache.org + +8 + + + wchevreuil + Wellington Chevreuil + wchevreuil@apache.org + 0 + + + weichiu + Wei-Chiu Chuang + weichiu@apache.org + -8 + + + xucang + Xu Cang + xucang@apache.org + -8 + + + yangzhe1991 + Phil Yang + yangzhe1991@apache.org + +8 + + + zghao + Guanghao Zhang + zghao@apache.org + +8 + + + zhangduo + Duo Zhang + zhangduo@apache.org + +8 + + + zhaobaiqiang + Baiqiang Zhao + zhaobaiqiang@apache.org + +8 + + + zjushch + Chunhui Shen + zjushch@apache.org + +8 + + + churro + Rahul Gidwani + churro@apache.org + -8 + + + yiliang + Yi Liang + yiliang@apache.org + -8 + + + zyork + Zach York + zyork@apache.org + -8 + + + meiyi + Yi Mei + meiyi@apache.org + +8 + + + wangzheng + Zheng (bsglz) Wang + wangzheng@apache.org + +8 + + + sunxin + Xin Sun + sunxin@apache.org + +8 + + + huangzhuoyue + Zhuoyue Huang + huangzhuoyue@apache.org + +8 + + + xiaoyt + Yutong Xiao + xiaoyt@apache.org + +8 + + + bbeaudreault + Bryan Beaudreault + bbeaudreault@apache.org + -5 + + + heliangjun + Liangjun He + heliangjun@apache.org + +8 + + + + + User List + user-subscribe@hbase.apache.org + user-unsubscribe@hbase.apache.org + user@hbase.apache.org + https://lists.apache.org/list.html?user@hbase.apache.org + + https://dir.gmane.org/gmane.comp.java.hadoop.hbase.user + + + + Developer List + dev-subscribe@hbase.apache.org + dev-unsubscribe@hbase.apache.org + dev@hbase.apache.org + https://lists.apache.org/list.html?dev@hbase.apache.org + + https://dir.gmane.org/gmane.comp.java.hadoop.hbase.devel + + + + Commits List + commits-subscribe@hbase.apache.org + commits-unsubscribe@hbase.apache.org + https://lists.apache.org/list.html?commits@hbase.apache.org + + + Issues List + issues-subscribe@hbase.apache.org + issues-unsubscribe@hbase.apache.org + https://lists.apache.org/list.html?issues@hbase.apache.org + + + Builds List + builds-subscribe@hbase.apache.org + builds-unsubscribe@hbase.apache.org + https://lists.apache.org/list.html?builds@hbase.apache.org + + + User (ZH) List + user-zh-subscribe@hbase.apache.org + user-zh-unsubscribe@hbase.apache.org + user-zh@hbase.apache.org + https://lists.apache.org/list.html?user-zh@hbase.apache.org + + + + + hbase-build-configuration + hbase-replication + hbase-balancer + hbase-mapreduce + hbase-resource-bundle + hbase-http + hbase-server + hbase-thrift + hbase-shell + hbase-protocol-shaded + hbase-client + hbase-hadoop-compat + hbase-common + hbase-procedure + hbase-endpoint + hbase-it + hbase-examples + hbase-assembly + hbase-testing-util + hbase-annotations + hbase-rest + hbase-checkstyle + hbase-external-blockcache + hbase-shaded + hbase-archetypes + hbase-metrics-api + hbase-metrics + hbase-backup + hbase-zookeeper + hbase-hbtop + hbase-asyncfs + hbase-logging + hbase-compression + + + scm:git:git://gitbox.apache.org/repos/asf/hbase.git + scm:git:https://gitbox.apache.org/repos/asf/hbase.git + https://gitbox.apache.org/repos/asf?p=hbase.git + + + JIRA + https://issues.apache.org/jira/browse/HBASE + + + + hbase.apache.org + HBase Website at hbase.apache.org + + file:///tmp + + + + + + 1.9.8.M1 + 1.13 + 1.0.0 + + 4.0.0-alpha-1-SNAPSHOT + + false + + false + + false + + false + + false + + false + ${project.build.finalName}.tar.gz + yyyy-MM-dd'T'HH:mm + ${maven.build.timestamp} + 1.8 + 8 + + + 3.5.0 + ${compileSource} + + 3.2.4 + + ${hadoop-three.version} + src/main/assembly/hadoop-three-compat.xml + + 3.10.5.Final + + 0.13.0 + + 0.13.0 + 1.11.0 + 2.8.1 + 1.15 + 1.7 + 2.11.0 + 3.9 + 3.6.1 + 3.4.4 + 4.5.13 + 4.4.13 + 3.2.6 + 2.14.1 + 2.14.1 + 2.3.1 + 3.1.0 + 2.1.1 + 2.3.2 + 3.0.1-b08 + 9.3.9.0 + 4.13.2 + 1.3 + 1.15.0 + 1.15.0 + 2.17.2 + 4.11.0 + 0.6.1 + thrift + 0.14.1 + 3.5.7 + 2.11 + 1.7.30 + 4.0.3 + 2.4.1 + 1.5.4 + + 2.1.43 + 1.0.57 + 2.12.2 + 1.70 + 1.5.1 + 1.0.1 + 1.1.0 + 4.2.0 + + 2.2.2 + 2.0.6 + 3.0.0 + 1.4 + + 8.29 + 3.1.0 + 2.16 + 2.4.2 + 1.0.0 + 1.8 + 3.3.0 + 3.1.0 + 2.10 + 3.0.1 + 3.4.0 + 1.1.0 + 3.1.2 + 1.5.0.Final + 1.3.9-1 + 4.7.3 + 4.7.2.1 + 3.1.0 + 2.12 + 1.0.1 + 2.27.2 + 3.12.0 + + 0.24 + 1.11.0 + 1.8.0 + 1.1.10.1 + 1.9 + 1.5.5-2 + 4.1.4 + + 0.8.8 + + 3.9.1.2184 + + + hbase-server-${project.version}-tests.jar + hbase-common-${project.version}-tests.jar + hbase-procedure-${project.version}-tests.jar + hbase-it-${project.version}-tests.jar + hbase-annotations-${project.version}-tests.jar + hbase-mapreduce-${project.version}-tests.jar + hbase-zookeeper-${project.version}-tests.jar + hbase-asyncfs-${project.version}-tests.jar + bash + surefire-junit47 + + false + false + + 0.25C + 0.25C + org.apache.hadoop.hbase.testclassification.SmallTests + org.apache.hadoop.hbase.testclassification.MediumTests + false + true + 900 + + + 2200m + 2200m + + -enableassertions -Dhbase.build.id=${build.id} -Xmx${surefire.Xmx} + -Djava.security.egd=file:/dev/./urandom -Djava.net.preferIPv4Stack=true + -Djava.awt.headless=true -Djdk.net.URLClassPath.disableClassPathURLCheck=true + -Dorg.apache.hbase.thirdparty.io.netty.leakDetection.level=advanced + -Dio.netty.eventLoopThreads=3 -Dio.opentelemetry.context.enableStrictContext=true + -enableassertions -Xmx${surefire.cygwinXmx} + -Djava.security.egd=file:/dev/./urandom -Djava.net.preferIPv4Stack=true + "-Djava.library.path=${hadoop.library.path};${java.library.path}" + -Dorg.apache.hbase.thirdparty.io.netty.leakDetection.level=advanced + -Dio.opentelemetry.context.enableStrictContext=true + -Dorg.apache.hbase.thirdparty.io.netty.tryReflectionSetAccessible=true + --add-modules jdk.unsupported + --add-opens java.base/java.nio=ALL-UNNAMED + --add-opens java.base/sun.nio.ch=ALL-UNNAMED + --add-opens java.base/java.lang=ALL-UNNAMED + --add-opens java.base/jdk.internal.ref=ALL-UNNAMED + --add-opens java.base/java.lang.reflect=ALL-UNNAMED + --add-opens java.base/java.util=ALL-UNNAMED + --add-opens java.base/java.util.concurrent=ALL-UNNAMED + --add-exports java.base/jdk.internal.misc=ALL-UNNAMED + --add-exports java.security.jgss/sun.security.krb5=ALL-UNNAMED + --add-opens java.base/jdk.internal.util.random=ALL-UNNAMED + + ${hbase-surefire.argLine} @{jacocoArgLine} + 1.5.1 + 3.0.0 + 0.14.0 + + ${project.build.directory}/test-classes + ${project.build.directory} + yyyy-MM-dd'T'HH:mm:ss'Z' + + ${maven.build.timestamp} + bash + + none + + 2.0.0.AM26 + 2.0.0 + + + + + + + + org.apache.hbase + hbase-annotations + ${project.version} + test-jar + + + + org.apache.hbase + hbase-backup + ${project.version} + + + org.apache.hbase + hbase-common + ${project.version} + + + org.apache.hbase + hbase-common + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-logging + ${project.version} + + + org.apache.hbase + hbase-logging + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-protocol-shaded + ${project.version} + + + org.apache.hbase + hbase-procedure + ${project.version} + + + org.apache.hbase + hbase-procedure + ${project.version} + test-jar + + + org.apache.hbase + hbase-hadoop-compat + ${project.version} + + + org.apache.hbase + hbase-hadoop-compat + ${project.version} + test-jar + + + org.apache.hbase + hbase-replication + ${project.version} + + + org.apache.hbase + hbase-replication + ${project.version} + test-jar + + + org.apache.hbase + hbase-balancer + ${project.version} + + + org.apache.hbase + hbase-balancer + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-http + ${project.version} + + + org.apache.hbase + hbase-http + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-server + ${project.version} + + + org.apache.hbase + hbase-server + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-mapreduce + ${project.version} + + + org.apache.hbase + hbase-mapreduce + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-endpoint + ${project.version} + + + org.apache.hbase + hbase-shell + ${project.version} + + + org.apache.hbase + hbase-shell + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-thrift + ${project.version} + + + org.apache.hbase + hbase-thrift + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-testing-util + ${project.version} + test + + + org.apache.hbase + hbase-examples + ${project.version} + + + org.apache.hbase + hbase-external-blockcache + ${project.version} + + + org.apache.hbase + hbase-it + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-client + ${project.version} + + + org.apache.hbase + hbase-client + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-metrics-api + ${project.version} + + + org.apache.hbase + hbase-metrics-api + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-metrics + ${project.version} + + + org.apache.hbase + hbase-metrics + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-rest + ${project.version} + + + org.apache.hbase + hbase-resource-bundle + ${project.version} + + + org.apache.hbase + hbase-zookeeper + ${project.version} + + + com.google.code.findbugs + jsr305 + + + com.github.spotbugs + spotbugs-annotations + + + + + org.apache.hbase + hbase-zookeeper + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-hbtop + ${project.version} + + + org.apache.hbase + hbase-shaded-client + ${project.version} + + + org.apache.hbase + hbase-shaded-client-byo-hadoop + ${project.version} + + + org.apache.hbase + hbase-shaded-mapreduce + ${project.version} + + + org.apache.hbase + hbase-asyncfs + ${project.version} + + + org.apache.hbase + hbase-asyncfs + ${project.version} + test-jar + test + + + org.apache.hbase + hbase-compression-aircompressor + ${project.version} + + + org.apache.hbase + hbase-compression-brotli + ${project.version} + + + org.apache.hbase + hbase-compression-lz4 + ${project.version} + + + org.apache.hbase + hbase-compression-snappy + ${project.version} + + + org.apache.hbase + hbase-compression-xz + ${project.version} + + + org.apache.hbase + hbase-compression-zstd + ${project.version} + + + + com.github.stephenc.findbugs + findbugs-annotations + ${findbugs-annotations.version} + + + + org.codehaus.jettison + jettison + ${jettison.version} + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + org.slf4j + jul-to-slf4j + ${slf4j.version} + + + org.apache.logging.log4j + log4j-api + ${log4j2.version} + + + org.apache.logging.log4j + log4j-core + ${log4j2.version} + + + org.apache.logging.log4j + log4j-slf4j-impl + ${log4j2.version} + + + org.apache.logging.log4j + log4j-1.2-api + ${log4j2.version} + + + + org.apache.avro + avro + ${avro.version} + + + com.github.ben-manes.caffeine + caffeine + ${caffeine.version} + + + io.dropwizard.metrics + metrics-core + ${metrics-core.version} + + + org.apache.httpcomponents + httpclient + ${httpclient.version} + + + org.apache.httpcomponents + httpcore + ${httpcore.version} + + + commons-codec + commons-codec + ${commons-codec.version} + + + commons-validator + commons-validator + ${commons-validator.version} + + + commons-io + commons-io + ${commons-io.version} + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + org.apache.commons + commons-math3 + ${commons-math.version} + + + + commons-logging + commons-logging + 1.2 + + + org.apache.zookeeper + zookeeper + ${zookeeper.version} + + + com.google.code.findbugs + jsr305 + + + com.github.spotbugs + spotbugs-annotations + + + jline + jline + + + com.sun.jmx + jmxri + + + com.sun.jdmk + jmxtools + + + javax.jms + jms + + + io.netty + netty + + + io.netty + netty-all + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + + + jline + jline + ${jline.version} + + + org.apache.thrift + libthrift + ${thrift.version} + + + org.apache.tomcat.embed + tomcat-embed-core + + + + + org.jruby + jruby-complete + ${jruby.version} + + + org.jruby.jcodings + jcodings + ${jcodings.version} + + + org.jruby.joni + joni + ${joni.version} + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version} + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.databind.version} + + + org.jamon + jamon-runtime + ${jamon-runtime.version} + + + + javax.servlet + javax.servlet-api + ${servlet.api.version} + + + javax.ws.rs + javax.ws.rs-api + ${wx.rs.api.version} + + + com.sun.activation + javax.activation + 1.2.0 + + + javax.annotation + javax.annotation-api + 1.2 + + + + org.glassfish.web + javax.servlet.jsp + ${glassfish.jsp.version} + + + + javax.servlet.jsp + javax.servlet.jsp-api + 2.3.1 + + + org.glassfish + javax.el + ${glassfish.el.version} + + + javax.xml.bind + jaxb-api + ${jaxb-api.version} + + + javax.xml.stream + stax-api + + + + + junit + junit + ${junit.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + org.hamcrest + hamcrest-library + ${hamcrest.version} + + + org.mockito + mockito-bom + ${mockito.version} + pom + import + + + io.opentelemetry + opentelemetry-bom + ${opentelemetry.version} + pom + import + + + io.opentelemetry + opentelemetry-semconv + ${opentelemetry.version}-alpha + + + io.opentelemetry.javaagent + opentelemetry-javaagent + ${opentelemetry-javaagent.version} + + + com.lmax + disruptor + ${disruptor.version} + + + net.spy + spymemcached + ${spy.version} + true + + + org.bouncycastle + bcprov-jdk15on + ${bouncycastle.version} + test + + + org.skyscreamer + jsonassert + ${skyscreamer.version} + test + + + org.bouncycastle + bcpkix-jdk15on + ${bouncycastle.version} + test + + + org.apache.kerby + kerb-core + ${kerby.version} + + + org.apache.kerby + kerb-client + ${kerby.version} + + + org.apache.kerby + kerb-simplekdc + ${kerby.version} + + + org.apache.commons + commons-crypto + ${commons-crypto.version} + + + net.java.dev.jna + jna + + + + + org.apache.curator + curator-framework + ${curator.version} + + + org.apache.zookeeper + zookeeper + + + + + org.apache.curator + curator-client + ${curator.version} + + + com.google.guava + guava + + + org.apache.zookeeper + zookeeper + + + + + org.apache.curator + curator-recipes + ${curator.version} + + + com.google.guava + guava + + + org.apache.zookeeper + zookeeper + + + + + org.apache.yetus + audience-annotations + ${audience-annotations.version} + + + + io.airlift + aircompressor + ${aircompressor.version} + + + org.lz4 + lz4-java + ${lz4.version} + + + org.tukaani + xz + ${xz.version} + + + org.xerial.snappy + snappy-java + ${snappy.version} + + + com.github.luben + zstd-jni + ${zstd-jni.version} + + + + org.apache.hbase.thirdparty + hbase-shaded-gson + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-shaded-miscellaneous + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-shaded-netty + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-shaded-protobuf + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-shaded-jetty + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-shaded-jersey + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-shaded-jackson-jaxrs-json-provider + ${hbase-thirdparty.version} + + + org.apache.hbase.thirdparty + hbase-unsafe + ${hbase-thirdparty.version} + + + com.sun.xml.ws + jaxws-ri + 2.3.2 + pom + + + javax.activation + javax.activation-api + + + + + + + + + + org.aspectj + aspectjrt + ${aspectj.version} + + + edu.uchicago.cs.systems + wasabi + ${wasabi.version} + + + + + junit + junit + test + + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + org.apache.maven.plugins + maven-release-plugin + + + apache-release + + -Dmaven.test.skip.exec ${arguments} + ${goals} + pom.xml + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + true + false + false + -Xlint:-options + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven.javadoc.version} + + ${compileSource} + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + ${surefire.firstPartGroups} + false + false + false + ${surefire.skipFirstPart} + ${surefire.firstPartForkCount} + + + false + ${surefire.reportsDirectory} + ${surefire.tempDir} + ${surefire.testFailureIgnore} + ${surefire.timeout} + ${test.output.tofile} + + ${test.build.classes} + ${test.tmp.dir} + org.apache.hadoop.hbase.logging.JulToSlf4jInitializer + + + + ${test.exclude.pattern} + + + + listener + org.apache.hadoop.hbase.TimedOutTestsListener,org.apache.hadoop.hbase.HBaseClassTestRuleChecker,org.apache.hadoop.hbase.ResourceCheckerJUnitListener + + + + + + + org.apache.maven.surefire + ${surefire.provider} + ${surefire.version} + + + + + secondPartTestsExecution + + test + + test + + ${surefire.skipSecondPart} + ${surefire.testFailureIgnore} + + false + ${surefire.secondPartForkCount} + + ${surefire.secondPartGroups} + ${surefire.timeout} + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + ${buildnumber.maven.version} + + + com.github.spotbugs + spotbugs-maven-plugin + ${spotbugs.maven.version} + + ${project.basedir}/../dev-support/spotbugs-exclude.xml + true + true + Max + + + + + com.github.spotbugs + spotbugs + ${spotbugs.version} + + + + + org.codehaus.mojo + build-helper-maven-plugin + ${build.helper.maven.version} + + + maven-antrun-plugin + ${maven.antrun.version} + + + org.jamon + jamon-maven-plugin + ${jamon.plugin.version} + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + test-jar-no-fork + + prepare-package + + + log4j2.xml + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + true + + hbase-site.xml + hdfs-site.xml + mapred-queues.xml + mapred-site.xml + + + + + + + test-jar + + prepare-package + + + + + + org.apache.rat + apache-rat-plugin + + + **/*.versionsBackup + **/*.log + **/.* + **/*.tgz + **/*.orig + **/0000000000000016310 + **/a6a6562b777440fd9c34885428f5cb61.21e75333ada3d5bafb34bb918f29576c + **/8e8ab58dcf39412da19833fcd8f687ac + **/.idea/** + **/*.iml + **/CHANGES.txt + **/generated/** + **/gen-*/** + + conf/regionservers + **/*.avpr + **/*.svg + + **/src/main/resources/META-INF/LEGAL + + **/src/main/asciidoc/hbase.css + + **/jquery.min.js + **/jquery.tablesorter.min.js + **/parser-date-iso8601.min.js + + **/src/main/resources/hbase-webapps/static/*/bootstrap* + + **/hbase-webapps/static/js/vega*.min.js + + **/*.vm + + **/control + **/conffile + + docs/* + logs/* + + .git/** + .svn/** + **/.settings/** + **/patchprocess/** + src/site/resources/repo/** + **/dependency-reduced-pom.xml + **/rat.txt + + **/shaded/com/google/protobuf/** + **/src/main/patches/** + **/vote.tmpl + + **/CC-MAIN-2021-10-warc.paths.gz + + + + + maven-assembly-plugin + + + true + + + + org.xolstice.maven.plugins + protobuf-maven-plugin + ${protobuf.plugin.version} + + ${basedir}/src/main/protobuf/ + false + true + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven.checkstyle.version} + + hbase/checkstyle.xml + hbase/checkstyle-suppressions.xml + true + + + + org.apache.hbase + hbase-checkstyle + ${project.version} + + + com.puppycrawl.tools + checkstyle + ${checkstyle.version} + + + + + net.revelc.code + warbucks-maven-plugin + ${maven.warbucks.version} + + false + + + + (?!.*(.generated.|.tmpl.|\$)).* + false + true + false + false + false + org[.]apache[.]yetus[.]audience[.]InterfaceAudience.* + + + + + + run-warbucks + + check + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${enforcer.version} + + + org.codehaus.mojo + extra-enforcer-rules + ${extra.enforcer.version} + + + de.skuzzle.enforcer + restrict-imports-enforcer-rule + ${restrict-imports.enforcer.version} + + + + + org.apache.maven.plugins + maven-gpg-plugin + ${maven.gpg.version} + + + + + + org.codehaus.mojo + flatten-maven-plugin + 1.3.0 + + true + true + oss + + + + + flatten + + flatten + + process-resources + + + + flatten.clean + + clean + + clean + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + negate-license-bundles-property + + bsh-property + + + skip.license.check = !${license.bundles.dependencies}; + + skip.license.check + + + + + + create-license-file-path-property + + regex-property + + + license.aggregate.path + ${project.build.directory}/maven-shared-archive-resources/META-INF/LICENSE + \\ + / + false + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + display-info + + display-info + + initialize + false + + + hadoop-profile-min-maven-min-java-banned-xerces + + enforce + + + + + + System.getProperty("hadoop-profile", "").isEmpty() + The hadoop-profile property is unused, did you mean to set hadoop.profile instead? + + + + [${maven.min.version},) + Maven is out of date. + HBase requires at least version ${maven.min.version} of Maven to properly build from source. + You appear to be using an older version. You can use either "mvn -version" or + "mvn enforcer:display-info" to verify what version is active. + See the reference guide on building for more information: https://hbase.apache.org/book.html#build + + + + [${java.min.version},) + Java is out of date. + HBase requires at least version ${java.min.version} of the JDK to properly build from source. + You appear to be using an older version. You can use either "mvn -version" or + "mvn enforcer:display-info" to verify what version is active. + See the reference guide on building for more information: https://hbase.apache.org/book.html#build + + + + xerces:xercesImpl + + We avoid adding our own Xerces jars to the classpath, see HBASE-16340. + + + + + + banned-jsr305 + + enforce + + + + + + com.google.code.findbugs:jsr305 + + We don't allow the JSR305 jar from the Findbugs project, see HBASE-16321. + + + + + + banned-scala + + enforce + + + + + + org.scala-lang:scala-library + + We don't allow Scala, see HBASE-13992. + + + + + + banned-commons-logging + + enforce + + + + + + commons-logging:commons-logging + + We don't use commons-logging any more, so do not depend on it directly. + false + + + + + + banned-other-logging-framework + + enforce + + + + + + log4j:* + org.slf4j:slf4j-log4j12 + ch.qos.reload4j:* + org.slf4j:slf4j-reload4j + ch.qos.logback:* + + We do not allow other logging frameworks as now we use log4j2 + + + + + + banned-jetty + + enforce + + + + + + org.eclipse.jetty:** + + Use shaded jetty instead + false + + + + + + banned-jersey + + enforce + + + + + + org.glassfish.jersey.containers:** + org.glassfish.jersey.core:** + + Use shaded jersey instead + false + + + + + + banned-htrace + + enforce + + + + + + org.apache.htrace:** + + Use OpenTelemetry instead + false + + + + + + check-aggregate-license + + enforce + + + process-resources + + + + File license = new File("${license.aggregate.path}"); + + // Beanshell does not support try-with-resources, + // so we must close this scanner manually + Scanner scanner = new Scanner(license); + + while (scanner.hasNextLine()) { + if (scanner.nextLine().startsWith("ERROR:")) { + scanner.close(); + return false; + } + } + scanner.close(); + return true; + License errors detected, for more detail find ERROR in + ${license.aggregate.path} + + + ${skip.license.check} + + + + banned-illegal-imports + + enforce + + process-sources + + + + true + 512 + Use SLF4j for logging + + org.apache.commons.logging.** + org.apache.log4j.** + org.apache.logging.log4j.** + + + + org.apache.hadoop.hbase.logging.HBaseTestAppender + + + + false + 512 + Do not use log4j2 directly in code, see Log4jUtils in hbase-logging for more details. + + org.apache.logging.log4j.** + + + + true + 512 + Use shaded version in hbase-thirdparty + + com.google.common.** + io.netty.** + org.apache.commons.cli.** + org.apache.commons.collections.** + org.apache.commons.collections4.** + + + + true + 512 + Do not use shaded classes from other dependencies + + org.apache.curator.shaded.** + org.apache.htrace.shaded.** + + + + true + 512 + Use shaded gson in hbase-thirdparty + + org.codehaus.jackson.** + + + + true + 512 + Use commons lang 3 + + org.apache.commons.lang.** + + + + true + 512 + Use yetus IA and IS annotations + + org.apache.hadoop.classificatio.** + + + + true + 512 + Do not use htrace + + org.htrace.** + org.apache.htrace.** + + + + true + 512 + Use shaded jetty in hbase-thirdparty + + org.eclipse.jetty.** + + + + true + 512 + Use shaded jersey in hbase-thirdparty + + org.glassfish.jersey.** + + + + true + 512 + You should never use this style of annotations(i.e, 'this is for test only') + in IA.Public or IA.LimitedPrivate classes. Use IA.Private to tell users this is + not for public use. + For IA.Private classes, use RestrictedApi annotation in error prone instead. + + org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting + + + + true + 512 + Use shaded javax.ws.rs in hbase-thirdparty + + javax.ws.rs.** + + + + true + 512 + Use shaded jackson-jaxrs-json-provider in hbase-thirdparty + + com.fasterxml.jackson.jaxrs.** + + + + true + 512 + Use junit4 instead + + junit.framework.** + + + + + + + + + + org.codehaus.mojo + xml-maven-plugin + ${xml.maven.version} + false + + + + + + ${basedir}/hbase-common/src/main/resources/ + + hbase-default.xml + + ${basedir}/src/main/xslt/configuration_to_asciidoc_chapter.xsl + + + ^(.*)\.xml$ + $1.adoc + + + ${basedir}/target/asciidoc + + + + + + + + transform + + site + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + + + spotbugs + + false + + ${basedir}/dev-support/spotbugs-exclude.xml + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site.version} + + ${basedir}/src/site + ${basedir}/src/site/custom/project-info-report.properties + UTF-8 + UTF-8 + + + + + org.apache.maven.wagon + wagon-ssh + ${wagon.ssh.version} + + + + + + org.asciidoctor + asciidoctor-maven-plugin + ${asciidoctor.plugin.version} + false + + ${project.reporting.outputDirectory}/ + book + + ${project.version} + images + coderay + + + + + org.asciidoctor + asciidoctorj-pdf + ${asciidoctorj.pdf.version} + + + + + output-html + + process-asciidoc + + site + + + hbase.css + + html5 + + + + output-pdf + + process-asciidoc + + site + + pdf + + + + + - + + + + + + + org.apache.maven.plugins + maven-resources-plugin + + false + + \ + + + + copy-htaccess + + copy-resources + + site + + ${project.reporting.outputDirectory}/ + + + ${basedir}/src/site/resources/ + + .htaccess + + + + + + + + copy-empty-book-dir + + copy-resources + + site + + ${project.reporting.outputDirectory}/ + + + ${basedir}/src/site/resources/ + + book/** + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + ${maven.antrun.version} + false + + + + rename-pdf + + run + + site + + + + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + yyyy + build.year + + + + + create-timestamp + + validate + + + + + org.apache.felix + maven-bundle-plugin + ${maven.bundle.version} + true + true + + + com.diffplug.spotless + spotless-maven-plugin + ${spotless.version} + + + + + **/generated/* + **/package-info.java + + + + Remove unhelpful javadoc stubs + (?m)^ *\* *@(?:param|throws|return) *\w* *\n + + + + + Purge single returns tag multi line + (?m)^ */\*\*\n *\* *@return *(.*) *\n *\*/$ + /** Returns $1 */ + + + Purge single returns tag single line + ^ */\*\* *@return *(.*) *\*/$ + /** Returns $1 */ + + + + ${session.executionRootDirectory}/dev-support/hbase_eclipse_formatter.xml + + + ${session.executionRootDirectory}/dev-support/eclipse.importorder + + + + + + + + false + + + + + + + + **/*.xml + **/*.sh + **/*.py + **/Jenkinsfile* + **/*.md + *.md + **/*.txt + *.txt + + + **/target/** + **/dependency-reduced-pom.xml + + + + + + + + + src/main/java/**/*.java + src/test/java/**/*.java + + + **/generated/* + **/package-info.java + + src/main/java/org/apache/hadoop/hbase/util/AbstractByteRange.java + src/main/java/org/apache/hadoop/hbase/util/SimpleMutableByteRange.java + src/main/java/org/apache/hadoop/hbase/util/SimplePositionedMutableByteRange.java + + src/main/java/org/apache/hadoop/hbase/metrics/impl/HBaseMetrics2HadoopMetricsAdapter.java + + src/test/java/org/apache/hadoop/hbase/test/util/warc/WARCFileReader.java + src/test/java/org/apache/hadoop/hbase/test/util/warc/WARCFileWriter.java + src/test/java/org/apache/hadoop/hbase/test/util/warc/WARCInputFormat.java + src/test/java/org/apache/hadoop/hbase/test/util/warc/WARCOutputFormat.java + src/test/java/org/apache/hadoop/hbase/test/util/warc/WARCRecord.java + src/test/java/org/apache/hadoop/hbase/test/util/warc/WARCWritable.java + + + ${session.executionRootDirectory}/dev-support/license-header + package + + + + + + + + + dev.aspectj + aspectj-maven-plugin + ${aspectj-maven.version} + + + + edu.uchicago.cs.systems + wasabi + + + + + + + test-compile + compile + + + 1.8 + 1.8 + false + true + true + unmatchedSuperTypeInCall=ignore,adviceDidNotMatch=ignore,typeNotExposedToWeaver=ignore,uncheckedAdviceConversion=ignore,invalidAbsoluteTypeName=ignore,cantFindType=ignore + + + + + + org.aspectj + aspectjtools + ${aspectj.version} + + + + + + + kr.motd.maven + os-maven-plugin + ${os.maven.version} + + + + + + + + maven-project-info-reports-plugin + ${maven.project.info.report.version} + + + false + + + + + dependencies + dependency-convergence + dependency-info + dependency-management + index + issue-management + licenses + mailing-lists + plugin-management + plugins + team + scm + summary + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + apiNote + a + API Note: + + + + + + + devapi + + aggregate-no-fork + + + devapidocs + Developer API + The full HBase API, including private and unstable APIs + + **/generated/* + **/protobuf/* + + org.apache.hadoop.hbase.tmpl.common:com.google.protobuf:org.apache.hadoop.hbase.generated* + private + + true + true + 2 + true + true + true + true + all + true + en_US + + -J-Xmx2G + + + + org.mockito + mockito-core + ${mockito.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + false + + + + testdevapi + + test-aggregate-no-fork + + + testdevapidocs + Developer API + The full HBase API test code, including private and unstable APIs + + **/generated/* + **/protobuf/* + + org.apache.hadoop.hbase.tmpl.common:com.google.protobuf:org.apache.hadoop.hbase.generated* + private + + true + true + 2 + true + true + true + true + all + true + en_US + + -J-Xmx2G + + + + org.mockito + mockito-core + ${mockito.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + false + + + + + + userapi + + aggregate-no-fork + + + org.apache.yetus.audience.tools.IncludePublicAnnotationsStandardDoclet + + org.apache.yetus + audience-annotations + ${javadoc.audience-annotations.version} + + true + apidocs + User API + The HBase Application Programmer's API + org.apache.hadoop.hbase.backup*:org.apache.hadoop.hbase.catalog:org.apache.hadoop.hbase.client.coprocessor:org.apache.hadoop.hbase.client.metrics:org.apache.hadoop.hbase.codec*:org.apache.hadoop.hbase.constraint:org.apache.hadoop.hbase.coprocessor.*:org.apache.hadoop.hbase.executor:org.apache.hadoop.hbase.fs:*.generated.*:org.apache.hadoop.hbase.io.hfile.*:org.apache.hadoop.hbase.mapreduce.hadoopbackport:org.apache.hadoop.hbase.mapreduce.replication:org.apache.hadoop.hbase.master.*:org.apache.hadoop.hbase.metrics*:org.apache.hadoop.hbase.migration:org.apache.hadoop.hbase.monitoring:org.apache.hadoop.hbase.p*:org.apache.hadoop.hbase.regionserver.compactions:org.apache.hadoop.hbase.regionserver.handler:org.apache.hadoop.hbase.regionserver.snapshot:org.apache.hadoop.hbase.replication.*:org.apache.hadoop.hbase.rest.filter:org.apache.hadoop.hbase.rest.model:org.apache.hadoop.hbase.rest.p*:org.apache.hadoop.hbase.security.*:org.apache.hadoop.hbase.thrift*:org.apache.hadoop.hbase.tmpl.*:org.apache.hadoop.hbase.tool:org.apache.hadoop.hbase.trace:org.apache.hadoop.hbase.util.byterange*:org.apache.hadoop.hbase.util.test:org.apache.hadoop.hbase.util.vint:org.apache.hadoop.metrics2*:org.apache.hadoop.hbase.io.compress* + + false + **/generated/* + protected + + true + true + 2 + true + true + true + true + all + true + en_US + + -J-Xmx2G + + + + org.mockito + mockito-core + ${mockito.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + false + + + + + testuserapi + + test-aggregate-no-fork + + + org.apache.yetus.audience.tools.IncludePublicAnnotationsStandardDoclet + + org.apache.yetus + audience-annotations + ${javadoc.audience-annotations.version} + + true + testapidocs + User API + The HBase Application Programmer's API + org.apache.hadoop.hbase.backup*:org.apache.hadoop.hbase.catalog:org.apache.hadoop.hbase.client.coprocessor:org.apache.hadoop.hbase.client.metrics:org.apache.hadoop.hbase.codec*:org.apache.hadoop.hbase.constraint:org.apache.hadoop.hbase.coprocessor.*:org.apache.hadoop.hbase.executor:org.apache.hadoop.hbase.fs:*.generated.*:org.apache.hadoop.hbase.io.hfile.*:org.apache.hadoop.hbase.mapreduce.hadoopbackport:org.apache.hadoop.hbase.mapreduce.replication:org.apache.hadoop.hbase.master.*:org.apache.hadoop.hbase.metrics*:org.apache.hadoop.hbase.migration:org.apache.hadoop.hbase.monitoring:org.apache.hadoop.hbase.p*:org.apache.hadoop.hbase.regionserver.compactions:org.apache.hadoop.hbase.regionserver.handler:org.apache.hadoop.hbase.regionserver.snapshot:org.apache.hadoop.hbase.replication.*:org.apache.hadoop.hbase.rest.filter:org.apache.hadoop.hbase.rest.model:org.apache.hadoop.hbase.rest.p*:org.apache.hadoop.hbase.security.*:org.apache.hadoop.hbase.thrift*:org.apache.hadoop.hbase.tmpl.*:org.apache.hadoop.hbase.tool:org.apache.hadoop.hbase.trace:org.apache.hadoop.hbase.util.byterange*:org.apache.hadoop.hbase.util.test:org.apache.hadoop.hbase.util.vint:org.apache.hadoop.metrics2*:org.apache.hadoop.hbase.io.compress* + + false + **/generated/* + protected + + true + true + 2 + true + true + true + true + all + true + en_US + + -J-Xmx2G + + + + org.mockito + mockito-core + ${mockito.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + false + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven.checkstyle.version} + + target/** + + + + + + + + + + build-with-jdk8 + + 1.8 + + + ${compileSource} + ${compileSource} + + + + build-with-jdk11 + + [11,) + + + ${releaseTarget} + + ${hbase-surefire.jdk11.flags} + ${hbase-surefire.argLine} + @{jacocoArgLine} + + 2200m + + 0.14.1 + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${maven.javadoc.version} + + ${compileSource} + + --ignore-source-errors + + -J-Xmx2G + -J--add-exports + -Jjdk.javadoc/jdk.javadoc.internal.tool=ALL-UNNAMED + + + + + + + + + build-with-jdk17 + + [17,) + + + ${hbase-surefire.jdk11.flags} + ${hbase-surefire.jdk17.flags} + ${hbase-surefire.argLine} + @{jacocoArgLine} + + + + + jenkins.patch + + false + + HBasePatchProcess + + + + 2 + + + + + org.apache.maven.plugins + maven-antrun-plugin + false + + + + run + + validate + + + Maven Execution Environment + MAVEN_OPTS="${env.MAVEN_OPTS}" + + + + + + + + + + jacoco + + false + + + **/generated/**/* + **/generated/**/*,hbase-it/**,**/hbase-logging/**/*,**/hbase-testing-util/**/*, + **/hbase-protocol-shaded/**/*,**/hbase-external-blockcache/**/*,**/hbase-examples/**/*, + **/hbase-archetypes/**/* + + + + + org.jacoco + jacoco-maven-plugin + ${jacoco.version} + + + **/generated/**/* + + + + + prepare-agent + + prepare-agent + + initialize + + jacocoArgLine + true + + + + report + + report + + prepare-package + + + + + org.sonarsource.scanner.maven + sonar-maven-plugin + ${sonar-maven-plugin.version} + + + + + + os.linux + + false + + Linux + + + + ${os.name}-${os.arch}-${sun.arch.data.model} + + + + os.mac + + + Mac + + + + Mac_OS_X-${sun.arch.data.model} + + + + os.windows + + + Windows + + + + cygwin + ${hbase-surefire.cygwin-argLine} @{jacocoArgLine} + + + + + apache-release + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + https://repository.apache.org/ + apache.releases.https + + + + + + + + release + + + + org.apache.rat + apache-rat-plugin + + + + check + + package + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${enforcer.version} + + + + ${compileSource} + HBase has unsupported dependencies. + HBase requires that all dependencies be compiled with version ${compileSource} or earlier + of the JDK to properly build from source. You appear to be using a newer dependency. You can use + either "mvn -version" or "mvn enforcer:display-info" to verify what version is active. + Non-release builds can temporarily build with a newer JDK version by setting the + 'compileSource' property (eg. mvn -DcompileSource=1.8 clean package). + + module-info + + + + + + + org.codehaus.mojo + extra-enforcer-rules + ${extra.enforcer.version} + + + + + org.cyclonedx + cyclonedx-maven-plugin + 2.7.6 + + + + makeBom + + package + + + + + + + + + + + hadoop-3.0 + + + !hadoop.profile + + + + ${hadoop-three.version} + src/main/assembly/hadoop-three-compat.xml + + + + + org.apache.hadoop + hadoop-mapreduce-client-core + ${hadoop-three.version} + + + com.google.guava + guava + + + com.sun.jersey + jersey-core + + + javax.xml.bind + jaxb-api + + + javax.ws.rs + jsr311-api + + + org.codehaus.jackson + * + + + io.netty + netty + + + io.netty + netty-all + + + javax.servlet + servlet-api + + + javax.inject + javax.inject + + + com.google.guava + guava + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-mapreduce-client-app + ${hadoop-three.version} + test-jar + + + org.codehaus.jackson + jackson-mapper-asl + + + org.codehaus.jackson + jackson-core-asl + + + javax.xml.bind + jaxb-api + + + javax.ws.rs + jsr311-api + + + org.codehaus.jackson + * + + + javax.xml.bind + jaxb-api + + + javax.ws.rs + jsr311-api + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-mapreduce-client-jobclient + ${hadoop-three.version} + + + com.sun.jersey + jersey-core + + + io.netty + netty + + + io.netty + netty-all + + + javax.servlet + servlet-api + + + org.slf4j + slf4j-log4j12 + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-mapreduce-client-jobclient + ${hadoop-three.version} + test-jar + test + + + com.sun.jersey + jersey-core + + + io.netty + netty + + + io.netty + netty-all + + + javax.servlet + servlet-api + + + org.slf4j + slf4j-log4j12 + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-hdfs + ${hadoop-three.version} + + + com.sun.jersey + jersey-core + + + com.sun.jersey + jersey-server + + + javax.servlet.jsp + jsp-api + + + javax.servlet + servlet-api + + + stax + stax-api + + + xerces + xercesImpl + + + org.codehaus.jackson + * + + + com.google.guava + guava + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + org.fusesource.leveldbjni + leveldbjni-all + + + org.openlabtesting.leveldbjni + leveldbjni-all + + + + + org.apache.hadoop + hadoop-hdfs + ${hadoop-three.version} + test-jar + test + + + javax.servlet.jsp + jsp-api + + + javax.servlet + servlet-api + + + stax + stax-api + + + xerces + xercesImpl + + + org.codehaus.jackson + * + + + com.google.guava + guava + + + com.sun.jersey + jersey-core + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-auth + ${hadoop-three.version} + + + com.google.guava + guava + + + net.minidev + json-smart + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-common + ${hadoop-three.version} + + + com.sun.jersey + jersey-core + + + com.sun.jersey + jersey-json + + + com.sun.jersey + jersey-servlet + + + com.sun.jersey + jersey-server + + + javax.servlet.jsp + jsp-api + + + javax.servlet + javax.servlet-api + + + stax + stax-api + + + io.netty + netty + + + + com.google.code.findbugs + jsr305 + + + junit + junit + + + org.codehaus.jackson + * + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + io.netty + netty + + + io.netty + netty-all + + + + + + javax.activation + javax.activation-api + 1.2.0 + test + + + org.apache.hadoop + hadoop-common + ${hadoop-three.version} + test-jar + + + com.sun.jersey + jersey-core + + + com.google.code.findbugs + jsr305 + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + org.codehaus.jackson + * + + + javax.servlet.jsp + jsp-api + + + javax.xml.bind + jaxb-api + + + javax.ws.rs + jsr311-api + + + + + + org.apache.hadoop + hadoop-client + ${hadoop-three.version} + + + org.apache.hadoop + hadoop-annotations + ${hadoop-three.version} + + + + org.apache.hadoop + hadoop-minicluster + ${hadoop-three.version} + + + + commons-httpclient + commons-httpclient + + + javax.servlet.jsp + jsp-api + + + javax.servlet + servlet-api + + + stax + stax-api + + + io.netty + netty + + + io.netty + netty-all + + + com.google.code.findbugs + jsr305 + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + + + org.apache.hadoop + hadoop-minikdc + ${hadoop-three.version} + test + + + org.slf4j + slf4j-log4j12 + + + ch.qos.reload4j + reload4j + + + org.slf4j + slf4j-reload4j + + + bouncycastle + bcprov-jdk15 + + + + + org.apache.hadoop + hadoop-distcp + ${hadoop-three.version} + + + + org.apache.hadoop + hadoop-hdfs-client + ${hadoop-three.version} + + + + + + + + + singleJVMTests + + false + + + 1 + false + true + + + + + + runSmallTests + + false + + + false + true + org.apache.hadoop.hbase.testclassification.SmallTests + + + + + + runMediumTests + + false + + + false + true + org.apache.hadoop.hbase.testclassification.MediumTests + + + + + + runLargeTests + + false + + + false + true + org.apache.hadoop.hbase.testclassification.LargeTests + + + + + + runDevTests + + false + + + 1 + false + false + org.apache.hadoop.hbase.testclassification.SmallTests + org.apache.hadoop.hbase.testclassification.MediumTests + + + + + runAllTests + + false + + + false + false + org.apache.hadoop.hbase.testclassification.SmallTests + org.apache.hadoop.hbase.testclassification.MediumTests,org.apache.hadoop.hbase.testclassification.LargeTests + + + + runMiscTests + + false + + + false + true + org.apache.hadoop.hbase.testclassification.MiscTests + + + + + runCoprocessorTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.CoprocessorTests + + + + + runClientTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.ClientTests + + + + + runMasterTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.MasterTests + + + + + runMapredTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.MapredTests + + + + + runMapreduceTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.MapReduceTests + + + + + runRegionServerTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.RegionServerTests + + + + + runVerySlowMapReduceTests + + false + + + 2 + 1 + false + true + org.apache.hadoop.hbase.testclassification.VerySlowMapReduceTests + + + + + + runVerySlowRegionServerTests + + false + + + 2 + 1 + false + true + org.apache.hadoop.hbase.testclassification.VerySlowRegionServerTests + + + + + + runFilterTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.FilterTests + + + + + runIOTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.IOTests + + + + + runRestTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.RestTests + + + + + runRPCTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.RPCTests + + + + + runReplicationTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.ReplicationTests + + + + + runSecurityTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.SecurityTests + + + + + runFlakeyTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.FlakeyTests + + + + + runZKTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.ZKTests + + + + + runRSGroupTests + + false + + + 1 + 1 + false + true + org.apache.hadoop.hbase.testclassification.RSGroupTests + + + + + + + localTests + + + test + + + + surefire-junit4 + false + true + + + + + + clover + + false + + clover + + + + ${user.home}/.clover.license + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + com.atlassian.maven.plugins + maven-clover2-plugin + ${clover.version} + + + + + com.atlassian.maven.plugins + maven-clover2-plugin + ${clover.version} + + true + true + 50% + true + true + + **/generated/** + + + + + clover-setup + + setup + + process-sources + + + clover + + clover + + site + + + + + + + + + site-install-step + + true + true + true + true + true + true + + + + + site-build-step + + true + true + true + true + true + true + true + + + + eclipse-specific + + + m2e.version + + + + + + + + org.apache.maven.plugins + maven-eclipse-plugin + ${maven.eclipse.version} + + + + org.eclipse.m2e + lifecycle-mapping + ${lifecycle.mapping.version} + + + + + + org.jacoco + jacoco-maven-plugin + [0.6.2.201302030002,) + + prepare-agent + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${enforcer.version} + + enforce + + + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + [1.5,) + + process + bundle + + + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + [1.3,) + + create-timestamp + + + + + true + true + + + + + + + + + + + + + aarch64 + + + linux + aarch64 + + + + org.openlabtesting.protobuf + + + + \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.conf new file mode 100644 index 00000000..d5ccdcab --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.data new file mode 100644 index 00000000..49dd7e4e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestMultiVersions.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L491!!!org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists!!!org.apache.hadoop.fs.FileSystem.exists!!!FSUtils.java:494!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.conf new file mode 100644 index 00000000..ae32237b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.data new file mode 100644 index 00000000..62344dac --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.TestRegionReplicationLagEvaluation.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/handler/RegionReplicaFlushHandler.java#L107!!!org.apache.hadoop.hbase.regionserver.handler.RegionReplicaFlushHandler.triggerFlushInPrimaryRegion!!!org.apache.hadoop.hbase.util.FutureUtils.get!!!RegionReplicaFlushHandler.java:114!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.conf new file mode 100644 index 00000000..bb834696 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.data new file mode 100644 index 00000000..0bf27050 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.backup.TestBackupDeleteRestore.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/tool/BulkLoadHFilesTool.java#L963!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad!!!org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.bulkLoadPhase!!!BulkLoadHFilesTool.java:990!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.conf new file mode 100644 index 00000000..383bd64b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.data new file mode 100644 index 00000000..342154a3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestAsyncTable.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L5026!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBool!!!RPCProtos.java:5060!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.conf new file mode 100644 index 00000000..fff77a77 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.data new file mode 100644 index 00000000..9c88deb7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientSideRegionScanner.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/TransitRegionStateProcedure.java#L409!!!org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState!!!confirmOpened!!!TransitRegionStateProcedure.java:437!!!java.io.IOException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.conf new file mode 100644 index 00000000..3a43c78e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.data new file mode 100644 index 00000000..a44778da --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestClientTimeouts.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/BlockingRpcConnection.java#L250!!!org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection!!!org.apache.hadoop.net.NetUtils.connect!!!BlockingRpcConnection.java:259!!!java.net.SocketException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.conf new file mode 100644 index 00000000..cb7e668f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.data new file mode 100644 index 00000000..5506033e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestEnableTable.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.hbase.backup.HFileArchiver$File.moveAndClose!!!HFileArchiver.java:566!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.conf new file mode 100644 index 00000000..94e807cb --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.data new file mode 100644 index 00000000..488008f1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.client.TestMetaWithReplicasShutdownHandling.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.java#L71!!!org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run!!!org.apache.hadoop.hbase.regionserver.HRegionServer.reportProcedureDone!!!RemoteProcedureResultReporter.java:89!!!java.io.IOException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.conf new file mode 100644 index 00000000..73ff36cd --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.data new file mode 100644 index 00000000..5506033e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestClassLoading.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.hbase.backup.HFileArchiver$File.moveAndClose!!!HFileArchiver.java:566!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.conf new file mode 100644 index 00000000..efd03df7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.data new file mode 100644 index 00000000..b97f8839 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.TestRegionObserverScannerOpenHook.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L593!!!org.apache.hadoop.hbase.util.FSUtils.setClusterId!!!org.apache.hadoop.fs.FileSystem.write!!!FSUtils.java:598!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.conf new file mode 100644 index 00000000..e69de29b diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.data new file mode 100644 index 00000000..b97f8839 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestRefreshHFilesEndpoint.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L593!!!org.apache.hadoop.hbase.util.FSUtils.setClusterId!!!org.apache.hadoop.fs.FileSystem.write!!!FSUtils.java:598!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.conf new file mode 100644 index 00000000..9563643f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.data new file mode 100644 index 00000000..5bf1851d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.coprocessor.example.TestZooKeeperScanPolicyObserver.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RemoteProcedureResultReporter.java#L71!!!org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run!!!org.apache.hadoop.hbase.regionserver.HRegionServer.reportProcedureDone!!!RemoteProcedureResultReporter.java:89!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.conf new file mode 100644 index 00000000..ddd75ec1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.data new file mode 100644 index 00000000..f55d877d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.io.asyncfs.TestFanOutOneBlockAsyncDFSOutput.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-asyncfs/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java#L589!!!org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.complete!!!FanOutOneBlockAsyncDFSOutputHelper.java:591!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.conf new file mode 100644 index 00000000..8ce0058d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.data new file mode 100644 index 00000000..2e8b30d1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.mapreduce.TestTableMapReduceUtil.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java#L2524!!!org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub!!!org.apache.hadoop.hbase.security.UserProvider.getCurrent!!!HRegionServer.java:2544!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.conf new file mode 100644 index 00000000..27480884 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.data new file mode 100644 index 00000000..7c637b59 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.TestRetainAssignmentOnRestartSplitWithoutZk.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L593!!!org.apache.hadoop.hbase.util.FSUtils.setClusterId!!!org.apache.hadoop.fs.FileSystem.rename!!!FSUtils.java:608!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.conf new file mode 100644 index 00000000..1547bbc9 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.data new file mode 100644 index 00000000..f55d877d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionAssignedToMultipleRegionServers.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-asyncfs/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java#L589!!!org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile!!!org.apache.hadoop.hdfs.protocol.ClientProtocol.complete!!!FanOutOneBlockAsyncDFSOutputHelper.java:591!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.conf new file mode 100644 index 00000000..fa27b8d9 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.data new file mode 100644 index 00000000..5506033e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.assignment.TestRegionReplicaSplit.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.hbase.backup.HFileArchiver$File.moveAndClose!!!HFileArchiver.java:566!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.conf new file mode 100644 index 00000000..7e376b76 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.data new file mode 100644 index 00000000..b0c79f70 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureMasterRestarts.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SnapshotRegionCallable.java#L57!!!org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall!!!org.apache.hadoop.hbase.regionserver.HRegion.flush!!!SnapshotRegionCallable.java:58!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.conf new file mode 100644 index 00000000..011eaeaa --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.data new file mode 100644 index 00000000..b0c79f70 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.master.procedure.TestSnapshotProcedureRSCrashes.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SnapshotRegionCallable.java#L57!!!org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall!!!org.apache.hadoop.hbase.regionserver.HRegion.flush!!!SnapshotRegionCallable.java:58!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.conf new file mode 100644 index 00000000..20247157 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.data new file mode 100644 index 00000000..ee608d9c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.procedure2.TestChildProcedures.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.java#L402!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease!!!org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.getLogFiles!!!WALProcedureStore.java:410!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.conf new file mode 100644 index 00000000..5d7abee8 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.data new file mode 100644 index 00000000..342154a3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.quotas.TestSuperUserQuotaPermissions.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L5026!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBool!!!RPCProtos.java:5060!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.conf new file mode 100644 index 00000000..2f0d763d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.data new file mode 100644 index 00000000..432f7dce --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBootstrapNodeManager.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/BootstrapNodeManager.java#L135!!!org.apache.hadoop.hbase.regionserver.BootstrapNodeManager.getFromMaster!!!org.apache.hadoop.hbase.util.FutureUtils.get!!!BootstrapNodeManager.java:140!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.conf new file mode 100644 index 00000000..99593176 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.data new file mode 100644 index 00000000..2dc7a9e7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestBulkLoadReplicationHFileRefs.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java#L539!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initAndStartReplicationEndpoint!!!ReplicationSource.java:552!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.conf new file mode 100644 index 00000000..21d0c5c5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.data new file mode 100644 index 00000000..5506033e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestCompactionArchiveConcurrentClose.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/backup/HFileArchiver.java#L548!!!org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile!!!org.apache.hadoop.hbase.backup.HFileArchiver$File.moveAndClose!!!HFileArchiver.java:566!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.conf new file mode 100644 index 00000000..29dc8945 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.data new file mode 100644 index 00000000..2e8b30d1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.TestRegionServerCrashDisableWAL.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java#L2524!!!org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub!!!org.apache.hadoop.hbase.security.UserProvider.getCurrent!!!HRegionServer.java:2544!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.conf new file mode 100644 index 00000000..0115d5d5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.data new file mode 100644 index 00000000..cc983cac --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.regionserver.wal.TestFSHLog.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/AbstractFSWAL.java#L914!!!org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive!!!org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archiveLogFile!!!AbstractFSWAL.java:916!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.conf new file mode 100644 index 00000000..3ef2bb84 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.data new file mode 100644 index 00000000..44b4c95c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.TestSerialReplicationFailover.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/master/procedure/ServerCrashProcedure.java#L136!!!org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState!!!org.apache.hadoop.hbase.master.MasterServices.getProcedures!!!ServerCrashProcedure.java:272!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.conf new file mode 100644 index 00000000..a9e31ef1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.data new file mode 100644 index 00000000..0f616884 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/SyncReplicationReplayWALProcedure.java#L59!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.isReplayWALFinished!!!SyncReplicationReplayWALProcedure.java:75!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.conf new file mode 100644 index 00000000..0e646cf9 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.data new file mode 100644 index 00000000..0f616884 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestDrainReplicationQueuesForStandBy.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/SyncReplicationReplayWALProcedure.java#L59!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState!!!org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.isReplayWALFinished!!!SyncReplicationReplayWALProcedure.java:75!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.conf new file mode 100644 index 00000000..ce4da4cd --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.data new file mode 100644 index 00000000..2dc7a9e7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestRefreshRecoveredReplication.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java#L539!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize!!!org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initAndStartReplicationEndpoint!!!ReplicationSource.java:552!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.conf new file mode 100644 index 00000000..41700205 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.data new file mode 100644 index 00000000..2e8b30d1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.replication.regionserver.TestReplicator.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java#L2524!!!org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub!!!org.apache.hadoop.hbase.security.UserProvider.getCurrent!!!HRegionServer.java:2544!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.conf new file mode 100644 index 00000000..5a9a57c7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.data new file mode 100644 index 00000000..8ed03bb5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestDeleteRow.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/RPCProtos.java#L5026!!!org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom!!!org.apache.hbase.thirdparty.com.google.protobuf.CodedInputStream.readBool!!!RPCProtos.java:5055!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.conf new file mode 100644 index 00000000..a3bf63be --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.data new file mode 100644 index 00000000..49dd7e4e --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rest.TestSecurityHeadersFilter.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java#L491!!!org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists!!!org.apache.hadoop.fs.FileSystem.exists!!!FSUtils.java:494!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.conf new file mode 100644 index 00000000..373f6db4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.data new file mode 100644 index 00000000..85eb4119 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.rsgroup.TestRSGroupsBalance.java.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupInfoManagerImpl.java#L1019!!!org.apache.hadoop.hbase.rsgroup.RSGroupInfoManagerImpl.moveRegionsBetweenGroups!!!moveAsync!!!RSGroupInfoManagerImpl.java:1037!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.conf new file mode 100644 index 00000000..35f7c318 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.data new file mode 100644 index 00000000..aac0fbe6 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.snapshot.TestMobFlushSnapshotFromClient.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/snapshot/FlushSnapshotSubprocedure.java#L113!!!org.apache.hadoop.hbase.regionserver.snapshot.FlushSnapshotSubprocedure$RegionSnapshotTask.call!!!org.apache.hadoop.hbase.regionserver.HRegion.flush!!!FlushSnapshotSubprocedure.java:114!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.conf new file mode 100644 index 00000000..3cc01cc8 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.data new file mode 100644 index 00000000..a4e361b9 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.util.TestRegionMoverWithRSGroupEnable.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/util/MoveWithAck.java#L76!!!org.apache.hadoop.hbase.util.MoveWithAck.call!!!org.apache.hadoop.hbase.client.Admin.move!!!MoveWithAck.java:82!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.conf new file mode 100644 index 00000000..d3f5a448 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.data new file mode 100644 index 00000000..ca47f588 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hadoop.hbase.wal.TestSyncReplicationWALProvider.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/DualAsyncFSWAL.java#L76!!!org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance!!!org.apache.hadoop.hbase.regionserver.wal.AsyncFSWAL.createAsyncWriter!!!DualAsyncFSWAL.java:82!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.conf new file mode 100644 index 00000000..88b0419c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.data new file mode 100644 index 00000000..9c88deb7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hbase/test-plan/hbase_retry_locations-org.apache.hbase.archetypes.exemplars.client.TestHelloHBase.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hbase/tree//89ca7f4//hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/TransitRegionStateProcedure.java#L409!!!org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState!!!confirmOpened!!!TransitRegionStateProcedure.java:437!!!java.io.IOException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive.conf new file mode 100644 index 00000000..6888129b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive.conf @@ -0,0 +1,3 @@ +retry_data_file: /home/bastoica/projects/current/wasabi/tool/config/hive/hive_retry_locations.data +injection_policy: max-count +max_injection_count: 0 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive_retry_bounds.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive_retry_bounds.data new file mode 100644 index 00000000..7e745685 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive_retry_bounds.data @@ -0,0 +1,32 @@ +Var name!!!Assigned value!!!Assign method!!!Test class +HIVE_SERVER2_THRIFT_CLIENT_CONNECTION_RETRY_LIMIT!!!0!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestRetryingThriftCLIServiceClient +HIVE_SERVER2_THRIFT_CLIENT_CONNECTION_RETRY_LIMIT!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestRetryingThriftCLIServiceClient +HIVE_SERVER2_THRIFT_CLIENT_CONNECTION_RETRY_LIMIT!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestRetryingThriftCLIServiceClient +HIVE_SERVER2_THRIFT_CLIENT_RETRY_LIMIT!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestRetryingThriftCLIServiceClient +HIVE_LOCK_SLEEP_BETWEEN_RETRIES!!!100!!!org.apache.hadoop.hive.conf.HiveConf.setTimeVar!!!TestConcurrentDppInserts +HIVE_LOCK_NUMRETRIES!!!2!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestDbTxnManager2 +METASTORE_THRIFT_FAILURE_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestPermsGrp +METASTORE_THRIFT_FAILURE_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHiveClientCache +METASTORE_THRIFT_FAILURE_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHCatMultiOutputFormat +METASTORE_THRIFT_FAILURE_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHCatPartitionPublish +METASTORE_THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHCatClient +METASTORE_THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestPermsGrp +METASTORE_THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHiveClientCache +METASTORE_THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHCatMultiOutputFormat +METASTORE_THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.conf.HiveConf.setIntVar!!!TestHCatPartitionPublish +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestFilterHooks +THRIFT_CONNECTION_RETRIES!!!10!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestHiveMetaStoreGetMetaConf +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestHiveMetaStorePartitionSpecs +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestHiveMetaStoreWithEnvironmentContext +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestHmsServerAuthorization +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestMetaStoreEndFunctionListener +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestMetaStoreEventListener +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestMetaStoreEventListenerOnlyOnCommit +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestMetaStoreEventListenerWithOldConf +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestMetaStoreInitListener +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestRetryingHMSHandler +THRIFT_CONNECTION_RETRIES!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestHiveMetaStoreAuthorizer +HMS_HANDLER_ATTEMPTS!!!4!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestObjectStoreInitRetry +HMS_HANDLER_ATTEMPTS!!!2!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestRetryingHMSHandler +HIVE_COMPACTOR_CLEANER_MAX_RETRY_ATTEMPTS!!!3!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.setLongVar!!!TestCleaner +JOB_TIMEOUT_TASK_RETRY_COUNT!!!4!!!org.apache.hadoop.conf.Configuration.setInt!!!TestConcurrentJobRequestsThreadsAndTimeout diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive_retry_locations.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive_retry_locations.data new file mode 100644 index 00000000..11cc901d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive_retry_locations.data @@ -0,0 +1,74 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/llap/ProactiveEviction.java#L134!!!org.apache.hadoop.hive.llap.ProactiveEviction.run!!!evictEntity!!!ProactiveEviction.java:143!!!org.apache.hive.service.ServiceException +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/YarnQueueHelper.java#L120!!!org.apache.hadoop.hive.ql.exec.tez.YarnQueueHelper.checkQueueAccessInternal!!!checkQueueAccessFromSingleRm!!!YarnQueueHelper.java:131!!!java.io.IOException +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/leader/LeaseLeaderElection.java#L175!!!org.apache.hadoop.hive.metastore.leader.LeaseLeaderElection.tryBeLeader!!!lock!!!LeaseLeaderElection.java:177!!!org.apache.hadoop.hive.metastore.api.MetaException +https://github.com/apache/hive/blob/e427ce0d572c9adf6f194693a1b3ba85f246f3b7/hcatalog/server-extensions/src/main/java/org/apache/hive/hcatalog/listener/NotificationListener.java#L304!!!org.apache.hive.hcatalog.listener.NotificationListener.send!!!createProducer!!!NotificationListener.java:316!!!JMSException +https://github.com/apache/hive/tree//e427ce0//common/src/java/org/apache/hive/common/util/RetryUtilities.java#L87!!!org.apache.hive.common.util.RetryUtilities$ExponentiallyDecayingBatchWork.run!!!org.apache.hive.common.util.RetryUtilities$ExponentialBackOffRetry.execute!!!RetryUtilities.java:93!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//common/src/test/org/apache/hive/common/util/Retry.java#L59!!!org.apache.hive.common.util.Retry$RetryingStatement.evaluate!!!org.junit.runners.model.Statement.evaluate!!!Retry.java:61!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//druid-handler/src/java/org/apache/hadoop/hive/druid/DruidStorageHandlerUtils.java#L765!!!org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec!!!org.apache.hadoop.fs.FileSystem.mkdirs!!!DruidStorageHandlerUtils.java:774!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//druid-handler/src/java/org/apache/hadoop/hive/druid/DruidStorageHandlerUtils.java#L765!!!org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec!!!org.apache.hadoop.fs.FileSystem.rename!!!DruidStorageHandlerUtils.java:776!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//druid-handler/src/java/org/apache/hadoop/hive/druid/DruidStorageHandlerUtils.java#L765!!!org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec!!!org.apache.hadoop.fs.FileSystem.exists!!!DruidStorageHandlerUtils.java:777!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//hcatalog/webhcat/svr/src/main/java/org/apache/hive/hcatalog/templeton/LauncherDelegator.java#L234!!!org.apache.hive.hcatalog.templeton.LauncherDelegator.killTempletonJobWithRetry!!!org.apache.hive.hcatalog.templeton.LauncherDelegator.killJob!!!LauncherDelegator.java:237!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//jdbc/src/java/org/apache/hive/jdbc/HiveConnection.java#L379!!!org.apache.hive.jdbc.HiveConnection.HiveConnection!!!org.apache.hive.jdbc.HiveConnection.executeInitSql!!!HiveConnection.java:387!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//jdbc/src/java/org/apache/hive/jdbc/HiveConnection.java#L379!!!org.apache.hive.jdbc.HiveConnection.HiveConnection!!!org.apache.hive.jdbc.HiveConnection.openSession!!!HiveConnection.java:386!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//jdbc/src/java/org/apache/hive/jdbc/HiveConnection.java#L379!!!org.apache.hive.jdbc.HiveConnection.HiveConnection!!!org.apache.hive.jdbc.HiveConnection.openTransport!!!HiveConnection.java:382!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//kafka-handler/src/java/org/apache/hadoop/hive/kafka/RetryUtils.java#L90!!!org.apache.hadoop.hive.kafka.RetryUtils.retry!!!org.apache.hadoop.hive.kafka.RetryUtils$Task.perform!!!RetryUtils.java:93!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//llap-client/src/java/org/apache/hadoop/hive/registry/impl/ZkRegistryBase.java#L609!!!org.apache.hadoop.hive.registry.impl.ZkRegistryBase.ensureInstancesCache!!!org.apache.curator.framework.recipes.cache.PathChildrenCache.start!!!ZkRegistryBase.java:644!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//llap-common/src/java/org/apache/hadoop/hive/llap/AsyncPbRpcProxy.java#L442!!!org.apache.hadoop.hive.llap.AsyncPbRpcProxy$AsyncCallableRequest.call!!!org.apache.hadoop.hive.llap.AsyncPbRpcProxy$AsyncCallableRequest.callInternal!!!AsyncPbRpcProxy.java:444!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/repl/atlas/RetryingClientTimeBased.java#L49!!!org.apache.hadoop.hive.ql.exec.repl.atlas.RetryingClientTimeBased.invokeWithRetry!!!java.util.concurrent.Callable.call!!!RetryingClientTimeBased.java:52!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.hadoop.hive.ql.Context.checkHeartbeaterLockException!!!TezJobMonitor.java:171!!!org.apache.hadoop.hive.ql.lockmgr.LockException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/util/Retryable.java#L71!!!org.apache.hadoop.hive.ql.exec.util.Retryable.executeCallable!!!org.apache.hadoop.security.UserGroupInformation.doAs!!!Retryable.java:75!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/util/Retryable.java#L71!!!org.apache.hadoop.hive.ql.exec.util.Retryable.executeCallable!!!org.apache.hadoop.security.UserGroupInformation.getLoginUser!!!Retryable.java:75!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/util/Retryable.java#L71!!!org.apache.hadoop.hive.ql.exec.util.Retryable.executeCallable!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.reloginExpiringKeytabUser!!!Retryable.java:74!!!org.apache.hadoop.hive.metastore.api.MetaException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java#L3133!!!org.apache.hadoop.hive.ql.exec.Utilities.executeWithRetry!!!org.apache.hadoop.hive.ql.exec.Utilities$SQLCommand.run!!!Utilities.java:3144!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java#L3173!!!org.apache.hadoop.hive.ql.exec.Utilities.connectWithRetry!!!java.sql.DriverManager.getConnection!!!Utilities.java:3144!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java#L3214!!!org.apache.hadoop.hive.ql.exec.Utilities.prepareWithRetry!!!java.sql.Connection.prepareStatement!!!Utilities.java:3225!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/hooks/HiveProtoLoggingHook.java#L315!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.writeEvent!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.maybeRolloverWriterForDay!!!HiveProtoLoggingHook.java:327!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/hooks/HiveProtoLoggingHook.java#L315!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.writeEvent!!!org.apache.tez.dag.history.logging.proto.ProtoMessageWriter.writeProto!!!HiveProtoLoggingHook.java:328!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/hooks/HiveProtoLoggingHook.java#L315!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.writeEvent!!!org.apache.tez.dag.history.logging.proto.ProtoMessageWriter.hflush!!!HiveProtoLoggingHook.java:329!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/hooks/HiveProtoLoggingHook.java#L315!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.writeEvent!!!org.apache.tez.dag.history.logging.proto.DatePartitionedLogger.getWriter!!!HiveProtoLoggingHook.java:321!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DbLockManager.java#L114!!!org.apache.hadoop.hive.ql.lockmgr.DbLockManager.lock!!!org.apache.hadoop.hive.ql.lockmgr.DbTxnManager.getMS!!!DbLockManager.java:104!!!org.apache.hadoop.hive.ql.lockmgr.LockException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DbLockManager.java#L114!!!org.apache.hadoop.hive.ql.lockmgr.DbLockManager.lock!!!org.apache.hadoop.hive.metastore.IMetaStoreClient.checkLock!!!DbLockManager.java:118!!!org.apache.hadoop.hive.metastore.api.NoSuchLockException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/lockmgr/EmbeddedLockManager.java#L113!!!org.apache.hadoop.hive.ql.lockmgr.EmbeddedLockManager.lock!!!org.apache.hadoop.hive.ql.lockmgr.EmbeddedLockManager.lockPrimitive!!!EmbeddedLockManager.java:117!!!org.apache.hadoop.hive.ql.lockmgr.LockException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/lockmgr/zookeeper/ZooKeeperHiveLockManager.java#L298!!!org.apache.hadoop.hive.ql.lockmgr.zookeeper.ZooKeeperHiveLockManager.lock!!!org.apache.hadoop.hive.ql.lockmgr.zookeeper.ZooKeeperHiveLockManager.lockPrimitive!!!ZooKeeperHiveLockManager.java:306!!!org.apache.hadoop.hive.ql.lockmgr.LockException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/lockmgr/zookeeper/ZooKeeperHiveLockManager.java#L487!!!org.apache.hadoop.hive.ql.lockmgr.zookeeper.ZooKeeperHiveLockManager.unlockWithRetry!!!org.apache.hadoop.hive.ql.lockmgr.zookeeper.ZooKeeperHiveLockManager.unlockPrimitive!!!ZooKeeperHiveLockManager.java:493!!!org.apache.hadoop.hive.ql.lockmgr.LockException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/parse/repl/CopyUtils.java#L232!!!org.apache.hadoop.hive.ql.parse.repl.CopyUtils.doCopyRetry!!!org.apache.hadoop.hive.ql.parse.repl.CopyUtils.getFilesToRetry!!!CopyUtils.java:257!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//ql/src/java/org/apache/hadoop/hive/ql/parse/repl/CopyUtils.java#L232!!!org.apache.hadoop.hive.ql.parse.repl.CopyUtils.doCopyRetry!!!org.apache.hadoop.hive.ql.parse.repl.CopyUtils.doCopyOnce!!!CopyUtils.java:268!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//service/src/java/org/apache/hive/service/cli/thrift/RetryingThriftCLIServiceClient.java#L290!!!org.apache.hive.service.cli.thrift.RetryingThriftCLIServiceClient.connectWithRetry!!!org.apache.hive.service.cli.thrift.RetryingThriftCLIServiceClient.connect!!!RetryingThriftCLIServiceClient.java:292!!!org.apache.hive.service.cli.HiveSQLException +https://github.com/apache/hive/tree//e427ce0//service/src/java/org/apache/hive/service/cli/thrift/RetryingThriftCLIServiceClient.java#L382!!!org.apache.hive.service.cli.thrift.RetryingThriftCLIServiceClient.invoke!!!org.apache.hive.service.cli.thrift.RetryingThriftCLIServiceClient.connectWithRetry!!!RetryingThriftCLIServiceClient.java:391!!!org.apache.hive.service.cli.HiveSQLException +https://github.com/apache/hive/tree//e427ce0//service/src/java/org/apache/hive/service/cli/thrift/RetryingThriftCLIServiceClient.java#L382!!!org.apache.hive.service.cli.thrift.RetryingThriftCLIServiceClient.invoke!!!org.apache.hive.service.cli.thrift.RetryingThriftCLIServiceClient.invokeInternal!!!RetryingThriftCLIServiceClient.java:385!!!org.apache.hive.service.cli.HiveSQLException +https://github.com/apache/hive/tree//e427ce0//service/src/java/org/apache/hive/service/server/HiveServer2.java#L1089!!!org.apache.hive.service.server.HiveServer2.startHiveServer2!!!org.apache.hive.service.server.HiveServer2.init!!!HiveServer2.java:1112!!!org.apache.hive.service.ServiceException +https://github.com/apache/hive/tree//e427ce0//service/src/java/org/apache/hive/service/server/HiveServer2.java#L1089!!!org.apache.hive.service.server.HiveServer2.startHiveServer2!!!org.apache.hive.service.server.HiveServer2.start!!!HiveServer2.java:1113!!!org.apache.hive.service.ServiceException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.createHttpClient!!!HiveMetaStoreClient.java:798!!!org.apache.thrift.transport.TTransportException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.createBinaryClient!!!HiveMetaStoreClient.java:800!!!org.apache.thrift.transport.TTransportException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.thrift.transport.TTransport.open!!!HiveMetaStoreClient.java:816!!!org.apache.thrift.transport.TTransportException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.getUGI!!!HiveMetaStoreClient.java:848!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.hadoop.hive.metastore.api.ThriftHiveMetastore$Iface.set_ugi!!!HiveMetaStoreClient.java:849!!!org.apache.thrift.TException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/RetryingMetaStoreClient.java#L178!!!org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.invoke!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.reloginExpiringKeytabUser!!!RetryingMetaStoreClient.java:175!!!org.apache.hadoop.hive.metastore.api.MetaException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/RetryingMetaStoreClient.java#L178!!!org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.invoke!!!org.apache.hadoop.security.UserGroupInformation.doAs!!!RetryingMetaStoreClient.java:184!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/target/generated-sources/org/apache/hadoop/hive/metastore/grpc/HiveMetastore.java#L323587!!!org.apache.hadoop.hive.metastore.grpc.HiveMetastore$CompactionInfoStruct.CompactionInfoStruct!!!com.google.protobuf.CodedInputStream.readBool!!!N/A!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/target/generated-sources/org/apache/hadoop/hive/metastore/grpc/HiveMetastore.java#L323587!!!org.apache.hadoop.hive.metastore.grpc.HiveMetastore$CompactionInfoStruct.CompactionInfoStruct!!!com.google.protobuf.CodedInputStream.readEnum!!!N/A!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/target/generated-sources/org/apache/hadoop/hive/metastore/grpc/HiveMetastore.java#L323587!!!org.apache.hadoop.hive.metastore.grpc.HiveMetastore$CompactionInfoStruct.CompactionInfoStruct!!!com.google.protobuf.CodedInputStream.readInt64!!!N/A!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/target/generated-sources/org/apache/hadoop/hive/metastore/grpc/HiveMetastore.java#L323587!!!org.apache.hadoop.hive.metastore.grpc.HiveMetastore$CompactionInfoStruct.CompactionInfoStruct!!!com.google.protobuf.CodedInputStream.readStringRequireUtf8!!!N/A!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/target/generated-sources/org/apache/hadoop/hive/metastore/grpc/HiveMetastore.java#L323587!!!org.apache.hadoop.hive.metastore.grpc.HiveMetastore$CompactionInfoStruct.CompactionInfoStruct!!!com.google.protobuf.CodedInputStream.readTag!!!N/A!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-common/target/generated-sources/org/apache/hadoop/hive/metastore/grpc/HiveMetastore.java#L323587!!!org.apache.hadoop.hive.metastore.grpc.HiveMetastore$CompactionInfoStruct.CompactionInfoStruct!!!com.google.protobuf.GeneratedMessageV3.parseUnknownField!!!N/A!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java#L11654!!!org.apache.hadoop.hive.metastore.ObjectStore$RetryingExecutor.run!!!org.apache.hadoop.hive.metastore.ObjectStore$RetryingExecutor$Command.process!!!ObjectStore.java:11999!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/RetryingHMSHandler.java#L138!!!org.apache.hadoop.hive.metastore.RetryingHMSHandler.invokeInternal!!!org.apache.hadoop.hive.metastore.MetaStoreInit.updateConnectionURL!!!RetryingHMSHandler.java:172!!!org.apache.hadoop.hive.metastore.api.MetaException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/RetryingHMSHandler.java#L138!!!org.apache.hadoop.hive.metastore.RetryingHMSHandler.invokeInternal!!!org.apache.hadoop.hive.metastore.Deadline.startTimer!!!RetryingHMSHandler.java:89!!!org.apache.hadoop.hive.metastore.api.MetaException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/CompactionTxnHandler.java#L414!!!org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean!!!java.sql.ResultSet.getInt!!!N/A!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/CompactionTxnHandler.java#L414!!!org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean!!!java.sql.ResultSet.getLong!!!N/A!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/CompactionTxnHandler.java#L414!!!org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean!!!java.sql.ResultSet.getString!!!N/A!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/CompactionTxnHandler.java#L414!!!org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean!!!java.sql.ResultSet.next!!!N/A!!!java.sql.SQLException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/txn/CompactionTxnHandler.java#L414!!!org.apache.hadoop.hive.metastore.txn.CompactionTxnHandler.findReadyToClean!!!org.apache.hadoop.hive.metastore.txn.TxnUtils.dbCompactionType2ThriftType!!!N/A!!!org.apache.hadoop.hive.metastore.api.MetaException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/utils/MetaStoreServerUtils.java#L847!!!org.apache.hadoop.hive.metastore.utils.MetaStoreServerUtils.loopUntilHMSReady!!!java.net.Socket.close!!!MetaStoreServerUtils.java:917!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/utils/MetaStoreServerUtils.java#L847!!!org.apache.hadoop.hive.metastore.utils.MetaStoreServerUtils.loopUntilHMSReady!!!java.net.Socket.connect!!!MetaStoreServerUtils.java:916!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/utils/RetryUtilities.java#L85!!!org.apache.hadoop.hive.metastore.utils.RetryUtilities$ExponentiallyDecayingBatchWork.run!!!org.apache.hadoop.hive.metastore.utils.RetryUtilities$ExponentialBackOffRetry.execute!!!RetryUtilities.java:91!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.api.ThriftHiveMetastore$Iface.set_ugi!!!HiveMetaStoreClientPreCatalog.java:560!!!org.apache.thrift.TException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.conf.MetastoreConf.getPassword!!!HiveMetaStoreClientPreCatalog.java:462!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.security.HadoopThriftAuthBridge$Client.createClientTransport!!!HiveMetaStoreClientPreCatalog.java:507!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.security.HadoopThriftAuthBridge$Client.createClientTransport!!!HiveMetaStoreClientPreCatalog.java:514!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.getSSLSocket!!!HiveMetaStoreClientPreCatalog.java:470!!!org.apache.thrift.transport.TTransportException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.getTokenStrForm!!!HiveMetaStoreClientPreCatalog.java:502!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.getUGI!!!HiveMetaStoreClientPreCatalog.java:559!!!java.io.IOException +https://github.com/apache/hive/tree//e427ce0//standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java#L447!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open!!!org.apache.thrift.transport.TTransport.open!!!HiveMetaStoreClientPreCatalog.java:542!!!org.apache.thrift.transport.TTransportException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive_timeout_bounds.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive_timeout_bounds.data new file mode 100644 index 00000000..34df60d1 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/hive_timeout_bounds.data @@ -0,0 +1,424 @@ +TestAbortedTxnCleaner.testAbortedCleaningWithThreeTxnsWithDiffWriteIds +TestAbortedTxnCleaner.testCleaningOfAbortedDirectoriesBelowBase +TestAbortedTxnCleaner.testCleaningOfAbortedDirectoriesForMultiplePartitions +TestAbortedTxnCleaner.testCleaningOfAbortedDirectoriesForSinglePartition +TestAbortedTxnCleaner.testCleaningOfAbortedDirectoriesForUnpartitionedTables +TestAbortedTxnCleaner.testCleaningOfAbortedDirectoriesOnTopOfBase +TestAbortedTxnCleaner.testCleaningOfAbortedDirectoriesWithLongRunningOpenWriteTxn +TestCliDriverMethods.testprocessInitFiles +TestCliDriverMethods.testProcessSelectDatabase +TestCliDriverMethods.testRun +TestCLIServiceConnectionLimits.testConnectionForwardedIpAddresses +TestCLIServiceConnectionLimits.testConnectionLimitPerIpAddress +TestCLIServiceConnectionLimits.testConnectionLimitPerUser +TestCLIServiceConnectionLimits.testConnectionLimitPerUserIpAddress +TestCLIServiceConnectionLimits.testConnectionMultipleLimitsIPAndUserIP +TestCLIServiceConnectionLimits.testConnectionMultipleLimitsUserAndIP +TestCLIServiceConnectionLimits.testConnectionMultipleLimitsUserIPAndUser +TestCLIServiceConnectionLimits.testIncrementAndDecrementConnectionsUser +TestCLIServiceConnectionLimits.testInvalidIpaddress +TestCLIServiceConnectionLimits.testInvalidUserIpaddress +TestCLIServiceConnectionLimits.testInvalidUserName +TestCLIServiceConnectionLimits.testNoLimit +TestCLIServiceRestore.testRestore +TestColumnAccess.testJoinTable1AndTable2 +TestColumnAccess.testJoinView1AndTable2 +TestColumnAccess.testQueryTable1 +TestColumnAccess.testShowPartitions +TestCommands.testBasicReplEximCommands +TestCommands.testBeelineCommands +TestCommands.testDropDatabaseCommand +TestCommands.testMetadataReplEximCommands +TestCommands.testNoopReplEximCommands +TestCommandWithSpace.testCommandWithPrefixSpace +TestCompactionMetrics.testInitiatorPerfMetricsEnabled +TestCompactionMetrics.testOldestReadyForCleaningAge +TestCompactionMetrics.testWorkerPerfMetrics +TestDbTxnManager.testDDLExclusive +TestDbTxnManager.testDDLNoLock +TestDbTxnManager.testDDLShared +TestDbTxnManager.testDelete +TestDbTxnManager.testExceptions +TestDbTxnManager.testHeartbeater +TestDbTxnManager.testHeartbeaterReplicationTxn +TestDbTxnManager.testJoin +TestDbTxnManager.testLockAcquisitionAndRelease +TestDbTxnManager.testReadWrite +TestDbTxnManager.testRollback +TestDbTxnManager.testSingleReadMultiPartition +TestDbTxnManager.testSingleReadPartition +TestDbTxnManager.testSingleReadTable +TestDbTxnManager.testSingleWritePartition +TestDbTxnManager.testSingleWriteTable +TestDbTxnManager.testUpdate +TestDbTxnManager.testWriteDynamicPartition +TestDbTxnManager2.testMergePartitioned +TestDbTxnManagerIsolationProperties.testRebuildMVWhenOpenTxnPresents +TestDeltaFilesMetricFlags.testDeltaFilesMetricFromCleanerWithAcidMetricsThreadDisabled +TestDeltaFilesMetricFlags.testDeltaFilesMetricFromCleanerWithMetricsDisabled +TestDeltaFilesMetricFlags.testDeltaFilesMetricFromInitiatorWithAcidMetricsThreadDisabled +TestDeltaFilesMetricFlags.testDeltaFilesMetricFromInitiatorWithMetricsDisabled +TestDeltaFilesMetricFlags.testDeltaFilesMetricFromWorkerWithAcidMetricsThreadDisabled +TestDeltaFilesMetricFlags.testDeltaFilesMetricFromWorkerWithMetricsDisabled +TestDeltaFilesMetrics.testDeltaFileMetricMultiPartitionedTable +TestDeltaFilesMetrics.testDeltaFileMetricPartitionedTable +TestDeltaFilesMetrics.testDeltaFileMetricUnpartitionedTable +TestDMLSemanticAnalyzer.testDeleteAllNonPartitioned +TestDMLSemanticAnalyzer.testDeleteAllPartitioned +TestDMLSemanticAnalyzer.testDeleteAllWherePartitioned +TestDMLSemanticAnalyzer.testDeleteOnePartition +TestDMLSemanticAnalyzer.testDeleteOnePartitionWhere +TestDMLSemanticAnalyzer.testDeleteWhereNoPartition +TestDMLSemanticAnalyzer.testInsertSelect +TestDMLSemanticAnalyzer.testInsertValues +TestDMLSemanticAnalyzer.testInsertValuesPartitioned +TestDMLSemanticAnalyzer.testUpdateAllNonPartitioned +TestDMLSemanticAnalyzer.testUpdateAllNonPartitionedWhere +TestDMLSemanticAnalyzer.testUpdateAllPartitioned +TestDMLSemanticAnalyzer.testUpdateAllPartitionedWhere +TestDMLSemanticAnalyzer.testUpdateOnePartition +TestDMLSemanticAnalyzer.testUpdateOnePartitionWhere +TestDruidStorageHandler.testCommitCreateTablePlusCommitDropTableWithoutPurge +TestDruidStorageHandler.testCommitCreateTablePlusCommitDropTableWithPurge +TestDruidStorageHandler.testCommitInsertIntoTable +TestDruidStorageHandler.testCommitInsertIntoWhenDestinationSegmentFileExist +TestDruidStorageHandler.testCommitInsertIntoWithConflictingIntervalSegment +TestDruidStorageHandler.testCommitInsertIntoWithNonExtendableSegment +TestDruidStorageHandler.testCommitInsertOverwriteTable +TestDruidStorageHandler.testCommitInsertTable +TestDruidStorageHandler.testCommitMultiInsertOverwriteTable +TestDruidStorageHandler.testInsertIntoAppendOneMorePartition +TestDummyTxnManager.testSingleReadTable +TestE2EScenarios.testReadOrcAndRCFromPig +TestEmbeddedLockManager.testLocking +TestExecDriver.testMapPlan1 +TestExecDriver.testMapPlan2 +TestExecDriver.testMapRedPlan1 +TestExecDriver.testMapRedPlan2 +TestExecDriver.testMapRedPlan3 +TestExecDriver.testMapRedPlan4 +TestExecDriver.testMapRedPlan5 +TestExecDriver.testMapRedPlan6 +TestExprProcessorGetFuncExpr.testLookupFunctionOnDemand +TestFileSinkOperator.testDeleteDynamicPartitioning +TestFileSinkOperator.testInsertDynamicPartitioning +TestFileSinkOperator.testNonAcidDynamicPartitioning +TestFileSinkOperator.testNonAcidRemoveDuplicate +TestFileSinkOperator.testNonAcidWrite +TestFileSinkOperator.testUpdateDynamicPartitioning +TestFilterHooks.testHMSClientWithFilter +TestFilterHooks.testHMSClientWithoutFilter +TestFilterHooks.testHMSServerWithFilter +TestFilterHooks.testHMSServerWithoutFilter +TestGenericUDTFGetSQLSchema.testWithComplexTypes +TestGenericUDTFGetSQLSchema.testWithDDL +TestGenericUDTFGetSQLSchema.testWithSimpleTypes +TestGetInputSummary.testGetInputSummaryWithInputEstimator +TestGetPartitionAuthWithBatches.testSmallNumberOfPartitions +TestGetPartitionInBatches.testGetAllPartitionsOf +TestHBaseQueries.testRollbackDoesNotDeleteOriginTableWhenCTLTFails +TestHCatClient.testBasicDDLCommands +TestHCatClient.testCreateTableLike +TestHCatClient.testDatabaseLocation +TestHCatClient.testDropPartitionsWithPartialSpec +TestHCatClient.testDropTableException +TestHCatClient.testEmptyTableInstantiation +TestHCatClient.testGetMessageBusTopicName +TestHCatClient.testGetPartitionsWithPartialSpec +TestHCatClient.testObjectNotFoundException +TestHCatClient.testOtherFailure +TestHCatClient.testPartitionRegistrationWithCustomSchema +TestHCatClient.testPartitionSchema +TestHCatClient.testPartitionsHCatClientImpl +TestHCatClient.testPartitionSpecRegistrationWithCustomSchema +TestHCatClient.testRenameTable +TestHCatClient.testReplicationTaskIter +TestHCatClient.testTableSchemaPropagation +TestHCatClient.testTransportFailure +TestHCatClient.testUpdateTableSchema +TestHCatDynamicPartitioned.testHCatDynamicPartitionedTable +TestHCatDynamicPartitioned.testHCatDynamicPartitionedTableMultipleTask +TestHCatExternalDynamicPartitioned.testHCatExternalDynamicCustomLocation +TestHCatInputFormat.testBadRecordHandlingPasses +TestHCatInputFormatMethods.testGetPartitionAndDataColumns +TestHCatLoaderComplexSchema.testMapNullKey +TestHCatLoaderComplexSchema.testMapWithComplexData +TestHCatLoaderComplexSchema.testSyntheticComplexSchema +TestHCatLoaderComplexSchema.testTupleInBagInTupleInBag +TestHCatLoaderEncryption.testReadDataFromEncryptedHiveTableByPig +TestHCatLoaderStorer.testReadWrite +TestHCatLoaderStorer.testSmallTinyInt +TestHCatMultiOutputFormat.testOutputFormat +TestHCatNonPartitioned.testHCatNonPartitionedTable +TestHCatOutputFormat.testGetTableSchema +TestHCatOutputFormat.testSetOutput +TestHCatPartitioned.testHCatPartitionedTable +TestHCatPartitionPublish.testPartitionPublish +TestHCatStorerMulti.testStorePartitionedTable +TestHCatStorerWrapper.testStoreExternalTableWithExternalDir +TestHive.testAutoPurgeTablesAndPartitions +TestHive.testDropMissingPartitionsByFilter +TestHive.testDropPartitionsWithPurge +TestHive.testDropTableTrash +TestHive.testGetAndDropTables +TestHive.testGetPartitionsWithMaxLimit +TestHive.testHiveCloseCurrent +TestHive.testHiveRefreshOnConfChange +TestHive.testMetaStoreApiTiming +TestHive.testPartition +TestHive.testTable +TestHive.testThriftTable +TestHive.testWmNamespaceHandling +TestHiveAuthorizationTaskFactory.testGrantGroupTable +TestHiveAuthorizationTaskFactory.testGrantRoleGroup +TestHiveAuthorizationTaskFactory.testGrantRoleRole +TestHiveAuthorizationTaskFactory.testGrantRoleTable +TestHiveAuthorizationTaskFactory.testGrantRoleUser +TestHiveAuthorizationTaskFactory.testGrantServer +TestHiveAuthorizationTaskFactory.testGrantUri +TestHiveAuthorizationTaskFactory.testGrantUserTable +TestHiveAuthorizationTaskFactory.testRevokeGroupTable +TestHiveAuthorizationTaskFactory.testRevokeRoleGroup +TestHiveAuthorizationTaskFactory.testRevokeRoleRole +TestHiveAuthorizationTaskFactory.testRevokeRoleTable +TestHiveAuthorizationTaskFactory.testRevokeRoleUser +TestHiveAuthorizationTaskFactory.testRevokeUserTable +TestHiveCli.testCmd +TestHiveCli.testCommentStripping +TestHiveCli.testDatabaseOptions +TestHiveCli.testErrOutput +TestHiveCli.testInValidCmd +TestHiveCli.testInvalidDatabaseOptions +TestHiveCli.testNoErrorDB +TestHiveCli.testSetHeaderValue +TestHiveCli.testSetPromptValue +TestHiveCli.testSourceCmd +TestHiveCli.testSourceCmd3 +TestHiveCli.testSourceCmd4 +TestHiveCli.testSqlFromCmd +TestHiveCli.testSqlFromCmdWithComments1 +TestHiveCli.testSqlFromCmdWithComments2 +TestHiveCli.testSqlFromCmdWithComments3 +TestHiveCli.testSqlFromCmdWithDBName +TestHiveCli.testSqlFromCmdWithEmbeddedQuotes +TestHiveCli.testUseCurrentDB1 +TestHiveCli.testUseCurrentDB2 +TestHiveCli.testUseCurrentDB3 +TestHiveCli.testUseInvalidDB +TestHiveCli.testVariables +TestHiveCli.testVariablesForSource +TestHiveClientCache.testCacheExpiry +TestHiveClientCache.testCacheHit +TestHiveClientCache.testCacheMiss +TestHiveClientCache.testCloseAllClients +TestHiveClientCache.testMultipleThreadAccess +TestHiveDecimalParse.testDecimalType +TestHiveDecimalParse.testDecimalType1 +TestHiveDecimalParse.testDecimalType2 +TestHiveDecimalParse.testDecimalType3 +TestHiveDecimalParse.testDecimalType4 +TestHiveDecimalParse.testDecimalType5 +TestHiveDecimalParse.testDecimalType6 +TestHiveDecimalParse.testDecimalType7 +TestHiveDecimalParse.testDecimalType8 +TestHiveDecimalParse.testDecimalType9 +TestHiveFunctionHelper.testGetUDTFFunction +TestHiveFunctionHelper.testGetUDTFFunctionThrowingException +TestHiveMetaStoreChecker.testSingleThreadedDeeplyNestedTables +TestHiveMetaStoreClientApiArgumentsChecker.testGetPartitionNames2 +TestHiveMetaStoreClientApiArgumentsChecker.testGetPartitions +TestHiveMetaStoreGetMetaConf.testGetMetaConfDefault +TestHiveMetaStoreTxns.testAllocateTableWriteIdForReadOnlyTxn +TestHiveMetaStoreTxns.testGetLatestCommittedCompactionInfo +TestHiveMetaStoreTxns.testGetValidWriteIds +TestHiveMetaStoreTxns.testLocks +TestHiveMetaStoreTxns.testLocksWithTxn +TestHiveMetaStoreTxns.testOpenReadOnlyTxnExcluded +TestHiveMetaStoreTxns.testOpenTxnNotExcluded +TestHiveMetaStoreTxns.testOpenTxnWithType +TestHiveMetaStoreTxns.testTxns +TestHiveMetaStoreTxns.testTxnTypePersisted +TestHiveMetaStoreTxns.testTxNWithKeyValue +TestHiveMetaStoreTxns.testTxNWithKeyValueNoTableId +TestHiveMetaStoreTxns.testTxNWithKeyWrongPrefix +TestHiveMetaStoreWithEnvironmentContext.testEnvironmentContext +TestHivePrivilegeObjectOwnerNameAndType.testActionTypeForPartitionedTable +TestHivePrivilegeObjectOwnerNameAndType.testOwnerNames +TestHivePrivilegeObjectOwnerNameAndType.testOwnerType +TestHivePrivilegeObjectOwnerNameAndType.testSingleInstanceOfHPOForPartitionedTable +TestHiveProtoLoggingHook.testFailureEventLog +TestHiveProtoLoggingHook.testNonPartionedTable +TestHiveProtoLoggingHook.testPartitionedTable +TestHiveProtoLoggingHook.testPostEventLog +TestHiveProtoLoggingHook.testPreAndPostEventBoth +TestHiveProtoLoggingHook.testPreEventLog +TestHiveProtoLoggingHook.testQueueLogs +TestHiveProtoLoggingHook.testRolloverFiles +TestHiveStrictManagedMigration.testUpgrade +TestHMSFetchPartitionsWithoutCols.testPartitionsWithoutCols +TestHmsServerAuthorization.testGetFields +TestHooks.testQueryRedactor +TestHS2HttpServer.testApiServletActiveSessions +TestHS2HttpServer.testApiServletHistoricalQueries +TestHS2HttpServerPamConfiguration.testPamCorrectConfiguration +TestHS2HttpServerPamConfiguration.testPamServicesAreNotConfigured +TestHS2HttpServerPamConfiguration.testSslIsFalse +TestInitiator.testFindUserToRunAs +TestInitiator.testInitiatorFailure +TestInitiator.testInitiatorHostAndVersion +TestInitiator.testMetaCache +TestListPartitions.testListPartitionSpecsByFilterInvalidFilter +TestListPartitionsWithXIncludeParams.testListPartitionsByExr +TestLlapZookeeperRegistryImpl.testRegister +TestLlapZookeeperRegistryImpl.testUpdate +TestMacroSemanticAnalyzer.testDropMacro +TestMacroSemanticAnalyzer.testDropMacroDoesNotExist +TestMacroSemanticAnalyzer.testDropMacroExistsDoNotIgnoreErrors +TestMacroSemanticAnalyzer.testDropMacroNonExistent +TestMacroSemanticAnalyzer.testDropMacroNonExistentWithIfExists +TestMacroSemanticAnalyzer.testDropMacroNonExistentWithIfExistsDoNotIgnoreNonExistent +TestMacroSemanticAnalyzer.testOneInputParamters +TestMacroSemanticAnalyzer.testOneUnusedParameterName +TestMacroSemanticAnalyzer.testThreeDuplicateParameters +TestMacroSemanticAnalyzer.testThreeInputParamters +TestMacroSemanticAnalyzer.testTwoDuplicateParameterNames +TestMacroSemanticAnalyzer.testTwoInputParamters +TestMacroSemanticAnalyzer.testTwoUnusedParameterNames +TestMacroSemanticAnalyzer.testUnknownInputParameter +TestMacroSemanticAnalyzer.testZeroInputParamters +TestMetaStoreAcidCleanup.testDropDatabaseShouldRollback_whenAcidCleanupFails +TestMetaStoreAcidCleanup.testDropTableShouldRollback_whenAcidCleanupFails +TestMetaStoreEndFunctionListener.testEndFunctionListener +TestMetaStoreEventListener.testListener +TestMetaStoreEventListener.testMetaConfDuplicateNotification +TestMetaStoreEventListener.testMetaConfNotifyListenersClosingClient +TestMetaStoreEventListener.testMetaConfNotifyListenersNonClosingClient +TestMetaStoreEventListener.testMetaConfSameHandler +TestMetaStoreEventListenerOnlyOnCommit.testEventStatus +TestMetaStoreEventListenerWithOldConf.testMetaConfDuplicateNotification +TestMetaStoreEventListenerWithOldConf.testMetaConfNotifyListenersClosingClient +TestMetaStoreEventListenerWithOldConf.testMetaConfNotifyListenersNonClosingClient +TestMetaStoreEventListenerWithOldConf.testMetaConfSameHandler +TestMetastoreExpr.testPartitionExpr +TestMetaStoreListenersError.testEventListenerException +TestMetaStoreListenersError.testInitListenerException +TestMetastoreScheduledQueries.testCreate +TestMetastoreScheduledQueries.testCreateWithInvalidSchedule +TestMetastoreScheduledQueries.testDeleteNonExistent +TestMetastoreScheduledQueries.testDisable1 +TestMetastoreScheduledQueries.testDisable2 +TestMetastoreScheduledQueries.testDuplicateCreate +TestMetastoreScheduledQueries.testExclusivePoll +TestMetastoreScheduledQueries.testNonExistent +TestMetastoreScheduledQueries.testNormalDelete +TestMetastoreScheduledQueries.testNormalDeleteWithExec +TestMetastoreScheduledQueries.testPoll +TestMetastoreScheduledQueries.testSkip2 +TestMetastoreScheduledQueries.testUpdate +TestMsckCreatePartitionsInBatches.testSmallNumberOfPartitions +TestMsckDropPartitionsInBatches.testSmallNumberOfPartitions +TestMSCKRepairOnAcid.testAddPartitionMinorCompacted +TestObjectStore.testMaxEventResponse +TestObjectStore.testNotificationOps +TestOperationLogManager.testGetOperationLog +TestOperationLogManager.testOperationLogManager +TestOperators.testFetchOperatorContext +TestOperators.testLlapMemoryOversubscriptionMaxExecutorsPerQueryCalculation +TestPartitionManagement.testNoPartitionDiscoveryForReplTable +TestPartitionManagement.testNoPartitionRetentionForReplTarget +TestPartitionManagement.testPartitionDiscoveryDBPattern +TestPartitionManagement.testPartitionDiscoveryDisabledByDefault +TestPartitionManagement.testPartitionDiscoveryEnabledBothTableTypes +TestPartitionManagement.testPartitionDiscoveryNonDefaultCatalog +TestPartitionManagement.testPartitionDiscoverySkipInvalidPath +TestPartitionManagement.testPartitionDiscoveryTablePattern +TestPartitionManagement.testPartitionDiscoveryTransactionalTable +TestPartitionManagement.testPartitionExprFilter +TestPartitionManagement.testPartitionRetention +TestPartitionNameWhitelistValidation.testAddPartitionWithCommas +TestPartitionNameWhitelistValidation.testAddPartitionWithUnicode +TestPartitionNameWhitelistValidation.testAddPartitionWithValidPartVal +TestPartitionNameWhitelistValidation.testAppendPartitionWithCommas +TestPartitionNameWhitelistValidation.testAppendPartitionWithUnicode +TestPartitionNameWhitelistValidation.testAppendPartitionWithValidCharacters +TestPassProperties.testSequenceTableWriteReadMR +TestPermsGrp.testCustomPerms +TestPlainSaslHelper.testDoAsSetting +TestPluggableHiveSessionImpl.testSessionImpl +TestPluggableHiveSessionImpl.testSessionImplWithUGI +TestPrivilegesV1.testPrivInGrant +TestPrivilegesV1.testPrivInGrantNotAccepted +TestPrivilegesV2.testPrivInGrant +TestHCatMultiOutputFormat.testOutputFormat +TestQBCompact.testBogusLevel +TestQBCompact.testMajor +TestQBCompact.testMinor +TestQBCompact.testNonPartitionedTable +TestQueryHooks.testAllQueryLifeTimeHooks +TestQueryHooks.testAllQueryLifeTimeWithParseHooks +TestQueryHooks.testQueryLifeTimeWithCompileError +TestQueryHooks.testQueryLifeTimeWithParseHooksWithCompileError +TestQueryHooks.testQueryLifeTimeWithParseHooksWithParseError +TestQueryLifeTimeHooksWithSQLOperation.testQueryInfoInHookContext +TestReadEntityDirect.testSelectEntityDirect +TestReadEntityDirect.testSelectEntityInDirect +TestReadEntityDirect.testSelectEntityInDirectJoinAlias +TestReadEntityDirect.testSelectEntityViewDirectJoin +TestReadEntityDirect.testSelectEntityViewDirectUnion +TestReaderWriter.test +TestRemoteHiveMetastoreWithHttpJwt.testExpiredJWT +TestRemoteHiveMetastoreWithHttpJwt.testInvalidJWT +TestRemoteHiveMetastoreWithHttpJwt.testValidJWT +TestReplicationMetrics.testAddMetrics +TestReplicationMetrics.testDeleteMetrics +TestReplicationMetrics.testGetMetricsByScheduleId +TestReplicationMetrics.testUpdateMetrics +TestReplicationMetricUpdateOnFailure.testReplLoadFailure +TestReplicationMetricUpdateOnFailure.testReplLoadNonRecoverableMissingStage +TestReplicationMetricUpdateOnFailure.testReplLoadRecoverableMissingStage +TestReplicationTask.testCreate +TestRetryable.testRetrySuccessSecureCallable +TestRetryingThriftCLIServiceClient.testRetryBehaviour +TestRetryingThriftCLIServiceClient.testSessionLifeAfterTransportClose +TestRetryingThriftCLIServiceClient.testTransportClose +TestRuntimeStats.testCleanup +TestRuntimeStats.testReading +TestRuntimeStats.testRuntimeStatHandling +TestSemanticAnalysis.testStoredAs +TestSemanticAnalyzerFactory.testCreate +TestSemanticAnalyzerFactory.testDrop +TestSessionCleanup.testTempSessionFileCleanup +TestSessionGlobalInitFile.testSessionGlobalInitFile +TestSessionHiveMetastoreClientAddPartitionsTempTable.testAddPartitionsNullLocationInTableToo +TestSessionHiveMetastoreClientAlterPartitionsTempTable.testAlterPartitionsCheckRollbackNullPartition +TestSessionHiveMetastoreClientExchangePartitionsTempTable.testExchangePartitionsNonExistingPartLocation +TestSessionHiveMetastoreClientListPartitionsTempTable.testListPartitionsSpecByExprNullResult +TestSessionHooks.testProxyUser +TestSessionHooks.testSessionHook +TestSessionManagerMetrics.testAbandonedSessionMetrics +TestSessionManagerMetrics.testActiveSessionTimeMetrics +TestSessionManagerMetrics.testOpenSessionMetrics +TestSessionManagerMetrics.testOpenSessionTimeMetrics +TestSessionManagerMetrics.testThreadPoolMetrics +TestShowPartitionAnalyzer.testGetShowPartitionsFilter +TestStatsUpdaterThread.testPartitionsWithDifferentColsAll +TestStreamingDynamicPartitioning.testWriteBeforeBegin +TestSymlinkTextInputFormat.testCombine +TestTempAcidTable.testTempFullAcidTableTranslate +TestTempAcidTable.testTempInsertOnlyTableTranslate +TestTezTask.testBuildDag +TestTezTask.testEmptyWork +TestTxnCommands.testMergeUpdateDelete +TestTxnCommands3.testSdpoBucketed +TestTxnCommandsForMmTable.testInsertOverwriteForMmTable +TestTxnConcatenate.testConcatenate +TestTxnExIm.testMMFlatSource +TestTxnNoBuckets.testInsertFromUnion +TestUpgradeTool.testPostUpgrade +TestUseDatabase.testAlterTablePass +TestViewEntity.testSubQueryInSubView +TestViewEntity.testUnionAllInSubView +TestViewEntity.testUnionView +TestViewEntity.testViewInSubQuery +TestViewEntity.testViewInSubQueryWithWhereClauseCbo +TestViewEntity.testViewInSubQueryWithWhereClauseRbo diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/pom-hive-standalone-metastore.xml b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/pom-hive-standalone-metastore.xml new file mode 100644 index 00000000..d6c23715 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/pom-hive-standalone-metastore.xml @@ -0,0 +1,719 @@ + + + + 4.0.0 + + org.apache + apache + 23 + + org.apache.hive + hive-standalone-metastore + 4.0.0-beta-2-SNAPSHOT + pom + Hive Standalone Metastore + + metastore-common + metastore-server + metastore-tools + + + 4.0.0-beta-2-SNAPSHOT + 4.0.0-beta-2 + . + + UTF-8 + UTF-8 + 1.8 + 1.8 + false + ${settings.localRepository} + 3.1.0 + ${basedir}/${standalone.metastore.path.to.root}/checkstyle + + ${project.basedir}/src/test/resources + ${project.build.directory}/tmp + ${project.build.directory}/warehouse + ${project.build.directory}/external + file:// + 1 + true + org.apache.hadoop.hive.metastore.annotation.MetastoreUnitTest + + 1.0b3 + 2.17 + 2.16.0 + 3.0.0-M4 + + 4.9.3 + 1.5.7 + 3.12.0 + 1.1.3 + 2.9.0 + 1.1.0-incubating + 5.2.8 + 5.2.10 + 3.2.0-release + 5.2.10 + 10.14.2.0 + 2.5.0 + 6.2.1.jre8 + 8.0.31 + 42.5.1 + 21.3.0.0 + 0.1.2 + + 3.1.0 + 22.0 + 3.3.6 + 4.0.3 + 2.13.5 + 3.3 + 5.5.1 + 4.13.2 + 5.6.2 + 5.6.3 + 0.9.3 + 0.16.0 + 2.18.0 + 3.3.3 + 1.8.5 + 3.21.7 + 1.51.0 + 1.9.0 + 2.14.6 + 4.0.4 + 4.0.0-beta-2-SNAPSHOT + 1.9.4 + 1.3 + 5.2.0 + 3.7.2 + 9.1.6 + 4.0.3 + 2.8.4 + 1.7.30 + 4.4.13 + 4.5.13 + 4.5.5 + 9.31 + 9.4.40.v20210413 + 1.3.2 + 5.2.24.RELEASE + + you-must-set-this-to-run-thrift + ${basedir}/src/gen/thrift + -I ${thrift.home} -strict --gen java:beans,generated_annotations=undated --gen cpp --gen php --gen py --gen rb + + + + 1.9.8.M1 + 1.13 + 1.0.0 + + + + + + org.apache.orc + orc-core + ${orc.version} + + + com.fasterxml.jackson + jackson-bom + ${jackson.version} + pom + import + + + com.github.joshelser + dropwizard-metrics-hadoop-metrics2-reporter + ${dropwizard-metrics-hadoop-metrics2-reporter.version} + + + com.google.guava + guava + ${guava.version} + + + com.google.protobuf + protobuf-java + ${protobuf.version} + + + com.zaxxer + HikariCP + ${hikaricp.version} + + + io.dropwizard.metrics + metrics-core + ${dropwizard.version} + + + io.dropwizard.metrics + metrics-jvm + ${dropwizard.version} + + + io.dropwizard.metrics + metrics-json + ${dropwizard.version} + + + javolution + javolution + ${javolution.version} + + + org.antlr + antlr4-runtime + ${antlr.version} + + + org.antlr + ST4 + ${ST4.version} + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + org.apache.datasketches + datasketches-hive + ${datasketches.version} + + + org.slf4j + slf4j-simple + + + + + org.apache.hadoop + hadoop-common + ${hadoop.version} + + + org.apache.zookeeper + zookeeper + + + org.apache.curator + curator-test + + + org.apache.curator + curator-client + + + org.apache.curator + curator-framework + + + org.apache.curator + curator-recipes + + + org.eclipse.jetty + * + + + + + org.apache.hadoop + hadoop-distcp + ${hadoop.version} + provided + + + org.apache.hadoop + hadoop-hdfs + ${hadoop.version} + + + org.eclipse.jetty + * + + + + + org.apache.hadoop + hadoop-hdfs-client + ${hadoop.version} + + + org.apache.hadoop + hadoop-mapreduce-client-core + ${hadoop.version} + + + org.jline + jline + + + io.netty + netty + + + + + org.apache.hive + hive-storage-api + ${storage-api.version} + + + org.apache.commons + commons-dbcp2 + ${commons-dbcp2.version} + + + org.apache.logging.log4j + log4j-slf4j-impl + ${log4j2.version} + + + org.apache.logging.log4j + log4j-1.2-api + ${log4j2.version} + + + org.apache.thrift + libfb303 + ${libfb303.version} + + + org.apache.thrift + libthrift + ${libthrift.version} + + + org.datanucleus + datanucleus-api-jdo + ${datanucleus-api-jdo.version} + + + org.datanucleus + datanucleus-core + ${datanucleus-core.version} + + + org.datanucleus + datanucleus-rdbms + ${datanucleus-rdbms.version} + + + org.datanucleus + javax.jdo + ${datanucleus-jdo.version} + + + org.skyscreamer + jsonassert + 1.4.0 + test + + + sqlline + sqlline + ${sqlline.version} + + + jline + jline + ${jline.version} + + + commons-logging + commons-logging + ${commons-logging.version} + + + com.cronutils + cron-utils + ${cron-utils.version} + + + com.github.ben-manes.caffeine + caffeine + ${caffeine.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.springframework + spring-jdbc + ${spring.version} + + + org.springframework + spring-core + ${spring.version} + + + + com.microsoft.sqlserver + mssql-jdbc + ${mssql.version} + runtime + + + com.oracle.database.jdbc + ojdbc8 + ${oracle.version} + runtime + + + com.mysql + mysql-connector-j + ${mysql.version} + runtime + + + org.apache.derby + derby + ${derby.version} + runtime + + + org.mariadb.jdbc + mariadb-java-client + ${mariadb.version} + runtime + + + org.postgresql + postgresql + ${postgres.version} + runtime + + + org.apache.httpcomponents + httpcore + ${httpcomponents.core.version} + + + org.eclipse.jetty + jetty-util + ${jetty.version} + + + org.eclipse.jetty + jetty-server + ${jetty.version} + + + org.eclipse.jetty + jetty-servlet + ${jetty.version} + + + + junit + junit + ${junit.version} + test + + + org.junit.jupiter + junit-jupiter-engine + ${junit.jupiter.version} + test + + + org.junit.vintage + junit-vintage-engine + ${junit.vintage.version} + test + + + org.apache.directory.server + apacheds-server-integ + ${apache-directory-server.version} + test + + + dom4j + dom4j + + + + + org.apache.directory.server + apacheds-test-framework + ${apache-directory-server.version} + test + + + org.mockito + mockito-core + ${mockito-core.version} + test + + + + org.hamcrest + hamcrest-all + ${hamcrest.version} + test + + + org.apache.curator + curator-test + ${curator.version} + test + + + org.junit.jupiter + junit-jupiter-api + + + + + org.slf4j + slf4j-simple + ${slf4j.version} + test + + + + + + + + org.aspectj + aspectjrt + ${aspectj.version} + + + edu.uchicago.cs.systems + wasabi + ${wasabi.version} + + + + com.fasterxml.jackson.core + jackson-databind + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.codehaus.mojo + versions-maven-plugin + ${maven.versions.plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven.surefire.plugin.version} + + false + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven.checkstyle.plugin.version} + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + assemble + package + + single + + + apache-${project.artifactId}-${project.version} + + tar.gz + + + src/assembly/src.xml + + posix + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + ${checkstyle.conf.dir}/checkstyle.xml + config_loc=${checkstyle.conf.dir} + true + + + + org.apache.rat + apache-rat-plugin + + + process-resources + + check + + + + + + *.patch + DEV-README + **/src/main/sql/** + **/README.md + **/*.iml + **/*.txt + **/*.log + **/*.arcconfig + **/package-info.java + **/*.properties + **/*.q + **/*.q.out + **/*.xml + **/gen/** + **/patchprocess/** + **/metastore_db/** + **/test/resources/**/*.ldif + **/test/resources/sql/** + **/test/resources/**/*.json + + + + + + + dev.aspectj + aspectj-maven-plugin + ${aspectj-maven.version} + + + + edu.uchicago.cs.systems + wasabi + + + + + + + test-compile + compile + + + 1.8 + 1.8 + false + true + true + unmatchedSuperTypeInCall=ignore,adviceDidNotMatch=ignore,typeNotExposedToWeaver=ignore,uncheckedAdviceConversion=ignore,invalidAbsoluteTypeName=ignore,cantFindType=ignore + + + + + + org.aspectj + aspectjtools + ${aspectj.version} + + + + + + + + + javadoc + + + + org.apache.maven.plugins + maven-javadoc-plugin + + none + false + + + + attach-javadocs + + jar + + + + + + + + + spotbugs + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.0.0 + + + + com.github.spotbugs + spotbugs + ${spotbugs.version} + + + + true + 2048 + -Djava.awt.headless=true -Xmx2048m -Xms512m + ${basedir}/${standalone.metastore.path.to.root}/spotbugs/spotbugs-exclude.xml + + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.0.0 + + true + 2048 + -Djava.awt.headless=true -Xmx2048m -Xms512m + ${basedir}/${standalone.metastore.path.to.root}/spotbugs/spotbugs-exclude.xml + + + + + + + diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/pom-hive.xml b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/pom-hive.xml new file mode 100644 index 00000000..1310a6da --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/pom-hive.xml @@ -0,0 +1,2115 @@ + + + + 4.0.0 + + org.apache + apache + 23 + + org.apache.hive + hive + 4.0.0-beta-2-SNAPSHOT + pom + Hive + https://hive.apache.org + + storage-api + accumulo-handler + vector-code-gen + beeline + classification + cli + common + contrib + druid-handler + hbase-handler + jdbc-handler + hcatalog + hplsql + jdbc + metastore + parser + udf + ql + serde + service-rpc + service + streaming + llap-common + llap-client + llap-ext-client + llap-tez + llap-server + shims + kudu-handler + testutils + packaging + standalone-metastore + kafka-handler + + + 4.0.0-beta-2-SNAPSHOT + 4.0.0-beta-2 + + 1.8 + 1.8 + false + ${settings.localRepository} + . + standalone + ${basedir}/${hive.path.to.root}/checkstyle + + ${project.groupId}:${project.artifactId} + + + + ${maven.test.classpath} + file:// + ${project.build.directory}/tmp + ${project.build.directory}/testconf + file://${test.tmp.dir} + + INFO + ${project.build.directory}/warehouse + ${project.build.directory}/localfs/warehouse + pfile:// + + + + 1.0b3 + -Xmx2048m -DJETTY_AVAILABLE_PROCESSORS=4 + 2.17 + 3.4.0 + 2.10 + 3.1.0 + 2.16.0 + 3.5.0 + 3.0.0-M4 + 2.7.10 + 2.3.0 + + 1.10.1 + 1.10.13 + 3.5.2 + + 4.9.3 + 1.5.7 + + 12.0.0 + 1.12.0 + 1.11.3 + 1.68 + 1.25.0 + 5.2.8 + 5.2.10 + 3.2.0-release + 5.2.10 + 1.5.0 + 1.15 + 3.2.2 + 4.1 + 1.23.0 + 1.10 + 1.1 + 2.12.0 + 2.11.1 + 3.12.0 + 3.6.1 + 2.9.0 + 1.10.0 + 10.14.2.0 + 3.1.0 + 0.1.2 + 0.17.1 + 2.2.4 + 1.12.0 + 22.0 + 2.4.21 + 2.2.220 + 3.3.6 + ${basedir}/${hive.path.to.root}/testutils/hadoop + 1.3 + 2.5.6-hadoop3 + 0.7.2 + + 3.3.7 + 4.0.3 + + 4.5.13 + 4.4.13 + 2.5.2 + 2.13.5 + 2.3.4 + 2.4.1 + 3.1.0 + 5.5.1 + 1.5.4 + 9.4.45.v20220203 + 1.19 + 2.14.6 + 2.0.2 + 2.9.9 + 6.0.0 + 1.8 + 4.13.2 + 5.6.2 + 5.6.3 + 2.5.0 + 5.5.0 + 1.11.9 + 1.12.0 + + 0.9.3 + 0.16.0 + 2.18.0 + 2.5.0 + 6.2.1.jre8 + 8.0.31 + 42.5.1 + 21.3.0.0 + 2.3 + 1.8.5 + 3.4.4 + 4.11.0 + 2.0.0-M5 + 4.1.77.Final + 3.10.5.Final + + 4.5.5 + 2.8 + 1.13.1 + 0.16.0 + 1.5.6 + 3.21.7 + 1.0.1 + 1.7.30 + 4.0.4 + 4.0.0-beta-2-SNAPSHOT + 0.10.2 + 2.2.0 + 1.1 + 1.1.10.4 + 1.4 + 2.3 + 2.12.2 + 2.3.4 + 3.7.2 + 1.1 + 2.4.0 + 5.2.0 + 3.0.0 + 2.9.0 + 0.10.5 + 1.2 + 2.0.1 + 2.8.0 + 3.0.11 + 1.1.0-incubating + 4.0.3 + 1.1.0.Final + 1.0.1 + 1.12.499 + 2.4.0 + 5.2.24.RELEASE + + + 1.9.8.M1 + 1.13 + 1.0.0 + + + + + + central + central + https://repo.maven.apache.org/maven2 + default + + true + warn + + + + repository-release + https://repository.apache.org/content/repositories/releases/ + + true + + + true + + + + + shibboleth + https://build.shibboleth.net/nexus/content/groups/public + + true + warn + + + false + + + + + + + + com.amazonaws + aws-java-sdk-bundle + ${aws-java-sdk.version} + + + io.netty + * + + + + + com.amazonaws.secretsmanager + aws-secretsmanager-caching-java + ${aws-secretsmanager-caching.version} + + + com.amazonaws + aws-java-sdk-secretsmanager + + + + + com.esotericsoftware + kryo + ${kryo.version} + + + com.esotericsoftware + reflectasm + ${reflectasm.version} + + + com.google.guava + guava + ${guava.version} + + + com.google.protobuf + protobuf-java + ${protobuf.version} + + + com.google.code.tempus-fugit + tempus-fugit + ${tempus-fugit.version} + + + org.hamcrest + hamcrest-core + + + + + com.zaxxer + HikariCP + ${hikaricp.version} + + + com.thoughtworks.paranamer + paranamer + ${paranamer.version} + + + org.apache.parquet + parquet + ${parquet.version} + + + org.apache.parquet + parquet-column + ${parquet.version} + tests + + + org.apache.parquet + parquet-hadoop-bundle + ${parquet.version} + + + com.sun.jersey + jersey-core + ${jersey.version} + + + com.sun.jersey + jersey-json + ${jersey.version} + + + com.sun.jersey + jersey-server + ${jersey.version} + + + com.sun.jersey.contribs + wadl-resourcedoc-doclet + ${wadl-resourcedoc-doclet.version} + + + com.sun.jersey + jersey-servlet + ${jersey.version} + + + commons-cli + commons-cli + ${commons-cli.version} + + + commons-codec + commons-codec + ${commons-codec.version} + + + commons-collections + commons-collections + ${commons-collections.version} + + + org.apache.commons + commons-collections4 + ${commons-collections4.version} + + + commons-io + commons-io + ${commons-io.version} + + + org.apache.commons + commons-dbcp2 + ${commons-dbcp2.version} + + + org.apache.commons + commons-math3 + ${commons-math3.version} + + + io.jsonwebtoken + jjwt-api + ${jjwt.version} + + + io.jsonwebtoken + jjwt-impl + ${jjwt.version} + + + io.jsonwebtoken + jjwt-jackson + ${jjwt.version} + + + io.netty + netty-all + ${netty.version} + + + jakarta.jms + jakarta.jms-api + ${jms.version} + + + javolution + javolution + ${javolution.version} + + + jline + jline + ${jline.version} + + + joda-time + joda-time + ${joda.version} + + + junit + junit + ${junit.version} + + + org.junit.jupiter + junit-jupiter-engine + ${junit.jupiter.version} + + + org.junit.jupiter + junit-jupiter-params + ${junit.jupiter.version} + + + org.junit.vintage + junit-vintage-engine + ${junit.vintage.version} + + + org.apache.commons + commons-text + ${commons-text.version} + + + org.apache.logging.log4j + log4j-1.2-api + ${log4j2.version} + + + org.apache.logging.log4j + log4j-web + ${log4j2.version} + + + org.apache.logging.log4j + log4j-slf4j-impl + ${log4j2.version} + + + org.antlr + antlr-runtime + ${antlr.version} + + + org.antlr + ST4 + ${ST4.version} + + + org.apache.commons + commons-compress + ${commons-compress.version} + + + org.apache.commons + commons-exec + ${commons-exec.version} + + + org.apache.accumulo + accumulo-core + ${accumulo.version} + + + org.apache.accumulo + accumulo-fate + ${accumulo.version} + + + org.apache.accumulo + accumulo-minicluster + ${accumulo.version} + + + org.apache.accumulo + accumulo-start + ${accumulo.version} + + + org.apache.accumulo + accumulo-trace + ${accumulo.version} + + + org.apache.calcite.avatica + avatica + ${avatica.version} + + + org.apache.calcite.avatica + avatica-core + ${avatica.version} + + + org.apache.calcite.avatica + avatica-metrics + ${avatica.version} + + + org.apache.calcite.avatica + avatica-server + ${avatica.version} + + + org.apache.avro + avro + ${avro.version} + + + org.apache.avro + avro-mapred + ${avro.version} + + + org.mortbay.jetty + jetty-util + + + org.mortbay.jetty + servlet-api + + + io.netty + netty + + + + + org.apache.httpcomponents + httpclient + ${httpcomponents.client.version} + + + org.apache.httpcomponents + httpcore + ${httpcomponents.core.version} + + + org.apache.velocity + velocity-engine-core + ${velocity.version} + + + stax + stax-api + ${stax.version} + + + org.apache.calcite + calcite-core + ${calcite.version} + + + org.apache.calcite + calcite-linq4j + ${calcite.version} + + + org.apache.calcite + calcite-druid + ${calcite.version} + + + org.apache.curator + curator-test + ${curator.version} + test + + + org.junit.jupiter + junit-jupiter-api + + + + + org.apache.datasketches + datasketches-hive + ${datasketches.version} + + + org.slf4j + slf4j-simple + + + + + org.apache.orc + orc-core + ${orc.version} + + + org.apache.hadoop + hadoop-common + + + org.apache.hive + hive-storage-api + + + + + org.apache.hive + hive-storage-api + ${storage-api.version} + + + org.apache.zookeeper + zookeeper + + + org.apache.curator + curator-client + + + org.apache.curator + curator-recipes + + + + + org.apache.pig + pig + ${pig.version} + + + org.apache.thrift + libfb303 + ${libfb303.version} + + + org.apache.thrift + libthrift + ${libthrift.version} + + + org.apache.zookeeper + zookeeper + ${zookeeper.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-reload4j + + + ch.qos.reload4j + reload4j + + + commons-logging + commons-logging + + + org.apache.httpcomponents + httpcore + + + org.apache.httpcomponents + httpclient + + + io.netty + netty-all + + + + + org.apache.curator + curator-client + ${curator.version} + + + org.apache.curator + curator-framework + ${curator.version} + + + org.apache.curator + curator-recipes + ${curator.version} + + + org.codehaus.groovy + groovy-all + ${groovy.version} + + + com.fasterxml.jackson + jackson-bom + ${jackson.version} + pom + import + + + org.codehaus.jettison + jettison + ${jettison.version} + + + stax + stax-api + + + + + org.eclipse.jetty + jetty-rewrite + ${jetty.version} + + + org.eclipse.jetty + jetty-server + ${jetty.version} + + + org.eclipse.jetty + jetty-servlet + ${jetty.version} + + + org.eclipse.jetty + jetty-runner + ${jetty.version} + + + org.eclipse.jetty + jetty-webapp + ${jetty.version} + + + org.eclipse.jetty + jetty-http + ${jetty.version} + + + org.eclipse.jetty + jetty-util + ${jetty.version} + + + javax.servlet + javax.servlet-api + ${javax-servlet.version} + + + org.datanucleus + datanucleus-api-jdo + ${datanucleus-api-jdo.version} + + + org.datanucleus + datanucleus-core + ${datanucleus-core.version} + + + org.datanucleus + datanucleus-rdbms + ${datanucleus-rdbms.version} + + + org.datanucleus + javax.jdo + ${datanucleus-jdo.version} + + + org.pac4j + pac4j-saml-opensamlv3 + ${pac4j-saml.version} + + + com.google.code.findbugs + jsr305 + + + ch.qos.logback + logback-classic + + + xalan + xalan + + + org.springframework + spring-core + + + dom4j + dom4j + + + commons-collections + commons-collections + + + org.slf4j + * + + + org.jboss.logging + * + + + org.hibernate + * + + + org.hibernate.javax.persistence + * + + + org.springframework + * + + + org.javassist + javassist + + + + org.bouncycastle + org.bouncycastle + + + org.apache.santuario + xmlsec + + + + + org.bouncycastle + bcprov-jdk15on + ${bcprov-jdk15on.version} + + + org.apache.santuario + xmlsec + ${xmlsec.version} + + + com.fasterxml.woodstox + woodstox-core + + + + + com.tdunning + json + ${json.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + xerces + xercesImpl + ${xerces.version} + + + org.apache.hadoop + hadoop-client + ${hadoop.version} + + + commons-logging + commons-logging + + + + + org.apache.hadoop + hadoop-auth + ${hadoop.version} + + + commons-logging + commons-logging + + + org.apache.zookeeper + zookeeper + + + org.apache.curator + curator-framework + + + org.apache.curator + curator-test + + + + + org.apache.hadoop + hadoop-common + ${hadoop.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-reload4j + + + ch.qos.reload4j + reload4j + + + commons-logging + commons-logging + + + org.apache.httpcomponents + httpcore + + + org.apache.httpcomponents + httpclient + + + org.apache.zookeeper + zookeeper + + + org.apache.curator + curator-test + + + org.apache.curator + curator-client + + + org.apache.curator + curator-recipes + + + javax.servlet.jsp + jsp-api + + + + + org.apache.hadoop + hadoop-hdfs + ${hadoop.version} + + + io.netty + netty + + + + + org.apache.hadoop + hadoop-mapreduce-client-jobclient + ${hadoop.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-reload4j + + + ch.qos.reload4j + reload4j + + + commons-logging + commons-logging + + + com.codahale.metrics + metrics-core + + + io.netty + netty-all + + + io.netty + netty + + + + + org.apache.hadoop + hadoop-mapreduce-client-common + ${hadoop.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-reload4j + + + ch.qos.reload4j + reload4j + + + commons-logging + commons-logging + + + io.netty + netty-all + + + io.netty + netty + + + + + org.apache.hadoop + hadoop-mapreduce-client-core + ${hadoop.version} + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-reload4j + + + ch.qos.reload4j + reload4j + + + org.jline + jline + + + commons-logging + commons-logging + + + io.netty + netty-all + + + io.netty + netty + + + + + org.apache.hadoop + hadoop-minikdc + ${hadoop.version} + + + io.netty + netty-all + + + org.slf4j + slf4j-log4j12 + + + org.slf4j + slf4j-reload4j + + + ch.qos.reload4j + reload4j + + + commons-logging + commons-logging + + + + + org.apache.hadoop + hadoop-yarn-api + ${hadoop.version} + + + org.apache.hadoop + hadoop-yarn-client + ${hadoop.version} + + + org.jline + jline + + + + + org.apache.hadoop + hadoop-yarn-common + ${hadoop.version} + + + org.apache.hadoop + hadoop-yarn-registry + ${hadoop.version} + + + org.apache.hadoop + hadoop-yarn-server-web-common + ${hadoop.version} + + + org.apache.hadoop + hadoop-yarn-server-web-proxy + ${hadoop.version} + + + io.netty + netty-all + + + + + org.apache.hbase + hbase-common + ${hbase.version} + + + org.apache.hbase + hbase-client + ${hbase.version} + + + org.apache.hbase + hbase-hadoop-compat + ${hbase.version} + + + org.apache.hbase + hbase-hadoop2-compat + ${hbase.version} + + + javax.servlet + servlet-api + + + javax.servlet.jsp + jsp-api + + + org.jruby + jruby-complete + + + io.netty + netty-all + + + io.netty + netty + + + com.sun.jersey + jersey-core + + + com.sun.jersey + jersey-json + + + com.sun.jersey + jersey-server + + + com.codahale.metrics + metrics-core + + + + + org.apache.hbase + hbase-server + ${hbase.version} + + + org.glassfish.web + javax.servlet.jsp + + + + + org.apache.hbase + hbase-mapreduce + ${hbase.version} + + + org.apache.hbase + hbase-zookeeper + tests + ${hbase.version} + + + org.apache.hadoop + hadoop-minicluster + ${hadoop.version} + + + org.jamon + jamon-runtime + ${jamon-runtime.version} + + + org.xerial.snappy + snappy-java + ${snappy.version} + + + com.google.re2j + re2j + ${re2j.version} + + + com.jayway.jsonpath + json-path + ${json-path.version} + runtime + + + org.codehaus.janino + commons-compiler + ${janino.version} + runtime + + + org.codehaus.janino + janino + ${janino.version} + runtime + + + org.apache.tez + tez-runtime-internals + ${tez.version} + + + org.apache.tez + tez-runtime-library + ${tez.version} + + + io.netty + netty + + + + + org.apache.tez + tez-api + ${tez.version} + + + org.apache.tez + tez-dag + ${tez.version} + + + org.apache.tez + tez-mapreduce + ${tez.version} + + + io.netty + netty + + + + + org.apache.tez + tez-common + ${tez.version} + + + org.springframework + spring-jdbc + ${spring.version} + + + org.springframework + spring-core + ${spring.version} + + + + com.microsoft.sqlserver + mssql-jdbc + ${mssql.version} + runtime + + + com.oracle.database.jdbc + ojdbc8 + ${oracle.version} + runtime + + + com.mysql + mysql-connector-j + ${mysql.version} + runtime + + + org.apache.derby + derby + ${derby.version} + runtime + + + org.mariadb.jdbc + mariadb-java-client + ${mariadb.version} + runtime + + + org.postgresql + postgresql + ${postgres.version} + runtime + + + + + + + + org.aspectj + aspectjrt + ${aspectj.version} + + + edu.uchicago.cs.systems + wasabi + ${wasabi.version} + + + + + + org.slf4j + slf4j-api + + + + + + + + org.antlr + antlr3-maven-plugin + ${antlr.version} + + + org.apache.avro + avro-maven-plugin + ${avro.version} + + + org.apache.maven.plugins + maven-antrun-plugin + + + ant-contrib + ant-contrib + ${ant.contrib.version} + + + ant + ant + + + + + + + org.apache.maven.plugins + maven-eclipse-plugin + ${maven.eclipse.plugin.version} + + false + true + target/eclipse/classes + Hive + ${basedir}/dev-support/eclipse-styles.xml + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${maven.checkstyle.plugin.version} + + + org.codehaus.mojo + versions-maven-plugin + ${maven.versions.plugin.version} + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven.surefire.plugin.version} + + + org.apache.felix + maven-bundle-plugin + ${felix.version} + + + org.apache.maven.plugins + maven-shade-plugin + ${maven.shade.plugin.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${maven.build-helper.plugin.version} + + + org.codehaus.mojo + exec-maven-plugin + ${maven.exec.plugin.version} + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + define-classpath + process-resources + + run + + + true + + + + + + + setup-test-dirs + process-test-resources + + run + + + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-clean-plugin + + + + ./ + + datanucleus.log + derby.log + + false + + + build + false + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + ${checkstyle.conf.dir}/checkstyle.xml + config_loc=${checkstyle.conf.dir} + true + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + de.skuzzle.enforcer + restrict-imports-enforcer-rule + 0.9.0 + + + + + enforce-no-snapshots + + enforce + + + + + Release builds are not allowed to have SNAPSHOT depenendencies + true + true + + + true + + + + enforce-banned-dependencies-licenses + + enforce + + + + + + + com.google.code.findbugs:annotations + + A banned license dependency was found! + + + true + + + + enforce-banned-dependencies-logging + + enforce + + + + + + + commons-logging:commons-logging + log4j:log4j + ch.qos.reload4j:reload4j + + false + A banned logging dependency was found! + + + true + + + + check-banned-imports + initialize + + enforce + + + + + Do not use shaded imports + + **.shaded.** + jersey.repackaged.com.google.** + org.codehaus.jackson.** + org.apache.hive.com.** + org.apache.hive.org.** + + + org.apache.hadoop.hbase.shaded.protobuf.** + + true + + + Do not use commons-lang + + org.apache.commons.lang.** + + true + + + Do not use commons-logging; use slf4j + + org.apache.commons.logging.** + + true + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/TestSerDe.java + **/TestHiveMetaStore.java + **/ql/exec/vector/util/*.java + **/ql/exec/vector/udf/legacy/*.java + **/ql/exec/vector/udf/generic/*.java + **/TestHiveServer2Concurrency.java + ${test.excludes.additional} + + true + false + false + ${maven.test.jvm.args} + false + + ${test.conf.dir} + ${basedir}/${hive.path.to.root}/conf + + + US/Pacific + en_US.UTF-8 + ${test.conf.dir}:${basedir}/${hive.path.to.root}/conf + ${test.hive.hadoop.classpath} + ${env.PATH}${test.extra.path} + + + ${project.build.directory} + + ${test.tmp.dir} + + ${derby.version} + ${test.tmp.dir}/derby.log + ${hadoop.bin.path} + + ${test.tmp.dir} + ${basedir}/${hive.path.to.root}/ + ${project.version} + + ${maven.repo.local} + local + ${test.log4j.scheme}${test.conf.dir}/hive-log4j2.properties + ${test.console.log.level} + true + + ${test.tmp.dir} + + ${test.tmp.dir} + + ${basedir}/${hive.path.to.root}/data/files + ${basedir}/${hive.path.to.root}/data/files + ${test.tmp.dir} + ${test.tmp.dir.uri} + ${test.dfs.mkdir} + ${test.output.overwrite} + ${test.warehouse.scheme}${test.warehouse.dir} + ${test.warehouse.scheme}${test.local.warehouse.dir} + true + + + ${test.conf.dir}/krb5.conf + ${hadoop.version} + ${qfile} + ${initScript} + ${clustermode} + ${qfile_regex} + ${run_disabled} + + + + + org.apache.rat + apache-rat-plugin + + + process-resources + + check + + + + + + *.patch + .github/** + data/** + conf/** + checkstyle/** + docs/Gemfile + bin/** + itests/** + **/README.md + **/*.iml + **/*.txt + **/*.log + **/.factorypath + **/.classpath + **/.project + **/.settings/** + **/*.arcconfig + **/package-info.java + **/*.properties + **/*.q + **/*.q.out + **/*.q.out_* + **/*.xml + **/*.yml + **/*json + **/gen/** + **/target/** + **/scripts/** + **/resources/** + **/*.rc + **/*.rcfile + **/*.qv + **/*.out + **/RecordTestObj.java + **/*.m + **/gen-java/** + **/testdata/** + **/test/org/apache/hadoop/hive/hbase/avro/** + **/avro_test.avpr + **/xmlReport.pl + **/*.html + **/sit + **/test/queries/**/*.sql + **/patchprocess/** + **/metastore_db/** + **/test/resources/**/*.ldif + hcatalog/core/mapred/**/part-m* + hcatalog/core/mapred/**/*_SUCCESS* + **/PriorityBlockingDeque.java + LICENSE-binary + + + + + org.jamon + jamon-maven-plugin + ${jamon.plugin.version} + + + + + dev.aspectj + aspectj-maven-plugin + ${aspectj-maven.version} + + + + edu.uchicago.cs.systems + wasabi + + + + + + + test-compile + compile + + + 1.8 + 1.8 + false + true + true + unmatchedSuperTypeInCall=ignore,adviceDidNotMatch=ignore,typeNotExposedToWeaver=ignore,uncheckedAdviceConversion=ignore,invalidAbsoluteTypeName=ignore,cantFindType=ignore + + + + + + org.aspectj + aspectjtools + ${aspectj.version} + + + + + + + + + thriftif + + + + org.codehaus.mojo + exec-maven-plugin + + + check-thrift-version + generate-sources + + exec + + + sh + ${basedir} + + -c + ${thrift.home}/bin/thrift -version | fgrep 'Thrift version ${libthrift.version}' && exit 0; + echo "================================================================================="; + echo "========== [FATAL] Build is configured to require Thrift version ${libthrift.version} ========="; + echo "========== Currently installed: "; + ${thrift.home}/bin/thrift -version; + echo "================================================================================="; + exit 1 + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + generate-thrift-sources + generate-sources + + + + + + + + + + + + + + + + + + + + + + run + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-property + + enforce + + + + + thrift.home + + + true + + + + + + + + + sources + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + + + + + + + + + javadoc + + + + org.apache.maven.plugins + maven-javadoc-plugin + + none + false + + + + attach-javadocs + + jar + + + + + + + + + spotbugs + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.0.0 + + + + com.github.spotbugs + spotbugs + ${spotbugs.version} + + + + true + 2048 + -Djava.awt.headless=true -Xmx2048m -Xms512m + ${basedir}/${hive.path.to.root}/spotbugs/spotbugs-exclude.xml + + + + + + + + com.github.spotbugs + spotbugs-maven-plugin + 4.0.0 + + true + 2048 + -Djava.awt.headless=true -Xmx2048m -Xms512m + ${basedir}/${hive.path.to.root}/spotbugs/spotbugs-exclude.xml + + + + + + + + windows-test + + + Windows + + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 2.8 + + + copy-dependencies + package + + copy-dependencies + + + ${project.build.directory}/deplibs/ + false + false + true + + + + + + + + ${basedir}/${hive.path.to.root}/testutils/hadoop.cmd + + ;${env.HADOOP_HOME}/bin + ${project.build.directory}/deplibs/* + file:///${test.tmp.dir} + file:/ + + + + itests + + itests + + + + iceberg + + iceberg + + + + customhbase + + + hbase.version + + + + + dist + + + + org.cyclonedx + cyclonedx-maven-plugin + ${maven.cyclonedx.plugin.version} + + + package + + makeBom + + + + + + + + + diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.conf new file mode 100644 index 00000000..5e335794 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.data new file mode 100644 index 00000000..bab3f821 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.druid.TestDruidStorageHandler.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/druid-handler/src/java/org/apache/hadoop/hive/druid/DruidStorageHandlerUtils.java#L765!!!org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec!!!org.apache.hadoop.fs.FileSystem.mkdirs!!!DruidStorageHandlerUtils.java:774!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.conf new file mode 100644 index 00000000..d42903b7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.data new file mode 100644 index 00000000..932680e0 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.llap.registry.impl.TestLlapZookeeperRegistryImpl.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/llap-client/src/java/org/apache/hadoop/hive/registry/impl/ZkRegistryBase.java#L640!!!org.apache.hadoop.hive.registry.impl.ZkRegistryBase.ensureInstancesCache!!!org.apache.curator.framework.recipes.cache.PathChildrenCache.start!!!ZkRegistryBase.java:644!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.conf new file mode 100644 index 00000000..4e9d1dc5 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.data new file mode 100644 index 00000000..50c1ed80 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestListPartitionsWithXIncludeParams.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/RetryingHMSHandler.java#L83!!!org.apache.hadoop.hive.metastore.RetryingHMSHandler.invokeInternal!!!org.apache.hadoop.hive.metastore.Deadline.startTimer!!!RetryingHMSHandler.java:89!!!org.apache.hadoop.hive.metastore.api.MetaException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.conf new file mode 100644 index 00000000..c858eaa4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.data new file mode 100644 index 00000000..971f560b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestMetaStoreEventListener.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.getUGI!!!HiveMetaStoreClient.java:848!!!java.io.IOException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.conf new file mode 100644 index 00000000..5d18da41 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.data new file mode 100644 index 00000000..8141f8f6 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.metastore.TestObjectStore.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java#L11654!!!org.apache.hadoop.hive.metastore.ObjectStore$RetryingExecutor.run!!!org.apache.hadoop.hive.metastore.ObjectStore$RetryingExecutor$Command.process!!!ObjectStore.java:11999!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.conf new file mode 100644 index 00000000..0d72c0c6 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.data new file mode 100644 index 00000000..35ee5865 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommands.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DbLockManager.java#L101!!!org.apache.hadoop.hive.ql.lockmgr.DbLockManager.lock!!!org.apache.hadoop.hive.ql.lockmgr.DbTxnManager.getMS!!!DbLockManager.java:104!!!org.apache.hadoop.hive.ql.lockmgr.LockException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.conf new file mode 100644 index 00000000..dfdb29ae --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.data new file mode 100644 index 00000000..35ee5865 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.TestTxnCommandsForMmTable.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DbLockManager.java#L101!!!org.apache.hadoop.hive.ql.lockmgr.DbLockManager.lock!!!org.apache.hadoop.hive.ql.lockmgr.DbTxnManager.getMS!!!DbLockManager.java:104!!!org.apache.hadoop.hive.ql.lockmgr.LockException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.conf new file mode 100644 index 00000000..04359835 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.data new file mode 100644 index 00000000..b1214e6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.tez.TestTezOutputCommitter.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.conf new file mode 100644 index 00000000..07caf1e4 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.data new file mode 100644 index 00000000..316ee87d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.exec.util.TestRetryable.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/util/Retryable.java#L71!!!org.apache.hadoop.hive.ql.exec.util.Retryable.executeCallable!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.reloginExpiringKeytabUser!!!Retryable.java:74!!!org.apache.hadoop.hive.metastore.api.MetaException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.conf new file mode 100644 index 00000000..5d2f2d1d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.data new file mode 100644 index 00000000..86dedf9f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.hooks.TestHiveProtoLoggingHook.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/hooks/HiveProtoLoggingHook.java#L315!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.writeEvent!!!org.apache.hadoop.hive.ql.hooks.HiveProtoLoggingHook$EventLogger.maybeRolloverWriterForDay!!!HiveProtoLoggingHook.java:327!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.conf new file mode 100644 index 00000000..482a2d5d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.data new file mode 100644 index 00000000..b1214e6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestCounterMapping.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.conf new file mode 100644 index 00000000..ee35077d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.data new file mode 100644 index 00000000..b1214e6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestOperatorCmp.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.conf new file mode 100644 index 00000000..376b0ebd --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.data new file mode 100644 index 00000000..b1214e6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.plan.mapping.TestReOptimization.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.conf new file mode 100644 index 00000000..35359a09 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.data new file mode 100644 index 00000000..b1214e6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hadoop.hive.ql.schq.TestScheduledQueryService.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.conf new file mode 100644 index 00000000..60012f49 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.data new file mode 100644 index 00000000..7e3a3a47 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.api.repl.commands.TestCommands.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/CopyUtils.java#L253!!!org.apache.hadoop.hive.ql.parse.repl.CopyUtils.doCopyRetry!!!org.apache.hadoop.hive.ql.parse.repl.CopyUtils.getFilesToRetry!!!CopyUtils.java:257!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.conf new file mode 100644 index 00000000..918cd310 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.data new file mode 100644 index 00000000..971f560b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.hcatalog.mapreduce.TestHCatMultiOutputFormat.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java#L753!!!org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open!!!org.apache.hadoop.hive.metastore.utils.SecurityUtils.getUGI!!!HiveMetaStoreClient.java:848!!!java.io.IOException diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.conf b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.conf new file mode 100644 index 00000000..d00d154c --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.conf @@ -0,0 +1,3 @@ +retry_data_file: wasabi-testing/config/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.data +injection_policy: max-count +max_injection_count: 97 \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.data b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.data new file mode 100644 index 00000000..b1214e6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/classes/hive/test-plan/hive_retry_locations-org.apache.hive.testutils.TestHiveTestEnvSetup.data @@ -0,0 +1,2 @@ +Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception +https://github.com/apache/hive/blob/e08a60029f93e52182908b61fff32e8659e78daa/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/monitoring/TezJobMonitor.java#L166!!!org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution!!!org.apache.tez.dag.api.client.DAGClient.getDAGStatus!!!TezJobMonitor.java:183!!!java.io.IOException \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/maven-archiver/pom.properties b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/maven-archiver/pom.properties new file mode 100644 index 00000000..e2f40999 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Fri Oct 03 02:20:02 UTC 2025 +version=1.0.0 +groupId=edu.uchicago.cs.systems +artifactId=wasabi diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 00000000..b71795bd --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,13 @@ +edu/uchicago/cs/systems/wasabi/ConfigParser.class +edu/uchicago/cs/systems/wasabi/InjectForever.class +edu/uchicago/cs/systems/wasabi/InjectionPolicy.class +edu/uchicago/cs/systems/wasabi/NoInjection.class +edu/uchicago/cs/systems/wasabi/OpEntry.class +edu/uchicago/cs/systems/wasabi/WasabiContext.class +edu/uchicago/cs/systems/wasabi/ExecutionTrace.class +edu/uchicago/cs/systems/wasabi/HashingPrimitives.class +edu/uchicago/cs/systems/wasabi/StackSnapshot.class +edu/uchicago/cs/systems/wasabi/WasabiLogger.class +edu/uchicago/cs/systems/wasabi/InjectUpToMaxCount.class +edu/uchicago/cs/systems/wasabi/WasabiContextHolder.class +edu/uchicago/cs/systems/wasabi/InjectionPoint.class diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 00000000..f6089a80 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,9 @@ +/home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiContext.java +/home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiContextHolder.java +/home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/java/edu/uchicago/cs/systems/wasabi/StackSnapshot.java +/home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/java/edu/uchicago/cs/systems/wasabi/ConfigParser.java +/home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/java/edu/uchicago/cs/systems/wasabi/HashingPrimitives.java +/home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/java/edu/uchicago/cs/systems/wasabi/InjectionPoint.java +/home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/java/edu/uchicago/cs/systems/wasabi/ExecutionTrace.java +/home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/java/edu/uchicago/cs/systems/wasabi/InjectionPolicies.java +/home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/java/edu/uchicago/cs/systems/wasabi/WasabiLogger.java diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/wasabi-1.0.0.jar b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/target/wasabi-1.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..8784ba7e4202befe26cdcb4f98274692f06985ee GIT binary patch literal 227559 zcma%i19YTOwsq`uY}@JBwrzIBwr$(CZKKms$F^;C*x{d^nKv_U-oIw1*7~Yyt=b>z zo_o*PXPTKT73TO z_j#cHGfY-cPEt%%S%qF!>{fPsOh%fHegT1-4MECZrNF@|$CFSp4!vO>PQ7YhD0}b;$;D)@gypCa~ zsJgXDR&n6y9uPO=CSqMWT{=Mj^K3vs_W$x1z&@YN*vR?sPyc@r@P9)%8=9FL0!(fH z4HWTTp@xqC295duK|8uTIvHF4^I6{i^1uZD<}6o$Bf!A?-`w)cpOdWsj!x!=j>Z57 zL$iN_1^>jFnY$SO8wkSxK%9&no#^bW05<;y{AUUo0vsIyHbxGBe}jYkb5Veit*za^ z0U`YZ^xxbY;t$*a;P~(U%pc?Z74v_u2=$kFlXaU!%k(*6ia()@pXfjH=I^uO)71ZC zyuX=2{V&!KwzY9Gc5|Y)0Js1K)ukQR*bsZp)U6x~N|-2m#Oj&K3z~AMQ-+mhPpCkJ zu)nAe zGf85y>cDghKd^vC8V)WkiI|s!P@KN1zRMnXcy~+|KPd@zra+etmRmRmhNrQNhixEf z-VGrAb~`@!taX!w(_@UymYocXc-}*UbH$(YE|*B8NWuRnaf!}ABBv<42ML7izG0ocEEClrPGdqsF&?T=X9A;8 z%r2wU?eSeJZl_GYZ}xG08eYWHnsoq}at2Nh%6)OP+ihWpak^UBnM^x1n%Q%MTI@0; zXC+z1YHVIHGP(OP`3@-)^MKhR(4}A@c16hGdnJdflGD$ngldVLw4>17`lZ_id*6bF zxrsfUB8L(6taWlYSbnYqV;01FY17!t!#CN{pnU6^+FzvU<&qic#1+!wnJtTG%vaq4ty$T%&%-e` z@Xa_^vp>Q~IU{j5@*}y9@zl&qHdWgrs!o8rcz}I!=o3cABW}T6Ko<|f}DKN#Y6#Ts2 z#OXuZIV>O1B35j@oPf<)6=e7tYDpUw=Tc1N?fY#Y%s{Fs{9G*E7zLn$#EOai5wjt< z{cd`L%c6@hR~Rt@YMg#>%|AyFWS8?L)E6Jfmv&nU1*gA>iU>C&dAP<-XrdhuN^#|? zo!DMrMNL&NKLvgwe!W5|?PwSft=&BZ?oIxK;!$_OTn+JU7yb)38r+W1$4JDn!1QzH ziryp6nqU`T|JO}&eVccvh6E(upeG1Z)599yNdKOKtBu=yb*K9p>lu~$8tj9Ig5Nzv zq%C=5W-ov2mRxCK=2YXEVW!1X;cw8^{HrfG7cQ0;&+lsoy!Ec9w#eRfL|BSiTG|`;kP=dUEbDBG*Wc~2p0KKBY=?uUpQ(@0;L1YZ z@kZ*=Om6CI+dT`kY0#&R;!Z+2O|nJE^oj+R?Yt~lSsjBfN3p5wE zk_)H4y?rC!bRqG#mtM#)ncH-+J^?GiOP_h8RJ;G#MM0wJJaI3=+nqlHrOU6Urbvoc z!K9(l_Beh;D8EK<6Ap)j&) z5Uo);F#GPH$@Xw_nw*EVYO!g2ebLyNSr*8?o&fnQ9WsnXuHxRk^ zTm8r`8ynbjZt_=E*Cf0-6z*XQy;Xa}O^OCwv{oUI{$Mt)BOWZ#Ig(I#qcu=!Xq18a zuW#Ry-Q*8VP6Q?`0XNw@xAKWT)f2wicj;`oXa3>|#I^~n!aal=+|P&xEV-+~&%jLl z(v<=%ka-}<)D-`S?Q zgwG(VYt4Bv-=Nd=<2&yWH{883cuida`?2wiW%UcviGdxsf47Bg|VTNxvh>GYRJ_s&E&%IH`J?0 z_84eT#r$5v$WXQnGBN_Q_;*)j%U05{Q;*cSqb_rT&6oy+Rl@B|8azwR!f5JrDp^}v zeA(ZU@VwU%h~#CAb*WcBY1MzJ+MDlWBKl3@ftf036R1kBrmJZ(%$(pCp%lOXCX7L` zt1m4NSo$djk1@N(ZOReL2(pbLX><7-57ARmT=n5Py_WT~tQ2zRT1H21OfRXCmGTn| z1p6Ug)!y4L4ISs?&JVV-e@Gkhvz+b(o3-+0E{HG0wKRqhjf3|@H zz|qXy##F(<+}hmflNUSw&7~^I%HuGi;$A__7VY3DNeS+z5e8A&3FbissWi`4RHG(! zHfrD$PC%^aDZHa#$VuQn0l!kto7z(6jrd>o-MZwMZdNVHPa(tteW_Cv4QpoVNvfY@ z@UCJq)`kNVt^g>r;ps{Hb&8mNGhewD^I>cxr45=PMmCW&Ib4x67H ziEG}BP8399jX%!-AC?*PWRy~0+rS1*R>|#;=HKYV7*8p zm@`IDprn{D_*^oE$Q^NV>9s+E1$_}lIeJ)KFiT6lOyX-41UwbtIf%Q5Ku3Ifr2fQU zbHRJmPm+RDm2_k^p#zqS@ART8BwZiEs@i218qlhZM3H3W6TvfTz5lXI!>;x1R6mu5 z`A-?)zi^exP5?toWgCE*Q$e9Uq5Im+7Nb=_W_kX8p;kMxB^8VZ8rg+d@7tw#?H;D8h6K^7zh zK*Yfmpo@b@MDk+Y)D4i}3@GBFH0}|tdUS!vZ+8QCeGPlu1Km9cib9AuKv3Q8e+qN+ zVgZAWg)^Sxd?9RujcTOvthpeM+pc9-6l#CUZuEJR^NvLyH)Nx5Q*#abpHg zqN02}i0ZCOC%MjQ|H~nbH6S;m0kC4eMhj4EGpZ0ta-IuJmpK59NSdcg=K_f1FI54* zF-}bCA^0DszgGdyWv}FlswB~A)>Vo+=2+lmWs&W^GvRR~qsy%AYL$`!+RM&i`^h3l zv+0V}4=G(K3mMG<(;z2QTFdmrzMoS;6RSvJN|X(IHWy|P2^#zq9Fw`gYs^nT2+`OE zPP`$V0%d28vI!;e;l)~tQD(_E(V1Djwt_51Q8Otw&oCIeAHO8gOrGrgVH+h|3@^Fs ztHk-tMLu0EUu{RIkE@AEovc88I>-b|U-{aZr+6FZsU&I+#-$*VELOGu`#oW1k z`cy%%ul1TGHll8oI=~DsOTyBki`94ZJOtS#*g(BAz;-Vxps`K9&-EG(ws^bqDJQ`6 z#=9g7yore?vz%`tgJCbdg6TC6n}6S~20Ln(^HpLf7L6wsL!u!sDl6c&EpMBcUeVix z4NYfA-pvg46?KZTEg*MhHWJ1sMqgzQ?x?qFs1~&=s1n8}dW&+|{{`(;?YujL8JP#N zA4YG8#tM~L_Goo(!#n~~YP+#}(wrYCJ%7sbLufIDF! zfpLPoSv`7KRQ^00tF`-dZ23*^j;M6F@m86ZKsCCm#Wl)R+RZHnU#!Q>La6O4-$slI zYNW6@qVIPC)2ywo#}(om)*FfzHP&P%DC6HO{e~+>5as`zwrVU;8D>sGzlf zw6Zd=UwS=6rgq5m6G|~pB#nj2_?U*l+Rm+y5tnQ(pa))1r*`Hcg61!eE+V6~G8iKJpbIhHa-Nw%~jiZv{r zF(qu#12^S=d)))H1^(nH<0-AbFIDQASi87nhn-2>+|%OnVNmlkU*O9@>GXCN*hT8; z;n7YbIH$@v|4!oMX2%1rwP$_K6f5NsGZX=JSU$3Inz)YYa)iaX5Ip|wix2I0h)XTO zY!k8Rkk;>Cr*B%@qH)jME^L387;OD$6}{g4!SrNol{_;^APKViE)9a2n`l#{rRAKbne0%k)GIVokfF-Cs`CXbCKn|%g3H;jXRj*_fz!C zXyXI^PUU#Y(i$HwH}Fy@X^peGZ*FC;$g#d?v0=$CQll-+r!EYJD;?l&Lwoo5L9&`b zx`&F^p-y3qz0w5B?obUYykV;avcsHQa#s8xAq<8OVsy7_VvDH>pzeyFgTFwIb(b$n zI8Fl|U>li}m(ZzRbd4z-H2^v2k7py166ep9)gK_hsMI&U>8Z{H>B zj(^yg7$A6xBd9T7S-Y@4YbNUndA3cfFCy=f=pX^2P=8eEf%E+z4Wm?=>!Hc|2ZB5rBrJ04UGYai7Q9Z}3%dz~UMN56DY&4Jw*&lrB4%G%#RLnCUGmKNG}e!@Czgyv5^_ zBt~tJOMyYGd?ZM3F5MnChWB*+6Sa9L!erEUs5Pg-rfwN_h_>tmQ+T?Dakr-RDn(O8 zC&8XWuI$>7S>WX{`!nVDYtc?FG^406xEB+6q}8J0WrECe)_*aC^v1^HptzZEpm?G_ za55tX0pc6+q!}k{Mx0^`3o~s=k#Ga#mBu--(U8u21wWd!pwKEalgPthX}7ncOgKaX zW#TviX1KCL`nB@%yByg1v3!Mm&&`j1qx)XC*?i?+; zz@tvh3a-M`aszVKy>&lBfvCyb+3uq5sPtKtSc|t8v#J(~#Tiu}qKz!xZ$kd+!l z`Fkb2iqE-qz;hUfPA5c z8qUtvffKc*6FJ;fZ&Ipz)|4^&oRXA{^CgjF#(t&PBVFzm$m%Bo7@_>i`iH{981<~I}3L+vm zMKaCfu_WAb(_!ja%XtI*<%miSeV~QXn(oGBj+8!$i#PTWpQHq>ZI-8Q2`LJn7`Vf&gFEW8 zao|pihVl6k){$kzr_6*BXeG6{!PFf!iE;WCF5ofUC61v%OUmTm9B8~DCfR5N!A@6h zKZ8KtJ3C%hw`%KI&tg@LeMLx2-O8Lidix7%#G%q?Vq9}clRB-Ios5TQ1+_+zM9=h> zkDzh@$aI4DWLy=|SOVuL@OFeykV&k-z(Db^xt(yvgjA-g6O1>We(z+FHPk|zxpudO zbtDwfCARsYerXveU2*lId^hYbkVP~E*Gbg(K)nW)S*{|P3XOd_ph z!79rcZW#hesV(0fsm4(5xX0e`naM*A6awG|U-_rlt|aQ64YA?iZsu=vHOIunH&8S6 zSs#L%$qB@H!W?GVWTp@0D}EtfTPC#;U$wrV{_?Of>8F<@V9Y>Ga%#pXaVxUr*nJdn@5g_9uzbH(K7o|KV2us27J% z9;tYr>c!IM@n7V=e^oEUY#oeU{;v2d$V&GMAbKa3L@zF{YI!^?N3dYr6u42Lf{20@ zL)xxg7_=5?{v=O+r}&x!hVTyLo5ZowgdyKicWbig)dlG3;pYR^DOeJL&j#86Dh(Qn zmUH%zE`twY4&Y~l6*ZH0uDFc2*D;PY$YGev#->V0|LKHvCBd(6A&n`!P!I;wKCi@+ zDY5#~#=2&a%>zko+!?i$hU_+cWM0g8DQKErHlCI`V;F9C2PMB)w@Q|aO>~rJFz7Il zim9BuWBzRTCBie&tUMX7dO$4bT9HEM)f9H~S^mJYnr?FYW@q&1##HqBemN2|yx!;i zi-+ThpLKsc9&R0cB?xZ8hy;g&%!=2bM$GN&C#&FHTB&X5oSfwr8-s4qb@~PRzXyB7 z;@TJMbD-xw4~G9N70KEDU6uW-Mii~UD-A06In+81*thwLO4{Ut4$;e$Y`{C)Pyq=) zY#KGkL&oTgY?EIpaA^8|5NyXHn_d;CMJMx(2npV`Jf@GRiUL+Z(QHRnS~4 zcx*}6$W|1qxiq076odn@{IUT2#Ex_p40b%hp2k!yck@pDT5DWWfE=>H)KzK^Bfz?$L|Vs$(D2CaeECDlRY zvR76j^5NmMN~}woj^mT&Xs=zj;*+Qp6XxK4_L~qgc)51<_I8pq5}mL&6opMXW|h*U zBou!y|8Xj3-l6uCLdj&#eWhJ+OAd&Et}ScGp6!FfC=}2yw-i3Gwq~-+MxJ622mlx0xG*O1#)zx zKwCrRg-HF#CED}-Q&r}yaKv+865n6?oOrNxWv3waDD78QKnAUc^FcU|JeQ=77>xMm zFjS~8tL^((2>JtiPp)5MZ+Gszc<`e;%YL{5_JZRq3vez8uj3`-tEqr|q)ADbp^~YR zprcV2IHbC2emL$WqPC(_ftGD0TtgEEJkJiyU|`I%K0hvIMQ4v)4JF;qoAT1PfxFB3 z;>0*~k2D*eSL_+mEO)v4=-YqS!=;C3Nd$iu_OOyT013A&lSpV#0sqc1cFd>TN)wpH z!N#J%pQsU#LG&82v#r>@TxLaKr<>`+LQ%hJ2hq$O;{}cA0E&h3;{2{I*H%I56K4$_ z3a8Ou^Kb~;9X$;z?&V*Aa$L5gYYO9-L3dA06{i~xxoiagjqP`Rfxb`A(08q2G+P)= zh79GekEhr_HtZ5+`Ht-G?khb29vo8G!wYnCCoqGXYOEAchd~9D4gKC+p(lK-(rjEc z5^Wiqkf=f9*k4=&in|)&jJ2AIAyMqKpnHnzqsjZyB?(M@=PHJiFX7<)euW5D1&_(= z_I)94w13$YWHA@H=|`&jcr`-}8vI3)51ax2^l2JvQYnj!Q>R8rHuJfHU&DxXmFx?8U~-jj!BSrz?W zadB})XZ{SDb;X6kqp1yeeZc9%jX$?NBfl#0!#B*VlpO*8QHvB+^Umqy(HjNZ-*A0K ze6g@=AI#sh%?KM`bHA+Pr8Y(TB^&ypv&*aIwl}lpM^~J$K)$ z<)CC3LPeP_IMB?zd6MuxS1DKhJv#&cmTAa@n$=<6*`GBe(^IgedmC8W5CM$;@O!I{ z30l~lMFqY`U*M?V!a~R5Xs@STPW50G-8nO~(~w}4@5MGfv}FK zknY5UhO_QwT@cersUrRsjs!cIyxVaj_$`v|l+@~;rek)=8#0m-INGlslcZ`rC92N# z>t@4BU#b$2EcG)aZZG<#wh(0fuaOjzgnE?i@Sew!5!IRpsc6UCS9>M}iv7`ITEEVt z6rt?|x%ysN?rR`_QgBGirubhy4g8W(=Ya_Gp|7zaK}}XSn_a)f&%cbvQp;|m2Y(Bz zsMpRe?xWK=>JL8@ZWR4Cn;223hs|CY{ovbxq9^RK>7NNpj>4q9Pw03uzV(k7`iB<+ z*(7(%eAYy0KVvBKe;(9-Nw@z}(dt(7wo_R^`{+Jj>zX(Wjtv4!@yi2SCk+yXT_yJu zfHPh*5{8BcFMn=uU!h%zy?(G3%JXYcp^<2AF+;5IUmViX76brmS7uLc%WylF%*EC- zUoZ%puAVGKJ;;YLzHL0}v2~8b5PdjNxIb<>PVpYCZ(XfBUe)sX+#Uff67CHmJJC#c zQwq64rxc2N5yN&TFHNfhYAJ%;BK@lo9{c1suv+(Ag!69^l) z3EX|5eu}`jwU?;kIUhvgAr6U+m{Ldcng}d}>A4&2}p;eeC0{uT@%~5MxG~pKcx~g#$}n zZMo1n=kL_Uj=e}cBEW$r0beY`n*#%9K~+tIZFXfVnKq;_2Z5xmv$kc!eG!JAH?iwH zBQn2E*mqESkwnN&(MgrPfh~KS@6;vD?qa6PC^g#7Nw-*zrO4~3jQJIXv<;+rEA)?72#!Wfqf-TG3= zy|xcpRvZI+L8f)$!w)({^I+x&jhT*4?dBw^{7v6V!tgqYNY*&Ju`wvbeyB%q&(#;@ zOt@}ieXU5zv?~M%SX)VZrBJwmJN(A(Tw)UJlV*=gvjT0SOd1Pp9c-u!EP>}cg4>)**Rln<8&(VpnN(c+V_HG4oS=}2B?d9_*@Dr*uPv1F$=2;Nn*3!kNIkCd8*GPja> zd34W&WTFBz@+{)U?Ge47r)*e?Kh>4JEcr8W=+!pHoa(ZXxYj^R=x`;$oSq7OJ8gk- zCP~>tliT&yN{-Wh9t)9O%@YAO(${r|Su;y+`C&gv)lC|nHwX7y2u{J%j=rEz&bVOlNPAU-{bzD0o_0#bCFVYO}0-aZ{MhMWtQ%ok-*Ovh?ck*ZBqJ%J0qD z8l$aS$UPXwNs&y$dhKOSaSFpeNT}zNZ*$VbT06}01`3hij0pQ~s$RNx` zhBRj>T936sJ~p7~@n5(_&sid^9n85`({D3m?bT&|ah}f`cF-`!amJ0}n!a1WC>WNSSaY4$lq(qU0IHjWeMQOBzmejmT-KY^c)oT1gvsDs|Oxx(^d@z7k z+!XtZ!~bf}Dr-%4A86)yV8JM!@T-$`k`TH-$h>f7&VNBFtHO?y#2zL0r3l>m$LWzH|8~Lwa=Ch&{sMP)hzE zH$;>8fD*n0lu&;D7+x1#ocfXQJ*E>>`=$eb0L5Z~KN{q|GsVj#k?C#1#Fj4OojI6J{l%_239P zG~8{WN-jq?+J;3 z$j#~tfb-&X-z+oQcuBgA&Iyk{vZi?+^eTkvnAEr!a~rfUhV9-M5Xq`Q<_QG%;-fn} zhiUQQ87ut2m7b=`2|SWKHTQ}~XX)~T(wDc7A{>OAC)|>Se6r#aDVVgokhTgAWq(3N z4zs1G!A^98wO2E{Vc;A4OluJgXgry!A4z^XUY5i{tvq)nd!^HgV>PH-lIetaEhO~C zB?h$kaNmRbTJGG$+9N~+SSJ*1!@e3e;hzQEn{?Kws{@EQa z_X_8EjSl<4ef;CAMx?J~=8|311$0Zl+meAjP5T+?VZfk)R`|Ej!ChS)y0%2~`u^QX zy6rIs3WuS?OO~Z02h+1w<=&A|+2TV(6|Sfa5qQs{$_7MTZgbOWYFmx; zz5*;q=keXsx&?egRxY;iN`2)s_We`d(@jG4E5(;qk>9QZkB=g!2qLGk16SS!Zxjyq zrVjTQ4$j$ZwspI@rGq#e;l1el72IPBHMHt$4Lb0q?bwqJtTGcD?mE_EI~6qy>Ia-U zRBqq0s(GIp9Py$U>CbW|8dR_7du4rKrCsW;_4;PvY+BvhN#?ifn0kq%L(dc4ztZC1 zz2KxSw6)Q88od^ztsUnGY)w=agnbWbLsL9_(5Ut{t`ef^^*uW0SBUmS_Vc~zcw(=O z{80D+Em;nofA>T5{fV*YOQ&%Lwcfq{Jy2~1c`Dd`yP#+v0NX|>oed=SodxojEG>x; z0U*AuV61G$m^b*x$G_-EqWi@izduQt)hFv^`OoC+e=}b9zwI~rn`}2%5Udmwqejc_drdikXzNA}Db7Cx+m9_KN44M_&Qqb~I4OIgkk=Wkv{a{4i_7bLt z8137}Ug{Q~j@eo+F+Y63bMIH^ezhtXUHS##Rfj%KE{AY7u3rOa4qr}^R1#J@pMbh; zPZS({A$J8Fx~>qA!V~OBp}@E|ZE|1#Nh|upb9F1}aUK6?MW0PLwEuZ1GJ!?(LpUXO4ghJiSR4%O~_Jw?m3=%F1c@SYsx@|PkMrIsl?L- z96@6|UPJw8_$6rL+tkwF_%&2%qKbXaUNzsokbxU}_096sZp7UfgP~!uleD4rsaHK^ zw0aeOBS1&>g3Yd`9W9eO&Yc@|Ob+&{QJ6kNk60puL$^75yo)Mkw@5z;v7C=u1YcF} zVJbbKr%Qs#aM3-7U7OJCwvhaXbRo;4#gx8~ z>Fh92yU)lj=fX0bu#fIYY_H{hE|4Vmct|WRvs{E{QnHm=UfQep1}m;;*lfX~J7*I& zXWt0uKtWDH;b#0jy=r6aI-PKf9N_L5F7bdd9>Ta*^A)?gp~oy-y1uf5wYF8p=K($N zGU7x+qH9vVzMOS^5xZXdjX&(%sc&9wbNb$Qo7#YD@IbDE6q%1Nf!9*G#Tv^a@RGct zfIC&27+n78+dV(3%e~r!UGNlgHl321uGgO5)7m--hu&PKUfKdVuw6GZvRwD#D?B6G zc?O|026EkbM$n9IcA-PbXlgxaf8H)d$e!w0WvDWsF^0&uC{cl2ozX{x(}ChNsPKZjyDck>17PkEABSAluyscyP#Gz$g?P--@0 zOwcw9t?$9?gPw;X>(DT4aa1FG%Z$U0gK)VJ~ zZBZUN@5HichwHuDOt`;@9AD9l7YX#jesvZ%H}g=3fqRE#`+(Ooi|mpRvxPW5VeWB6QYGk#P;HT=Tp^FS zh97`u`^BYw5vK}N#?O{q?eCnQ{|Z&io^Q2VP0-o)^NQYME%HzL;_X9%W77D4$pcDT6zCxN8xb8TfPeu)rT^ zZ)|n0pl=97kOU-{*JfZrS7~8~sL6d~4b|bWUj8I&gYjgzB>Nv#-*LjOa*bq;uERr5 zu##zVr)Tq*1@>JBsDZ^Oetba1FK-(L8N5g*6IMe=B_qnlE0K*uk>GGBRQ!bNZVJzb z?|LhOwUrRD56Qwf38+z8oj{ycLJ+BjRqS^USn+oQ_MR#adNGPnD6LDDsma<&B+?lSB!zO1RzEU9TXu@pZcuBUo8`!clghH0{%E} zA4qEYrq6A+8lMjQzYr<@DGvVG_T|-b1$r{!e^#;N$ z3@oWAKoTCIOE$C~?hCUKJ>|zX!V`Fp1+kgeb#u7yPAujlA08rTI1!)Ig}2FKR`+5C z^V`kYnkx{qTaxG(LoBnlNrp+gz#Vd7&PbSwby*|Ea4mG@X)K%awrT?{LX4o0-yJ*H zoqZ`7Fft3(6B4oGbZabHIW`a;bp%0+a(TUsAcf{<(TT5|{sp$d?>_yJUUL>e&rZ8~bJcc-M8Yx?||?dT{H`L3iIB zI~lg?un50(=)xbP#^TnX-dSLSfC% z?y{%2GAXUy;;#7W*-y18&`)@2_Ono17y$;`11kc~o3boz#t!3=<<3xG&>J3sp% zZ~KH`WkwjY3AxtE{^Blp^g4UBL(Jl@U&Xh~u>%Z?H z(aq`tP?<=XQ5p64-@jO(fSrptZ?|5P5%Bk-+v3gq$yz#Npw{ z{*0+6H&#z-Y%}bnTB!$oIffB4=)_muH0*fB3Kur|67L<$s71PlSyIq6BTu#|7!$zWFfva=KLi{9EsG#M0f6b^w%^So&l)69FE=5;o zU%yWx$o1Li@n2NC{@OG8x0bEHD4z-Xf7(0-w_d2|JuMVL-rXC{1?xxixRy&i5#wnm zX3a9ANH@|Nt}bOeMyO#tXF_KWa}u}OyGH^V*r_?L3y9!p$O?r}Ou}`whb^Vm=4aDo z3MCd{t#Qpr!m1CCYDt%b>=NI}*A)(%H237x6fFVR0@V-%NZ)__By+|+RGNWl5#s9# z=5vA)v0Fml^@f062KyamVUle04bS<>!e5C~-gBgJnAR6-eG3lBD*=B$M=$1b#@i$9 zvt7>PS~nNZWJ;`X2kPP|dvPfuS&ZiQB&>#o=F<(O>u~kpTsUw3Eb)=F9$x=)K6zdX zF?1r>yxoP-1Y@fnp%-pUEM>(V*qD97CAA)ZQ_$Z}Y!wnR}L{w$DT=+G9NBFYr7RasdGoleDgs}1?;?70bPuvM6QnGjoL~~<#ZW<6p zb|``IU*l_1O{j!O!5ZNFU=mF3YVD30UXdz>v)oVr)m)vXGH(5jTUl5SAV zvtuiP74^HS1{5=M+PWYz23i2xLIrxP?F>CtcLh(vYt2PezrUi;z$Di7B7pyKs>kQ| z_1hsaUtkD2_B$v`!}M|RG;^1K>TVysCJrrzu@sih{i=!g{G)cL-JEd%z>}`40-?tk z<{OsA^b_0kqsMy;obEmtx{N6A2r};|(<8b}b-U?;erKY1O7qn9(gcm~;l)79ITk%e z32ygMq8rQ|PG%P?=2v-gTao289arSl;CHcM|K_bR^VZ@BhTi7VI&6-|h-rMW8_Ij_9 zY!lFsXs!ELs*l+7yAe(g-+$>^(7#d|;QY*5;Bo$|R?Yua<^D_PtJZ*ZQ(3Zq7k_C} zuZ)aW6RH~s0*8a*Mf{1mCyImwVgTT+Bh^OYP@}J;F~6};--N{Mlw2K<%N%fL8yd7e zCATMGk7dhKK~}Ral@&%_I$5(`FKKF-Ta-QHTQ9K=gMXW9@0^vQ1@A#`I$}J^O6O$$ z7*F3gqUX7X^RsTC0YZ^a*`XTQOL=)wL@o&~ebLJsdWF<=X! z5K<1bRI18sxEoqpex^T^1;XXNVRsQadvc-Dy0`X4h$3H-jyc2svQSn=O!ArROcYr@X^UV=3 z%dRK69?K0z#B(aJ7lCiF*pbX@v(_t4@rpEr-WS3Eb-35>16vT&RmT&j`&;D`z69St zw=c3j1Ari}W69qo?`xBHa&Nv?{8k6ugLs#<_vQ6_dva}lxKZHgw*W z1U&*hR(z8OId+tN4GCwL)nTxoK}{nLNrK|R+qgnxapDkO8M1O>L2njMh@NpWe0Jm7 ziz>#6T`_;LtE$&`#T$u7qG(n|3?oPBuaEbxZzF+n!L5&7jkf1zoL$b897HBruOHxD zPLwfu7*NV8&5}8N!sj;Z3{4qA7SA#xPm#fu7&4sM3y5HR>3QI(r%RVL0-Kf7qK|n zpr_W07UWt7_vP_9_PNEy`Wj6ct%IR|FK0@au@+dTWzEP@>aSI&((h|2xJr}fVPsh~ z=gRJ907oN&X)T0G(vQSCwog9jzjg=h$#R1$s$3t9Ce?xom!=?KomwWd( z*bgTGYsXeh2b-(oNt2;QIG|p1;T7ZlsIYu(R{qbnwfBY8Gg%X5MR84S`*G#9bGLQL zi!t&7dT0ED?s~X|>a@(M+%CD?Eaez=CuCA6>{_I)d9LEU1;nqSu^j0+0Z@8+jVDZu zI{ID*4)NM@Ll>}ttp>o5>|QVEbML+&Z4tBFUu880@RZf;{4LsF)soeX00J2kGj8;x zpf$|8VCtx1eJ0M+Kf2v&gI#xQU<2LQ0b5(EYaN~5b)}u1ws!KKu|#~*uLc@*3%^oC z#{d-eEGbgtL&rCmOw<0h+4dVQDuQohnMRK{tV$Z<@4r@!xAh^+=< zm`R!CfX!?;_gBw#cPx`9&%%v&cu!*p`aQuH1`ERvC%#fjw~IKtg@5kMhlUUzNGMj4 zE2Cq3ytJaN;jGG@YvApJii8hV#S9HiENA2{?67MjLqjHQM3<(%2_jNWp-r@qPN6}{ z>6~>2(P$77N~sz+I)=mJ3lx@N3#6{s_=Vn{gPtAP)OUl6Nd0>neloF;{{J!dPC=ps z&ARs3wr7oP+gxMYwr$(CZQEL7+qTU!-#$C`&x>tTu(~?DE)gA3MznAZg$I$B^_+NsQdeGn#bxSZfkslPFG1REAVGtqnt!He zPU$}FzMaHbAy-!;4FQx*H@I!G4B6!(wvMq0O)|Agy>Ub^;V7P&d;?i_5Tm|G-d+Dh zxnYSHh6;bWvBfCT%9ygTNW!McD06d&>@ou>gkFJ)ynW3b%S-6fKEP2!OacbXjZQB7-{!7lzTjsz{qZgsyec&^H9!Pdc zdyvTIXe+o`l(+9`YU6EvJ>AGc-|uwL%QVe2T?GW&B4UwDWCEXUD7`cyi`>g>^HDV` zoMl>|WI>|z3NfRiqomu-xv45mrAT#oQW>}%NI-rHWfZp~&owXB{+x>g==VmYw;#pJ5Zr<2aO$G4XjgacEt zxq}I>wNS>An|4*+=ta5XpVCpirsjKg)-CArWao(3-ZsdXVxuADl|wF1 zMkvFn?;}MPiQJstb8d`NKH)sfiw5Hq#P%sS1?TNzMu zpkObHB%`6$s4GFz)kGnVXww6NyymhLU?}tD{~6)X zZEknZa_r&oz|S>&CSAD}iLlOSycvLo|Jbl7C20O~P9!hCs?7~5ZQ(o3_P0g)UjJUW z^@YAr(jDmaAu@Bz3E>EwrvNdLXGLf#sXtVAXp6}$E*+Z=gxMffvtpAQ60Oh-bXZh~ z=ByIoSz$dOedekI?X)L)*2jKMOgIX!t3-;~Py04LW!)4@48x-+Oxk516&Mr2J4&7Y zfaTWPEqx4DukTQO_(TXv(B01#dF!L51X~2UCL%<0+}SyV@R{Y23kO47ez*+aqRmYso~0aO{zvsqD7U znRbuP`S9MDGCoFkKMwx1HTn#Cbq~rNZ8kg&mu4!1eVfUv0Ws|}pjFV=z^CL11nVbe zmE8>@oP4v1jP1d`Jss=@-j3^CaW)E@QaPIH!gX6p_DF3QjJrPJdFQE?=nKK|6`=cU*~G($wFc;A$f=pdsb=m@t!R+n=Hr}QvnaY@{eITwTW zsD}>xc$G9CvQiI@J}Y4EIUMMXG*aCV^96R9%DGAEeVQV~{>QaYRn$Ig{qY~hbzJDJ z%p1b{k$wzcOyIrwCQYnC-1=1>X`n;Q4xo;~4`Z+MCq(EG>@zxp(!M^FoITSdxo38o zFTM{}agrC857^C#S(L^(BCEqEUv=4ADs8h$43^s~*(t@9 zo^O16pJp3Adu#%2%#^p)vsua!dFDofP%jo_rr!x6k$>R_rZgCDM@VDr(Lv84#d}AR zP9=5J$CRV}jrm+W{$0*+N*vp(3+hLYa%}!RvxZO)<|QxW!Um)L-AAR&0B3YdoGp~+ zI~gsnud>?{-AJW;ZNmVL&R67JM=QAwg)7tt=lS$5Zb0JdOn-GiZDDug_QIm_jdg_E zg|{@KZg(%mel1%D;Ry9JytvR9_I+?v0_G-bbWE5#RyKj}7r(rb`6GfjL0Y&iaXGYB41xdG@J@=2>V2Ax7Dy%OrX$HaLBH|UbU=n`E{9~3GC z$c`y^DFnPGg**qU3A$U}+K)fT2WH+udL?vJA3x;(xe!6+FdtJ;!E2y1;F_W0&mC0x z?Am^T!q1kq-0dB&a}x&sVc9+b5d%A-?Js-<6+8vqz9KG8CMQP)_(2$_(+iIL>yC`A z)s`FjbU=u}3Ps?h{@MfB>pwcZU>Be}L}xG0p~qx;KJ|bEqr23u%P~-E9&1*pcI_d< z@zVbTW8NDz>d4)4?1mvc0Mmiq$f4dhqSkk;D*i#un_7v~a=3b`q4$xBZvQ3)i0&H` zx%=Q&uzF@4>HKOHzd-84fX=3kpGk=w6mMH=+)}45oC4w*JDzz_@c(dzA zwmLIP`Z~Q0sB4$!+K11*%B2SaZ*O`*QLQAp0;{8K2m+BvSw&Q5yE~5Fq=Ec@hjIVO z*v*3aed2z}(f9B8KhXdGKRmm{ZLN&{yXjbak^ydj9wvB?r}P%$uZN#ZSTHs{SIx$+ z=|coAx!`7Yg@M`a`He5rJT5rcbp#Ew#{hvk5*3|%&JeHs?Avl$i9d2!?s4C4p~H1N z#`|x`!I%R@n?*#0Ac~@J^0V98chq<*h}(>on9|a^ZQ3YXG^XJg-01V*dl&Bk*00{p z$0O5@x#F$Z8T9Smn?e7-icJ6Uhm#*h!6p_10LZNX{6CWkI2k(_8rwOE|Jqpm??UU9 zH?)`1Qufacar)#TU=TwkJ1hMf{zo$m;Wi2pqf<3u82j^9!x)$l`eJX>Y?Q$3#t=P zK(R?MD8NS6xpW*<>cZ*8BUx`O_97*1CWotGhzilrK@JvVrLvzl*D{dN&uk%SYg(ao z1=mV>6OVYYCEz`~xr3)-5-$M0;#-FJR6dZ`Hj_DD5m)FbjS|OvZQ9x6 zb(~87r|MFOo27RCp?% z(5rfNa*(4*)%VXExwoIA6E$gdkU=wXg9+8V04ItTn^e zJXD|=S845VBNSQrDl2mRPYShJcEx3QhYgi1*fJyPfxQzs&KbsWQX zf-lqD0%Vh1-+g)y(D$CUetGk(Oz!)W)Tv3;j>Mt6m0t>}sQGLcNHmmnzcdGM6n43a zD>%&FVK*01(C!#H9{JJ{Pji*USjPULB$m5>{|1KZf?3htjGP>9(BR?isnk2@QxWD} zljDcyX($Vyme&GH-c6}#LOr+SJ>Him=G^3L4OwPcgkQN_J{pCJXyN*pkE+PsqciHq zcnaQ~T`}38K}ynw_ik?s0}3wGuafJ_56QWDDjxeIM3w*Q*L5fOC-bzzgrRQGpfi&omT zQwmn?*R#fYD!{n;FFFm15goqzi>3Tt!~9>a_K<8j4?7Mv$6~T0iNZ-JwFJx~9gfR5 z?8-kiJT_#9E_3Ccnugptq$EU!i(l-P+BOy#kgd1AArEOe*iF|Frr4RT*lDarSQt|}5MHFn zvy~#zx`0a#G-CYj_K1_%Qh3}rzmwH*l^B>PQ_F~P`jCIsnFwX=)S6c6=$K)Y(X6L(?cvL$su-+7bOsNxh@- zM3oFhr$JTZewZH=pyC-i6*xslJdS=ts!YABpgm?~<}^N^i$Bh| zzk+m-jDq>#Z;Yom=FfiSs8rs|%e$nIqLi4)^>a6do|B? z=zY0FGCS?-hOr;vjpr>N9VeqYm#u8f&9;};w&&;TEe*lhF^HU}_b$>O|4w&KRqt5r z`~UMbn)jWrbyK)@aDF2MMi!W=Z)5Da_5;uUAu(GB)+qxZL!pL|F z70r<_jqXa8uw{y`$~yrY>lf`6z~4c-K8f&>S+i@8*xW9_C|CqDxtX)Ae%vX^go{UE zJae7&b6RZTZ8^U69V_CypS6m>8T)sC4i@+rzd_2ZS<%aK=xjlqO{}>}ZW+ziM3}0< zTd?3X@nK_)O(Y;`naa^QJeix4nrdmCf!w&YdPOwjNOxxk9_%t-3+I6&-P4~>VCTgJJ|-SJJxCbcmA$E9FSWU5xa zi&m*JG`aE04{3sd=*=1F;Ckn96bg)BDQspdnE zLq~R=FR$;)HeQC$#tf!vdxQbWjH~R9C#s$To^{(iewW&_z3M+xm=0yz040)prAGdw zG2Tdugnzkr>>h9Xd~0WRVi&Wo1z7yD?%v=?R#z5Jp4;N=(^G`Dd2tm}IBI3$Fp?3g zEo|nu1lVZxY}eRM9|rJj4lT;mohhw$L`hCBH%OTr93-NNo4y?0kujch!g1KI-b^Q#NB z`}x~tpV%t#npKf%cCPN6f@f-2U);*tT(|pdxQsP^8X3<3?3l?@0s>!WL=$1@^bxyavMYbrc-uyq z9rQRZ%g}*nvE9#R@wHfU)e83j86jKC$m||fpiQVEwk|7MR%tBr+~NT^6{Qnr_T10@ zSP>@Y$;X8aZO!>Sa*HEmlmGZxtn7gF{H=c5vOspY4{t`R&QBf_qu6Yhn;TQv*gq!S zQl?XQjya~0Tbvwc=Fu3P+*G+VPx z*x~ePruDF4XflnGW-jf`#rCiB6up`Ga1}q=;uq@ad-sae8>32EZ>*MPnNIh{;f&CnjkW&taRDV7S@5rhGW1qv)?FuDstB z>Ua7u5?Gr~YhuDjzY}NfwGu6gx8Zx>{l1Q%zR%bb zS{o^uN>iym+pV|8C~y{EN&-mbjpS2t@T`oTQ+Nw>q)4l~XIw^<)0d=Lw2)0mp-3Ex z58%@AQh90m52bvdq8fQFH%W$#?-06n3DrCxLA6@L7#TBw5hi?Nh*$vaZFhmR1ft_{ z;FfbLTLj(a*1hsIUp=`6%JvYsX^ir!0Du&_ekSVMYl;G2T_m?=ZAeMLMhNWNlrB|< zOGKt5jkLsa#+}G~3_sEf&j((o>#IFwn|tH`NWjV@+q zt{2XfUwEV}K~4~ndCE-jT-vC%vM!j-gSC1w^?yDnv3(j8=fP`lbY1J6kQinj{>&JQ zx-6Z(4$jS3$;fzyVd6oHn8I}=k2+aC7eTJ|XWbr9dm0Jem*1DnB+Gp7lK8nz`4I2w z*1DngER9fcPmz8rwPQS1rY+~}-@%^@$Vqr)jRE^D;A?=txWghp)_CiD0s0k=UOE56 zG)=7y_l%QoY*vR2;_jDG-WIavio73)eo{}wtlq=57XRwaz}7){rC8z1xrXqvKQl0$ zX$Xeaa#ooOsgZDz8q;pB*X)ZkFw&LR(MP_*z{32RAI7Rr*lCGBaMYnwRpbq^PrZxo zVMa1gB+V9LsxDw!j_8H$0efpi+^U$M2iYm0*~4?3TNpN}kM=x#ILc%r!?qPwjc{bk zUM>Y`qQ3RC4^C@0+iHG3Hc2@ngfo6A*IAlN*jII4f0Z{#6oUj=^i$TNE_2zeEhb=^ z!&liuVYYl!1!g}9N##BsabqLrj;8NICn+Nr?X#X=t9S=y6n`FzuUb>YPllq5{kqQ9 zYS6Y;Yv|4zm$8X9=MN<+(t0$1Ok0R&sKR-283sUFSXow#v;T*Y2sTWCNQ?8I^Q!XM9ql0(} z)|exTWJf4u6^**BZa7z)NkJ$*Q&NpzPJm{p5K|BHS3-+Uk#y@9W}!nm)b9*&5TqF zxWASzDFOD4tL7OG47!^_7XHQfxVNo+*dQ+*8&3F8jS)p0LHRuWkD@9<4#8X=dQp@b& zd@xwlMUs`xeG{|r30PjOoyp356gF^Yjlrk|k>hjF`mr1rbUo~*%2FMY7$Y_LPo#-7 zA^s~JJ3K-D=SY|#SMjK35JuhZJ#eTIospJ~vl26RuV&q!tm6^~=Hsc$i6~LKWv?cb>(l=|pap9&E33I?U zo?x}n(KCW0@A)sAa6?mV@KER&HhM8$iO5y{@r;OfEx&eckn%JM7mFM&%e;Ywpg^WM zYV)i|8}98z5$n2yrSYAq8RkmljF^C(pfHTRzeyN0i_qn+BnrKV$0MvojPVD>tq0V1 z*BCfr;L=}w0Z+mb4?#9%@bUFm?qY7riC(^z;8m}+)M8<4q8Y84J3+(ogQjN+&OhW9 zSw@0jYs_#E!E$C)P^LoBCbK4sE@Wekkc=Bph1u{#)}<;a4n&d|EMj6qIJjVrQlXvb z|85K&Vd^;wSS2vc6Qh*-G**cV6W|G1%~N>;dc;-DSrIGaL{#4M>!d~L-t9R-l6}kv zKRqV&Gt`qUIV5$rReqgv0JqMSUtvKhisz2nd;8B?T;&jv;{GR)76gq<7;&R~>_%*zXRX)R(;P)nB$|r>8za_-A^FK~2 z#}vtEifiY-=(SOce*COZ2AUn6+gxfO{{+*16IqhE8(m3tV84Q`CrYT^3KY4x{Q5b^ z4wl;R_1K+19|$;pFbFd{s}_B|dZ?l78#9|)`KJzo%vRcVtKh@yCnY+h)l5jcM|{i7 zGBsHU87n^{mt7nFgN~WMD}3DAI7_&^v24cSC~PL4f%b^dIkadE^8L~kke#20UkPZNQ)20{)A6A>jX?$uEw|$_P;cCsTa8fKUIN~` zeTkJ6Q9r}z2FK>6)s9wo{0C$r-8!Gm{xufrbP5ucZbYIF>V13C9ZNnFQD z=p7#k3AfXUy1fy&neY82-U@0wyUoBpHawCixE6d!_EPeTE9V$!5wL8$P;?OX=q3>} z(ios|PjaJR2urPy-w6UluhH9Ux zX+74+E!2^4ypU%QvN-ZuR$fvxP(iZxR6xN&E&gjYdUkNdQNaDT@Ec|$aUjOhEVbcK z10Q{<4WSd7t5tJNd%k^Z#D+)rGfnMo%PjLOFDdpE2cZ)&Fb~-br5dYp4>)%0M;L!j zwYorbdCO5LvKN1FKez9htPEsHm6rY=ibRtn@d6l*D-^W$9|iN$-DnA`MXLERs(Fe( zjAprGMPC6g=HkUv!zj%AYme^nLb?bGrxOO8Thu1AxcfLAnv+GIdoL_meAM@|d6Ok# zBD}bWppQZ1MTG@nG5tU0@=@;@LO+y}XRz|3wh`@*nhdeq=tlt{7}S@9e<#tIM2g7~ z97XEM2YW64b>niYiMVNVu+JwM4ze(J9}Orzy8VKXxX*h!fT)xeR~gik4<@M}5aqr--lX=ya07$V{6ysq3)>}n z7OaE*V&swh9hs$(7W<_`!lgzS7(CxU~gNYej^* z@Ec$i(9g`TgCnnkhS~rMwhsPXa{Ut_{f+!O=)5}U{5os7RW$NTLUJkpfsTB7GL++h z0VVP(aHxymfh@T+px~>Jf%klRcobHEVE24_e3TY!C~RSGZJ=P#yt+RqXaNJy{Q92x zb>4ET2q-Q1P@O1H&;t4bsPp(M%`nXj67M4*xcS{uL^^SbZu9T=pk z3#?0e-8UuG&y{+a7(}Mn2;^AW^wkHZ*n-VSeAV1zl4klf>a7>0-EG$hUSm>LrfCZ( ziYqrsVUI!~@6ik=3Z)nPbA)n$qmCE03mV5%l`56RrCq@dn3Z-gYE`o?8+Q00XGF!2 zeEZ`y+U4Inx{IuawTgEj`#4sQ(5AY49cdpnO&V-P{hQy><+#Jzmu$Yc`%8+3d$?MEsv1@3-An(P)Dbhqwy4PC1RR3TG^HQBQkeD-T1QS&&5v9 zvBjDc4o9^K;j+>|0%g!-CTPhG$(5vHEr?A4%63Xfkd?Uwdjc&#bUj6|KD*@h=NaL;W14 zsx_Qa+CwhllEzbX3QVyV)GNy^`)!KOdaILVcX8$?P51uxe1%Sjc1LD$yOibGc4?>3 zWypr>VY=0xlwtytUzXWgi4x6@sSt8%p#N@Dml<;EgV<*d>R%EKV7m?(j8=i@GX6r) z<8@+;dQBc7E!*pR&m2+eS!mBzYpYmKQ}7?-Q^{VZwNZZ=%tQ}S(?nb6_}KPq`A#Ep zGB_@)(@)a}^iA88?}GydnFawLSK^jmfkGBQ=QL89_u*l|l!Z!4#Fh`zLY_fIZQI{t z#9~MCe|~tyOmTs1SYgU;9Z@|2pZaJx>1@J9D%IhEZDRy0)zf$;2kJbQyZgB6%|P7` zX^I|CTeu-bhXD)kXEhG1nV8Ojp93Pn=xenLg>^iGJQVr`=D$*|3yBJpVWVAe${G`k8S zGe-bp9T`I9_Kpe{ej+^s&7vILES=S@tPZWqEDw=t@An&Jwff|n*FXE@OC223nRfM0 z^}@ZTh5^nOX3qUy(egvG%d*?pHv{`ZxId0?gNWKB0u#@54i*WyHR^v2-2#N3>HLHJ z9PpuQhZ=naD%o}3qX*&keAq$9f1!E{3=nP94-K|enhqO}^Xm!F@b`?QvWEv%{pqWG zjBv$P@p-J9X(q(e29%G8k{ZhdG<_*({DA)`Sh)`=aU5DlpRSG1zf3T;MA;}c9Oo* zYZ(=m+Map5t26mvT_U42Zhi7S=7}?+38hGl_+H`{!Jt)38OABF3BYwd-1?}zho&3Z z8Ivt|lyO8(EU(F;Yl{p7Hy+40<86k-u88Lvv>#BUPYu)O$;bz{&sT`_TyA*8h1qx= zO&=`b8xfEmv)m)vW^srnFCb6wK1*M5(!fU&=_?Aj7iAAtTmMk$zREKYmLIk=<0eL= z>@Yl_ZBCHv@Tp_O4%ju&cKC2^$@XMT&hvxtGl0HXuQVskn|7u(U22k(fd;NLF0V*Jre$~N@@;XMiM z^F+KTx)mjcTptC#n#)Np$}r~A{VUwAn*e_a z*5L0Wl-WU+HCf!ZU=*(#CtgPhr>1-lbej;aOd@m%nm0x5u5LOwL6*K`{*bP8MTG6~ z!M@gI2#lJuuSsCqwMFe7TIRGy&eVkzr6{S|H;mEdbacwpRj+1nY_`L~f$b5i;8alT zDtzMleoIC0#2)8yroStnxcGNt4VoR^P3q*u@F1x}#L)J6O!hp>owG2II`TQa-S;}q10B@oBQ#5KNH8rAQaLzlyO!-^o%08lnI?aX1!3EFxPJGh4{Ve_1oEUo{morNmj`h`Hc#C%Y`A60%iibovN)^QI32 z4Sn`=26keKC6*qyqU^ij93=tf;)pv;s?oTDxqz+!V zk&$A7!&7ZRCnF6{y!&+QejrrmUbSm5Y|n2N$aIf{`Wlm1K8b$C=1Di8^uAOt03&Z3 za_o?kJCuw^Li1xUs>nkTzy`{PKqRCF$-M(Qzc)%%k}rwN%VX7EFi_FcSG1iU{yxlR zs^9=s_*?QVc}$)$^g?^FMj=prgN0qg#G}2**$bZBL=qHq)SUoq0ASnsL^ZQK^X^U$X;io6$A1azG9X7^@?3)I!5Hur zB<_u+bwUr`FQa^`Fi1oBt_VJ4;XPOmn|3uf^@=n1avOx1GcaMIjzdFeL%wj?Rl*3i zE1{2nqWWc8?Zu{(4IzOWr1yfi%@e1*O{_ty!Qjk7+W*-eX8dv4l{G}2_|ycHvN_g; z_QDXNPR8s*lBTBFmfI&);SMWqz@)ETu97mO1DGt^EJG}CFzkvfZa{Z)sWK>60-W5W zq65$gBSD+otW=RU{ASYJ^`GgpuBDvCkXJ^yu_zZ5({Mge zTT*C7;D1q22HZpwqEW`!QR$XhI1(+mPxSSQT)9$h1@TNFO+tnrcSnDXl;BYQPeh=* z?U{~wInd^aDfe@&8n>4M`~={}@y8gq_kwdvtE$SP{Z+>%v(H8xu-|$os^EaHLbt)V z$(#&2+SewpgjJ-*s#E=h%vSDxV_aJVs?aVpD{KL3i6|bu2sk4(|5o~`@-x`wq@Sew zv`LqgZ1w2!VB0iJN47>Zt8*b04>07V8Ks~2nH*+rST4AZLJJEYD|~csGW~T@ zFU%JwK`8(2KfVHmJCEJ*muDFBCx$DqFs(xKv*|2UHRf}m6|>u%uBfdLj2w zcOGljlRsJSk~DBOpZ|@c#1nsl-lbtGk7-1=LvhnQ8Qc(6(9TCLV8vA9y?iRw0I3ui zRed09tAw4ANNi&0SHDeaMANptiW!RhdnbOX!G=JO*x>^FyVcw*138%j4Rty!FlvrR zUpGC#;T}OZOtV&2fPQeaflar?nxFsNA_Lr4d;gp5(Zx)8z!rv%peR&@bs_if)5+yy zK#K;Kpw^>i`MdA@doWNR4=~0eL!*uqlAvA%*<{ZkM$5C*w4?H?UkKP3=@{9N^Uws~ z3EjcPDZpGWE$evyyw1@RB41rOb?x*}Zdhl@%yR$BEv|&V)$G-=P)jM$JwPlE?j64J zcp!M=yw+!xxQ)*J`=Q9j(ua%F5^ocsOtci3&f&-Gd%i8J_SxYt-PpL0XCuqlaQm}b@Zcv+8bC8{N~cF! zr%pC}4AD=WWSrWhc5xv}pvUK%Bp&(hHv_=sKT#+=UgxM8;-jIA)D;fBy$S!BozAw> zfNqC+8#e7P2Gdo)eq;#O=}$WY$Ojk$OebLc8ygB2zyghNb zynV^IyeZq9p;^+}HVn|(3J=lVOp$C^O=TDAhQ4qbr@qYpdNNKOO|7oc%+?O#tLvxo zH4tx=XH4ug8>aStjnVolJKeQ}KMCv%fA#f~!=iQi3Hd2H8mGhEfqO^Vuvf#sn^@vM zvYhqbis-iUSVcwaD!6oZWHYBP%so{@9!+XkE-m!g5-wxqbc=tqpWpcJ0G*bqeoZ%_ zUI$TJoD=8KYN&j*>t(LsUUm`RamsK%0#>R5TS|KacUG!1KH<*lt=V3vdf=Zh?7g#>=`MFMM@J#CTdG~p8dhcZB zX;}07W2NM1RKlX|YN0#=w^5Ons9-Mx=Y}UaBU!TCEi&XRuG=BB{VQ4yalQm?0%E%W z=~;6VdTV@#Jqob}{E<+952G3(jevy*>;=09+{W_$h>rh=E3zv{LfcZ}8icD1=1Xuw zlM=_$OBp$>W9rJH%@2dD2^(4RbFW&vMgKi_dbV9Kv$EAh7Ke$#9Ae!RQG3^0!-y~& zK&-g2`SI4>;SDNw&IBjAfw+Z}K2-=fwkGH;3!5&}0X$S}jfAd2_vN+SS!bi#jvA;a zGS+1^fPJ0k?Z+-Hvl7TGP!9bdYaMh_<-(KA0fG=p2*23L##!zsR-Q@j=7noXW3NJ+ z0mGdQu{&|@*hs-$KVa!*pRb=Rx$^QIY}qZS`nwVy{npJZ52=u}dq`s|Fu)F_Ux0pK zH-SEv^J3{v-_1f~9c#4c=2GNDw8{$HY2^%6h9Q4{D|ecX)uN%t>+FgmOvF20gKA21 zUU+?^eM-%5%W4&Uhuv?O4dbzw?#Q;_qrueQkZ!}ok;flv&~4yu$|r-BccjqFKQt2~ z#F4Iu4xpQCyERb+k!VgeG&b!k1uYxGf*AIHqEdML+;?hITz-=RxfYyRO#44QPIC@i zw-fcJ1xG5os(sCUne|S0rUlCqN&Ct#Bq4Hlf5Mm5`ODRje2wVZ%w#ktm>KIP=Hss0 zGbV(nT-^5wwyHBGUSwB~xFYA5zTPl(EZ2rKQfE6*R?%2wsX~&fPk>o6s3x3xUI}H2 z!;#;8_bCewQS4db+X9XS@Y|JwdK)Qnj}-`}@(n0Q=eQ~3Oe@X7zG;VgMVdg=qI`i) zE?+gltBQnvH#lhq-2!DX)TiU_4&$e0gfFx?C<}oW8KismQBtU!rhIx9r>--;V9DU6 z7j7AvsizsNkEYRBHshfPKZnmuDuD$N0d2yYS_soHV=xJ$j9&)=6)Hp1ZFw6~E{$l< z)nb&dWjU-nS87FBg33Wv9@1ex{5PwlXv~Hg@N|tx4VT@u!QqBXpm;mLQEpHit9d=t zdQ1p0y!nH2f<3X`RQ1>vn!;EhGluqIk-C-i=Fae||2^vFmW#FTvJHlq>+S{7v{PLrFZYDSs^5slu|k z>|y5)KDeCkxOvBVv3mkH9i#;rlR$im_s!50S`hiz|GX9-xPlo={z%-Kx-v?~pEQ_J z4j4}y;OJrH&PbM?jZqjE&vA@V5LCfRrU%ElzdAQJq0HSMFnfM5P_hdSuaU?qoH-^D zYz-RyYr)SSKR8_d#z5s0O&%>fhFIc}h=fbD#+9M*RwAtf5Umtjo&zEj(hA}jvx0=u zfeNrofdC^gA~aSBOjgO}Hwi+Of1LqmL>GzIvKF+HdHny!J&Zg(^Dr3UdaEertL^mt z+^V-OnFd0qnPRNc9eu3 z|CG+^hwLEpwSlhR^wb`a(9KfY!CTC+Xxm+DPi+asO64L|S|!zT%bC`8Zh2$@bw( z9z*bngz3-8-cXzbY}W0NZ$7US0}VjbTWH^%g}OB*ne?Dt&jT}SN6fMje9O##Lo=(u zJhBeL-I#5tN>)kFKT>Ih!Uvt}fl&WKL&6^)ag!ZVTDY^MqwS8BW*I7pSf?^B>Sj~{ zwA8PSlH?6rt<-+6>&}_ITJi^CSF&2mZ&DYAL)>_QGE69RUXs zp)m#si!^Q{f@z(n0Jc6Yg;EJHIy^S#K%Wl?Y6S|;TA(Cf=_Fh=uU{w02$}MVenuH6 zT?4mqm;r!ml!>!wmB2kuns^P?14tp&5%9}})+oI7kmqPUi3^1EGoy4K51b%q`cqja zYg=(j(v{m&3LlStZ{1_VDb8%Ui`BfKX-_$k{d{NN3b*ss%q5)iRIQLIRbaY#PO2z$ zl09+xYcnq2!DeMWRYEk?uEMH;P7v7{cV*LrLmMYujOFy_?`(0^(4B^pV)kNefqUKz zV9?`$7w~D%$Ju{CP+lfySdDA2m8p?DQ3-Dl6H}2AyhI@xfphS6VeS5V_GwtJ=*t5D z)YS-ZgNQoCQmz#j;CiWsF|;wsQpD<}-W)SCX{aF!DSQTYB0)iU=g54T7lDc4{gYbs zKemGXvfUA*3SH;-&zc(E_K!j_W$-tPg$h6A*|Gm{jem2>^Pz9IOl$Cn-8jdAI++*E z=kDTi-sAcmv}{Kd?_2^ivlXz(%4@QD&#@$Q?2@Cg^RBj~e;ayhl|2rlmOHrVPANR% z)%75M-g^Ubic-_T|KE(LXy%s@ky8F|M)dywVMJq*|HFui|HFtv75IJ`k(rJ<{L1d8 zK-L=)%!e`a+kY{j(H%LwtfwYZ2KTSDo zUD0>fLaUcq`;OEcuyUWU1AKy^zkd{yqUglNUK?sYsDt$PNeIBfPh}krPrxyMqKKds zCWStGcP}OX;XseEXHzFc>FsBe4-g6C&*vlWN+%po`EE}DbL_;5Ov6tedWDg{4A;j! z1g0H+A{;i&iU~KIe6u^$Bi|c9U>BPsEhuRkT4i1A_YT7Y&)i}?)ZPjZ+u}>$A5xx? ze#(qK9fzE$yDNot&d!qIqwbno#MD{OYCOIt;l%6M{zFVpvE#x&(wBt6E3uetW%_a$ zGO7&srPy>TcCnGIo_BvLL!-Vx>1UVbP0vio%&;sMv}wGkZeKnrQ*GGxP@0UJ=g2iy zc}hx47T(A~0TmNDL)x%^ck_%PpP5ghAAByVJHT2mrfy#z6=9(rx*nLmQgKQB1)KGn zGw6JzDqd{s1-zjWQ282GkC2yc0g`e=M`_y25yToK3Fg2tT*1M#2<1)4P3;iY61Cz) zwc@3IV|m_$iO+*KOzghJX#vNanY?rkr_csi-s)1NnZqz0LRmttk?Br!pFJTDp(1$e z5o?cSW2Hm|emMxiPD&_q46l4N5&9n-kF^C!+X%*wC24zkGyeL8O-zbP+ z=D$!7*MFlRZHmr^{~)lk3VApw&oQhyOm4y-CWc-MRF+-$zc9h!Dv1L_f|LHXIDrGg zn$*GJ4^dFamLXJD)=K&=Dr%F;pK1QOU|Qhe%{oKi@srhwya%bP9pN+#^~Z`5R$q4E z`dY@w7Xp2-dE27mRlrCaAmP>_L!5u=X~nIeiCa*SHo(HO;lr&%hiLtVXoH4Y1PnC) z)JOhd07be88On-FgGN#$sK*npLPv5GG=L&*!A80W9pa8#1t2~S9`cG?wGp>MXz2w( zg62065T^zSzw#e?7Bu+yQ%@jn#YgNyL5vnK6cD$1WLi2zE^XzPmv#e|oX zGpDqCbl616c*U^kF>Uo-`;`Z&JY7j!V#J(Gbaf%_)Wu^tsVuwcL-kC2m!qM`i|H+M zu%lO;F-@G#|2$DDLMCAp^MCkH$V<+gR#9P(J+X^8$w5`$Db5qz*?=p0bDqzFIO^6w za>hvQLy;6m^@_WcBJf|dow8|*|41%eLw{SDoYAKV^Nv_{t>?cRyFj`OA$NSEoE3Ff z%{j%aZLStwBF%nvF*`Yp2TXd)H-Nnio8{hEZs_dOH7Ygo_$qB4Kw2S~S{>0mJb10D z*4T0$OVu{cH*50Tct~qeGxs~Aw#>ZCy>*`R7L64jDBt94#?AlHUaXhMO7o_kb5lVr zg9x`ikYYO-J^)UvB_A~mYcSco9>4wyF-BRkDUTdLYs?h_E`)OOJPpa&F`({E*d^l> z)R0U?{NVw1m{8pKZmH>uIwx3EmoFQ!{MU^A*K@X^;vb-tC@T6wtYA?&Jah0@qN&^9U`J>1;Hp9Eg(P)P zW4ODrGisb(Ui?D?SkfYh-K(@;+wjlyqun(z-2ArN{P546<9N0+Qa#Kp{)Cx|TU7P; z1-}N;iA+bysL3i%vcNa#xOCl}33fxij#6WAJO;X;*uonk(cX|^Nl}Ed0)q0N8d=S; zyR^~cD-Qmvx0?Is!~j4!2N?QDOFxPmA;t^$w$Co(&H$^>MzZ_&3mQ9on9uzNDx; z&0o!LQBN6b{C(lw!ZmO;;6a=0k22QKX$qfsBl4LE`2e3fVwBFDf?e50m#y84u&3%b z&|<&*A0)JQ&+-Nq8d8lp{Y4|QY-TGvQ^9h}f#azHY}dZ25slvo-r*IGf+YJ)_L}&m z9_p7VE&FU*Z9tcY*Cui@OjB>ha-qLFC2z(8y%4HyYl#gv=|P58{U^37IH_iM`_!4V z#XbgH^eDf1Ow-h45&RMq9ac}LQ#8EmnZb71)c&{o8-2>kB-Hh6FiBXKWw$<<=4_+dE=siDS$$x{mjrerU{7VIz&`h9Z#HtAqDm z2VlE+(cdR^Blq>&M$7C#s9+5(k@Y^ul&&oeVp3-5l%9*lr-`8x;5J4PyODu2<7$Pq zHXS!CKYA?}7_aDmG4_r@q6BS|=-9S-#iTb=R=*+Hc?&HHNM! zsPE#BP}@R>0i4OvegQTAg7VF?K~ujC6nGhE*%yba_@G!TeoSbdnX;>aiC-#A&Y}*o z1|Ls3R<8vE!f>#(Pn2MrTGy^Gu5IY> zMM3m}2MveNMB?W>xJ>f|*Rp=cv-`Z;@sdt(x@5f7ps!*EW@Kalug%F0(Tj!m{kd{+ z>)L>pRkj0{KDE-L_anmr0UrSDpX-3(kX}77T_(s*b2=|TdHuN=m(ZV0_uP@%ojQtl zCItsvnK`#iD@AU+;*B=W{L?rH|2Y7=M4iq>`w6nVQu$7>wj@RE?og22{Q$WkHDI>1 zSLMxdU4CHuLfKGkqr37~!riIF+j0ya*}IMP=Zm46!Tkj>VW$-Nl1(g7p;8*as|^rH zT^W1bDGM;xG><1huRalCCbL4(NDl0nPN?&$v;}CKLJHd(JUzdvnDyhbUI!bm9}c-p z*HD=~ZF$LXHS1z7AKl+fzLUEyn(=8SKA_wOq1~=iv$3pEt-$9yey=7ol5*1ZnK!Xt zJjJI?HKvh7mH0}C^GXUT057A&6PU1P{TLPml@82S#!(w<&sT!CPU~Y(M4~5OW(!&N zSaH{)fxy!+YOhUSWemDkic~cjrXJm&weip-8tzo z%Nb{c(b?ARnxL8h&X`g_R!rMfB;NqhHct@Lp!EV=@W=tYs{#zg%;meW4t1 z?z{wFZ=D_24X@w)-O=4kmQ-==1RfZ%!Frb$(~jBe+{pUh$V)Dv!huapvbo`KwO#vm zfjBJT_>vYXLc0FfOqICx$}Cv6mlHRJ&H!p6TJ(%ANgpoEW`c|Yi!4LJ_O)4=z zGxI>qeb3#Y)6+QEfO|4yT=)iG)YoE(Wv8BBD2}BUn=^d}!z*>A_VJM_2`_yo>rK}7 zI!yTCSOm)A4qoZ%gPlk3WAUVOyq>o#Nb59b;m`A|4=j8gw2G7a$+3h35yhZEN-&)UB znHv0R^2juO_2JJZwmrTq;{bo#^8B^!af304BZu}HUdH`Tku{Nqpmt9MiS6k?VE;%9 z@L_+|1HTS^ldoTe**BGHIP?AEaZK$E;g;G2_O;U%2A}xmUW`St8~rulx%$HK;M0aY z3*^`iHT|B@!fC+6`+zhlZD-#1Euvy&=lLc`DdbAYXZt$W`XmX}vQ{JD^=n)gFR zpTPr0q?sFD>d^fe!oR|0Ly3*9X<;U`lsvzJWHSaebnx%8Y~y^bi>EdYE@0k;em}we zmj4?&)fu2tIFpLeG!mqKd;>VSLzvN%)#X3b3z&@nzOO_5UT#s*f-flnLMvfJ$k+$0@*wmpjknGUo*~Dd4&3lLt1#L1Pq5)1iGt9p>obwV2@O! zRD=NhORa#~ZNacC?|*GMcgdh-LrT^QKGf>8?fFNt+Q^)r_PqnfCP&T`5%A^1L8>?-0XLaV`|Q2Cy(Ya* zocK9WUe%qV%3a=*ns02ux}Yy3_G;Koj_EbY=Wx4}8JuOWz!kCus;%b^B+AI(73JNK zZ4*Tq=diy(GoahWWZQ;&nKJsbxfxk@99Iio^_DcCPvG;EdO!pb~SpgaY)+n1I11b1YGV5*l9w#3uJfU?Y<#iLFFvCND4d=*7dC%rQdw| zYWWS~*1X4Ik-$pI4xQt;TyRmn74Pmqfd{E`0R}`WxMHhM2Y_p5BX4GEKPjaKJFxV5 z%dc|XUEsr31`Pflc*Qh*VHMyPTNA)^Q>f{M@Cpg=w%l!OzEcY`@djG}I+Qe53C5Mg zuU|WpixD*(^aqVTC4=OS)2nZY+N6&$1{peKDE|+dHIOZi3=;HgGff+6@2W+gjgiiQ z4S5%hf6l-S9NZktm6EcKkFT3t9U;o4)nkWF7p2BkhRk#)3ErQIsB2B$tuwXcJY9o? zvY_rkt9OU|mw(p!EfP1-c=~j0Fa1+15PGTjVV<>GAeXo@H!d!{#rz!h8qw8*7qdaj zU*f)hN+(uoJ-LE9JM8!O9JNP*d~~*Ir5nn)Ms<79{n=b}J2B%L*ae#E43sszqZ?`L z{lHsULaEVgL2KkL>+r=a)n8kC4HB`?Tz_X6g}Huk7fx>TtXF)9hds;!kuzrG1p8+@ zsB*&QzA-H>EIqclg-m>SSYGyC@Mb#d=yoIZ)r?O1sDI0DC>p72JQsh3g zqegUk-FO33X&P`hjJ z@9D`*t6$U|%3b)Rml$kY{py|}Y>Pkj#6K5cBp|iGxqkI+%{h?#jz5VHAU7@Ip3@5u zs=ez}HB)R-QV#S+Aei@ik8Eq5S8*G5DT$v+ujBp9B`A(@WS}-rgV`_8QbJ!j`oR z?$g)||DN%v|5{MHiN`uTOh?h7vn87`d3O4~9PDUX-F$Ab%Z6wLJEL3lrTz5MYX|ta zQ0Z&74&~OLD0q3fl;Eqd%_wK(`8PHt93&48|WW^WUA!~Gd?t-jb zQ#lu2-F>#`s8bEl3V8ady2C4Q^zO2oEUv+HDEuqv@EAzi#5vdej^Ep1T8(E)x68ZB zlihtIBVWy$#}6wdSG@!VZBGmJ4!DVmtW*hm5ilb>&Kc31;eL)GXKBL@v1zPmHNg1{ zq#2Ou0<>e@ng6Nr73w(9>i_f0DGj0;ArFOy`Rf6{0NBNJe+`fNh%2%yNJiOKWE+Gn z_2Wx$LX-Z1rI#{tUd7avO_d)6Q4>C}?B!mzeuehx`{LPj!OFy58B!D`26K#YQ%vbz zWep|5VhFbC#OB9eb&uOC-#Y1+;0EdxPV`*LYuA#Xw<=(|K==1pvOO61-RvO0`Pwoa z*=od4Nr9;@s}bbuB7ZkxX_bjkYJs}{16gyol{^!ccnSa%|EIvKjckl{*%5SSALfBl4z-$8bEz^STID%z^fHFZeURT_<+Zw9wNS{(Cab&vGr_Lg zfV#q*7hWG(zhd3nidsege)|(f<4EkeGom%;%S6&hcD2*8?3HsRFs zMl78lg#6-jKvi&zY|9YW7I?^u)28g-Sxb_0D*t;d&yajzj)ywhxWo+XhrYiOP>Ro0G} zK_lLAwH)qgUJUKbmQqocsB}=3hrFK!_roS39c>&bPyhgAzXG@aKdg!Wm-hcR z&7m%JNOx@&)NeaRCOQuvjf`TFkoh8zH0$g@`8duccOq})fe~kA4=>)DJ!DQaDb(CWg&?cL61lTiW?tgbmkFEP zr8|yI0>I6(1NO~7sJ^-b=*A~esKFehV#6-d`icY9oVEjmxB}i9{hc~3*XsVYyRvVu z6`{4L#K9fTn=!Q)$_{c2=$lkpJF^^jG8|sHu^)H-);?0Q-da%avEJTl13_4LNaQeX z*)+3AE$>SC%EqIyX+g5&2{0rtq&imYnEw`~GdeD3JSPbAdYIqDuKxK1ehKJ9*$jb&}uUd#|el?Uur_%T}+*>&e zLltXqVQp9sv=ugu;D@EzlIuWPj;3qw{%x{joI4;VZE<3UPDgW&#I{#kmFHPQ1tK>S zdx5G>3q@`U5Ed_&p-PP9ZwF%%F3wsrayqge?wY$PGNj_cnx;=YL>3`IQXP*sinA4q z@zB|1AIw{)x(sVeH4x7HeU#FV!EM}X20{lt5vlP|C^zWvuiZLpJ)GNMu#&QLPfb2$ zaTDQCM06!Gb?!*7GvVVobqce7HyzrfS4g*t`8S_c7ASTNmsyz2QG~$(1B004G!pvQ@_mQwLMpJIyL^a2N<0esx9K=MzYz*7XA-l+El%$#F zOwubbkqviSW=&fq^=Gonfa|P<6`?gJNnSh7b;%=j&Ps^bR9Ro4M(kx6-m95#rNl%4x+wR}8bCl%N_qVQ?r~s$o@`;1eiFIjJY(AOkaH3FbU-4L5L%R|4!AL1R8R8&GO`z7} zxoFYDB=AtfKOK(@gbtM!iANT z^@VU#1PjXb8$t!3&XAXJEd;LNL66xU>z}PmH((1%^_R0Y+fH zz5}3j|HL}c!!O0jk7AO2hgt`;UahQY3J&Z(>osmNK^yj}%OVaMKDO-(YgRE-P?%2? zIrG=_fZPKK;EOqfUG&%DP(9377GI;?*3;DL9n4pr97CWChvi>U=`Q(ceR~gs^t-7P zuER&N2_W}>IC6JSBaYezyO^J2y}5VjuzoDJY@gYs^w8@y?qbn|)qD6zeSAlNyjHt< zudUWRrF$O0bh{3~bO|<%350BqFr8Rj%!Dus1W>TT=0&%AlE4b~HBzszooH&7MEbif zf=mb_Bw){@Dk9u|3egj0e3>}E2F^-37wbnPxg{RK@0XPuPL{9tXXycugk|TI`la3~ zccg3FjgNa+^EE^-8F%Nq75YNm>!spoKe|(Bb+i)c3MocQYZ60^EzJht0!O1NB;Wn| z1JOi1o|buA1}SP26fM-K*skwafGRci<@`4G>&NN+%v|X;o#q>{IAEm@Y%6s*k{UX| z)DeMP_h#-vvnHCWv})rn*>6k*+AGQGcCcyXIuWf7>Q=x2or9mjm70Tn~rV4^Ii?SglOOozA&S7i#E7j8}F_ywa{T) zEmxQ8l=e$ia5+=&sXPf3YNx}f4W+{%cs#pRl;72(xgYVr0~YM zmYO+kxwgzkUkX$jH#Xc2$d0VzwK+ew^GY6vU9e1MCI+-puc|W2&^UZ#ULdhN_neD{ zu+t!U`TS_c)~KTy(Kk>Uuob+O=&C^2${*I>^}&iZ%iiZxmb6Sgpqv{ztK(*D1h!#u z4FMaRHC*(gFJo~!P6uD!bhUSCNpVJdyjk*Xly&&c zmuh9-M7fu#je6zpfIk)dF1ujY8t^xIfIpV6ZbUz_BrTMNm3RXMU*?8(3|?a8+ltSY z?TLZ2OV#~>+StX*~+S?&uhx9nWed3Hk(y3K!1WR=JW3d4KZVwHAx_v(JgAXV@p)p}=0EGta-=RniF<7eNd*L}7XjbN`w&fd}(XIdj6lbaC5*JAE9o!?1?fn-*$v7tH@0QD*$* znPA1Spbz%zS6-NWfZeI_$fa-Lf?UD+dWpdeqihkODUi&ug=hZjlmSVUL)fFyjblwQ z8r&KwfQ>K=E=UbW80(gRr!}GwHmq{F~oJi#C5R3t&33%zF<%w$7bRYwKGB=VF*zlwq%&4v}{GB0Bb_@ zHnXm4$a}LPa0kbiG>v3_fJ9edPq*cTKDYjtJO^m0968!V(~4Lzl^=!{TlzQ``S z5k?{tbD2{E!y5z^V~{KtYHpjQO8(VR|F?=S_5`Qsqtvj4#7F{q+n=q(CCmT=vBDr1>&#swcqbbnc@Hbm!RZqU}U9aYhdqW zZs+`8&ezQ8M@aJbUW~CNJ?G$P%Dau%Jal zp-02NrcUD^JL!O|&c~SXf;c~E0C38}vUCa8i)nw4WmJ+L1Qh3JCParp0lCtHC(Y}1 zZEMqpPF`EgT>DkaEJRhX!GtzkKphgy92i(UND^QKy?P6rCnXNQiCz>^YNYSf$5NtQ zJl4b_0Tvd9kax)hdK9gnRx3|lBFEd=q%b0}%owdK+(tfckR#98>$?286}!%4a^B{m zbMSGxSY{QK?>9Q_Dd9}xF{smy0S_=Mm<8Pjam>HuGPN4hNlw-E1^_cH&6jTO?iY72 zkBYFb+-+*!{NZ1piFIHcK}E;qt-Q7$m9zQqXCgFm2#$Fw z&xcIT5vw315+xpmiTF0VjFyHWS<_7N(^W(l!ixT2Q&X8uD%HnQaH|c2+q6%5R{>+4 z-ZoZ{$q2ar%Oi7!XOO7CG*^uH#i=JVf1vK_o8N-#f?^5m8~s2qdzhxQ4ms^Uu#<&k z6=(}u9V6n>^R`D;Of;W{M|n1aUW0qNW>Gfl>XWd;G;&$p!&9c#$fAyS<223AS3kQ} zYwojUt-1jKJz@dwZs-Q9vB|IcQ9?cY6Pr2hO+22&H1cuMHSA>^65Nb%j;ts)K!=V? zPA4eS&!{`Q*IO3+Wt4vYEtSx4$ow}s{KeI0vP$QS=fN1aI>5cI{crIG#B_vH|KNqN zo^%!+Z!<2|56@+BnTJ7au%@Wn&}s&T#lP#J)rkf1{aiqoR#qTkY~wx(yEvQ7j!vP% z#G*_ud|x-3t5zF(%hSAg!IzXtxdjeq2?>WShpE!D-<-M!0_||Ufx(JM1sm2ipA6%k zSiI=ftL4?{|J_|4ygf|L{@0Ahp7X!kD_I*jIa?SxnHV@4nbVp4&v$x`Ccoa0de(ME z2F@0CwobIh2F?aonLAGF>(v~v<|@BE}RCCU*}{uSB2M1(xh+I zFJsAqOOt=Z{uK_-H13lu6SuE>q|V|p4>8*p`|;4NR)M=UoQ<5+h_6T0sFREtPU!-< zR2>8VyW5M#3E(0{>kNXwR86l5%g=#ybTCH(!v_&0-Gu4Wm%_2q8K+Boiir1>jF>;R zc9J@69ueeUzFn#W#XG}7{*(2aq?$Lqu1)y9tl}l>N1&eu8{#GO=mwA)=)!+Iw zHOi|tL>5C`s};&BT?>|F8Fp>cEnr)~x()(O!xV0d(n-qb&p|zS#M1ri}0v8a6Z&E%bk!z%-9E zo`o$hR@~7IrCSYxZ{XXxJhPT^h00tvVD+m-tJlj~wP0OWtwobf2i3b&Zk8)Q5#ZoA znl(FVgM&HRjEFrUhoQXp=U)5VaD409Vw$7WK32gs&VX;Ip6F%i5W4|zpO`-cX!#s>mh~uOXn2}ORtJMGXYK!)tz0DU+Ymscm4hQ` zHJlpc+4a5PaPS~_0|^pFsEZSny4StsU6CEprQx}J$qr}t++x!a)61foUmLn^7fAvI4HOg)v`P3!%V9?H;WTp*xw zkDO)*H7&Zc>=oGX;4|J2L-`QM>*U*}}xd3vzz^<1#mK=ssfx&gNh*wt3@FHbEED zHUyHy&pdF;(SvN@A;8~}ez{=8t=;zmb14YeE^G;|wQn=#v$2?~x)u_X8BF769YwW~ zJtS_?J9&yVnWqn%D*-Zk7%#y{m*c=*W{Rm0UJ7!0Rb{<_niZt9j|rn!M(xo=l&EF$ zW&7qy;L-%%gby`bC|9e-7YO7`bl);4_GOSsPISM1`?Ak!djhlge(g6KY;}zo#i3#C zLA3l>?9JkV63jGPgYCKz+Gx3*tFtNlAtCdojmM|g-;^39K049eDACsSSZw|`9IOsB z<;p9=Ney%i#UI86J>$kNi3*KR=!@>GRpyNQB;?E^#SBNoMs-OAS!**!rRB! z(GZ%{RF2;SC3JQ5UmlZyW?0QK>Z%+qg5;2el(LeB-3FidoX6nk$%l&ahTCAuUMm6`sjAMh9^%$J*L-|P3EPndw0YfdSWPA)NzyJ7t8p0^5-M_>A46aWC`cXedwVqtA;Y+_1l?d067qm@|5nc#c#Lu6D}S?RS+ z$~t{1J!m^PJZ*j1o&8s!#R0H@#J+vHc4smPz#s^5_d%Y(WS`DO&GcOH^5<1#NhJBW zVE_D2MNe>MtDQ7Tz4ZM4*5dsAQ62X|l3jfO4t-h2r2+u}38(1REb4AL|dM>!0Pntmrl0_b@VM zBVR+@>9P-u$O27kw%sq{(c+DD?&;6|1lIwMSl-OfyC#&P!nG z)XDxp>rWK&yd9dlyz!X(#y}op2aOQZXG`1|tmrxhL@&1w zG+g{yA#U8q_s0|T6u1cb7*=!jOC=-B$10rE#V>u57V3DPf69D#A|2bJ4p%vCE?5tS zEYL4m4Gxvr5z`6Zfuv9m^cHaZ_=Btqq6?e?9yz9(gM=O6%ap;mRWv-SZecYj^OelY z1FuM-KK_IjjXCQGyU25g2p)(KQdJm!`MW)|h3rj756a;`NMjIZr$cF!AAEbF3suK3qDcpWD+ z2?c|tl2i<&qYZk*7fLwp92sN-J~2gFIWZA{%iNgg>Gq*aHOP_r`yXpVm_t5XYNT>x zX;pWy$e26~53BaR{8qM*lL+1hRCnOtb7{?6!L!vF93va9i zxd0Z1%>xyR6we2>IG84Yy4*F2^}XNWA%s?tNr@=Hs=zaFcZ6}#T?|%qV^rYOQ-r^+k{<2!=#)BNQ+K9 zsf6#ThfmB2XhF1 z#`BCCaQtLS98Ki(mmj)VtW7`)DkwS-tZb5nno`pzRNS^vT$Zk3ArX zXJft{B?S|YhWLmkG>sJ~aDT`Ezj^L#4x1OUDN4?yQ1YTk0A=8nJs;4Nnw-xM3I@$Ww)iEHxi_p$9-*Tk%zt%G!n<)A-&xi2iB|wGW0C3&RCs zndtKBrd>*2@RNq<{H;!*jy{6IJiB6CCfxu>PmrNrSSB1z1vCDgVV>-e#!c+ciXxBT zGPf`kQ_@eALI7N4d|;eyBOjX`L{Ap!G%(W{WB>c_N-*IMTh7IN+JtCj0rTtuY16bs z5y~dXpv1qcVm;);8R}Nym-uHzTs*Z8dw9~iIRSXm+c`ry%)l1}F`f`Q&z3W|bVxa4 z{VvwA(0D)ZBspDCZ6>E{8&4EPC^C~VWT4rI_*DcwAq+tI9$kA`uf6)AdvTUN!MGVu zNYg?V*7JCZLRm4PHXES*tUP>rBA}tCI?Lh5K}XT%X;}TmpY%dDn&5NH9DyxzyaY3| zf%nFkoJU~Ls2q(_B5HZ!ZT8}68hAE3trGe5K4IS*FaH_j{@mk#x&rGQ-JF4|o%MX7 zKh5f37t@}$2F|}OULUYCU0#M-_kx8_9$-U={++pg)2K-*E-U+?hK| zmO);4O4R&g$>SIo`O|ziTb(va0|jSrz-UjdMMgH^E@4j($20EGR{NK!BAi{@kAuFy zQ09{YF8LE-_K7Z6<>cGX>R|ZiXLB28kO(~+S`_bJv3ZQe0TAnP6!>wXA`5Lcij!Bz@{=;|oo0euTz*a)KR1UC(bRMDdfCh}UD;&&j#ujj;zJ}tdgSmc9 zFrO2~mz~}L(IvRmP@a~9HrPAn3UqjmRJdy7uS=8?A4c-LcfIOtZG|ThNE;O>d3=$a zCThJ}t^McEV5KjUB^n8VTsHD!z@IbNnOM!?J& zOFl#!a#$DC|wj_*rA4gU`d#O4cv$09CnFDZoG*Gx8pjrNWWo% zYM(rYQ6b-&DnTQ-^%zYNsXlxR-?5{YDhf6cV5Gqab{x)&C-Y?MlQJ5DoI(CeYcw`v!m3m~D@HOF^n{?{v zTf@fEKGfs&kmaotWsKj%wX<0fI!Mt$o z(Y7pJTNxOuZ6GT*&Xgi7mvPhEddKxAP!a=g44S^rZh%{~bIH(LKwlW98df@rA@d^h zS*l)UL3yggN4wBB&&&GL>BV3%vasB6r%KDpXJeMI(uapJDL=UtIr0iI5 zhfu46jG5qu?s$xOhH3pMGT;KvI)$xlTmX-Fo7#C@abIvg1&J?9)E?XXx$@cpxK66@ z==Q|lI6G@$KtS+<1H3G;M1`_x?WFP|q0``I>fT+-@Fo%ZaKNHC%%ZF7k<~elISxQ= zOJLCJGPW594}Y;d3`v&9lc5O&*caiSK~)eQC8CrbjQ0c+eQIbP*Yv$ITj;9%IPSJ5 zU{LWjBYG5hGIzydu3QiUxurD4p2jI z>gnF6SgDkiKV)Zhpp?&d-Zm8rSo# zC6ss^)@&LKg<&7-!2Qz#htJlxNr^oY(6J`A?yYav!+>XRTMz>*ix_dXs4OJ~zps{< zI2OuBI5Vv*0O!c7MJN2u6{0Wl9c5|IE~qAjr$5sCzj@$nI9pFHxNCUQ!3OpcvL>?p z>@+|^90Nt6r)`!hVP^(-;lbX+NQCcqBr4zFH;EB5&i3b)QhFwX8#HYSJT|%vr{|`O zju1Tb74T6xhjWKDo)xwEF!?Y#&-IBY-h@?h88_iV4jO-(uza*e+z>QC-!)4Y1nl{H zW=RrHiX=&DIlZ^|ZO?L{enZ=R zwF*385%+WSubva-D3I%r?E-3EX)M2LK4@hVKOf)bu6He=*FYvuZ$-&GJ(-`6eX35z z8<`pK=D;OSPmySn;a)!o$j&76=kX!k$9cU87WO{QJbqQ%YuhLD{bB|JE}r4?!9zz( z1iuqTcWt?L{*G>=N12>3mN#D4HAFBvDaqb6#bx@(*P@XXxV`#nUveu9R~yjfGw8x# zLwYH|XG*6+DM#DV^bc+zM|qv1%(*`7^n8uj`F)+(xoIz-&?XO=a1epB(*F5wij1@>BET#`u7ZhigJ2I5A9;bhmBN=d?`j`_9+bX z7;+YME;<=;h>#l31G7=+k>%$Dl=*NTJyP1k1u)&^B44IF#xR|DS6tXPmbOUAmT{^ zMyGc5{%Q%XEJE7*C_k6^>8~Uk#uMF;bg{!Lt*t_=Q?T@a09fYUzYcW$nVc{!vZd!s z5B3Ak_(>4QDDQ&ynX?OmNl=(ZY=40=8H_V7yGvbGur3?FcNwtf33E^fc*m85R&d1KB?+U{H>)f5S!keg}-7jOw( zr8JaGqr}57>G$^FDDc^@n8gM9mq=3=upssQ`jUa)cUTg>VA8B+$84-EsO^C@n+M^o z6TfSDx!a3EJUjfml(PQh1E&P2uE|*jw-%EF+}*0HCloHPm09etH$Jz?Ny9Ne9}W%D z7Gc@V3_M}PHB3_6ZVvciQBkm{p|0~Nw%TREY(BkE`ru$?Yb571NH6E!@DF1Cv#*?4 z==Ft4DfXPK`N8}E`8vkqZ0%gJP@E}EP6-Nf_DQhg4flirM!?+IqVdf!Q)=VBA`7&U z_9XD@@X954?O?qQwbQ_JhH==TmkJ}Cl>WonIAq@-%sSY|OOGq_@;qtk=R=b?vI7en zPask?Wn)dJ3%RL^hv$iK(9l8JwfYL&?u-{@z_cb)M-MPtZ6oE7M}DjCvf|gW44qoy zy>=4I<1nj!N>4`FNX5!%MU6&<{j&3v=8*7s^b2?ukqIpkjL=5ZX{VA@nj5Z@8(|cz zK;Zzkt|kx@$d5^Fg|LelT0vP;1gn~1rvdai`K0_Z0d_5P(?D4a6Y>lBm@QVrbYrYO zbjmmO2td?#dgzE|%d+6y4^6&XV-$10@AZ6I{?lF4qDhmPHb}1agOH`3^D)8{`~#mF zkQcxswp2IGcX`g&LLzxE5HNwkajeGHCox*e1656lG0Up>cb(>tK&;mutTaIaXIYkq zg9LQf3z2A{&w!=nzJ0cfED^R@R6!ZIkl~7g_{un*_;INQvo!Jnm}igpy#}ATDgFvT zwSmt&%KVc*UNPxxS=K{u07Ra*CykymQX$uhCH@I-TNclqvDql&AVI#E(Vo8<2>QBR zxd$36zRWIR&IU%{oXXlY;y>@W`b%;a3`q#?(W&+I}%18CMibu~l-T&GzLTB_~TEG2a^IQHu z{bFQiYbp{c0q0Ku18~zB2v06XoNGaeR^2C9B>L4gF|=W9$~u1)h=@w)NMr|J#cp4y zoNVGqD0MhC7hxp<@_=FWu^noXpO*zHDT_mEr^cQ6*G=I8;q%LB`#HNE@PCcuM@+E7 z;Wvtu-vakr%zupr>Hc$~{jV^h1>l0{VL)y?M0n*lop_NkjUp=%h)0@^UifLds$9*A z8C<#UgJV5X`YHMgs0PBPR3HqPe3(3d*QeSzz3cbLcPl`}FR1C%4+nS}T(lGf(W`CR zx&+Q`+FZArAaE&aUcLTaFAXf+|J+aynX&(G!Fi?k+`2;p0I2E#0O0-4!Tp~ZB5f_F z{Wc_Dz8=F;S>4}!o3@q~O2Tx=4r5a6(R9uaN6A%KbNUpq7AE?h?1P!EX!t!qU7eWl~cV=1R{H>!ZiSu#`6IRmv6F4y9l*727qglvfH$_;Dl6 zluem2a82uI#p`NX55eU=`Ekkzh7E!RXeYK1<{OJk*C3_prDAQq#uc{0k)Iv4E9dGQ zNq_SHK$1ix{ZUM?mWt$Og*d!wK49{Ta9eu~)vYbwC8+@ik^;mG{_(?MQ3pZOx8(I+ z`IZWKa039`^uG!We=ApYeRxh?Cd8bgd6McgY>}U5&Dzm%JkWK0S?=>M0xMEXmW^l19$jO z*Ct)Q9;>=yEq}RXrGUXX0EjFgmUyMLwLHAvC$6lyB-d&VdASJ}khnMJ# z?ZFqnZ8)gJV`u;xQ<;U^r!1~DCN;FUZE)U3mf~>y+sHSV&a%EM=biEAP(@+Mc$xCX zi;$=R+$W6lha=Q9=Ln^{g!kh|CiF(}H6GZTgp5YHgL=x_k6ZX+YM^Fe#T?cF zH{{cxlN&Pn{pvZ2`DvynbWE&Q_CLp~vOsZ*aAlS$C_hN-lc`O6X}6HvlJG*}XF46dxpbGS#NBmWmL@WP#Yx_MS4} z^zkx3(J~m)<#k}RY3XT3ah+zYFe&W$$Hu&kX}5Lywy-g(mA?D5Q`rDv)A;~yQ^;-> z*ZKiaU88MQ$^BcF3?E>`9@QRk9$>@6?_o5W==qIZ7A#1h1c8)5;4aV*k|mzT?y$MYYfSQy>t^3JbdbzL|rPKz*AtxRYD z8@MHscRFdvQL24;wDG|7igB|PAPbju9d`3QcwRexhShgz*@2ngg(9q>GVF2#^Yda) z9QSViL>td(Wb6y|12S^705f%kk+_#5hE6fS6CFr{<-z^U^AA1IK80vmvKbr~ytvyuNTiypH~)$03tA?L$TT_zOdO z5V4{-JgKSN^lBOSeT5lw1)WS*wCNs%3Aa*rYTWPR3tMc%Eomjh^OH8awou4qHh2lU)YrJ^6=yQnF~h{*X=e=I2ySmP3|*8s5+v)PNrIaHyw#2YJ=8R z2{IVV4O7jLC_Qk3Aw*FQY25K-$N%>39MMTQhZJxBAO==m@JzPIP2vq-I$MKpJHuCI zBUd6;sySAo^86v)fL9GqmZ1K1fW7i+qcL-;#%PV_D$$845<;U3i8pF8E054=msvAs z>Iq-9-}{5Mvk|a4xLOgGZ+8{`LmqcuJf^9Y&tnld-h~_fDSDLtB6LPQ{phN2@Jx&k za{PES+L062+i)nnRzkni5JfR5NX~uk3b_NxYQ{(?dF*>tMl_$17=AAly6?7#4L}QV zg+KkHsHWI#ov3wn7#%LWq~>o-rf*OKZAel+V-uoKc^GEtYxsSkvBgB&F9wMQIDuxeH46MpCHK`%~~r$LtFcjm`M>$mA;w%63Pws zn=Pkc(^*viqvU`L<>x3pnpdn5TZ~6idA%(b1D(dY@L8^JNugSMd_ zRKkX;LBxhOCmt^PoM$5ZM-o`Z+V-$%sLXYqC-+;0;~>udF1H%F-{<(?4T>!;r;;z~ zQJ^{zE+OZASG;Vn#5^C*ymV_Ae+gJ2r{$f)MI%OLUy_TenYhM?Tr9!SQj6zqm)_#I zj(vbw1CiPLiMvRM561n8duR+=Lpb>jR3xM9)A>iZWB~B&y8+hXg>ik@;!xe)ijEPQ z{}_fxg;iRwN5Hfn9C1d&g;~?0m2@86H>*}Sv~sZ+`Qk&P#~2QE;;XZjDjE5Pqw{1I zF?D;YdYjw9>o#qA9adEDa!-gZ^}&bX&6lCfZ##?fo_hR8^1 zoUI!%4_7! z62+53Lg*1;ET*AWG1_FIjRs%N3uLp=hb{0%KA^h-Y1sj06wZfX;R7~ll`O7!6itz3 zXz5uL-M~kCJ-f6JEG0A$p%C&^zWzua33r2?$Z92on zV1aolT%2$|cGu9c^5Z~PVor8m$hC}ZzS)D!e0vj-h$tNy%EfeJyTsIlAp;J`XKteC zWs_vIu)1I{JdcRw_-q93>GBLZgs=xc&dbvg4}BL`q;I<@C3{~$Iq{Fd?}rr7*s#Y> z$8Qf;C_IRGzNQ&Tsr0+-f7JNmGI!Hyr;nD`xj}u{9IWeqHBY)6>HZP^J-j8aNz;YkLZsa74ECA40}wr zQwBcxnH$RDG~bd!^UO9=!x{#hcMEp!tNhQ3NYJcn(s{?rW89zqlJW^34zSt+CIvdp zfPhH<&e?5ktZ05E6*LZx`qqZ}mNwQ#G*(8AfC(@gdm~y`E6Xz;b%!<9nTt0xEoHn; zr_}t3{;Sct0yTT}wxrYA1nGNOv>hU7T^g2Lo}nnjcpAfWns5+kUCFk5gg?FZ$|dXEONd zc*=;MX}h`~YKA==Qv&38jj1MP-IN$F`>{zhRt6l{6yy@ib6ko&IK%`f>>XXuu*&oO z?QMf7PK9p#&^v#t`Tgx>e0hI973TI!cvgIf{rTSQgWo>=)Q?d@EIE`IiYd%k53=!( zjFS{|p{OMtlc_+)9k#BVC=bL%Ur7wL_AE6%ge#L+(SJb!N)bUeIouoN=vuM!=4|2Y zatCJj=IHW%*gmv4Opce$lA*1doUF`1$jV^DryWX7Oo1~M~WkaN${)2L_?uF^b&|VZN=>wm4^Cd!uHYzLBllh1`cqEgP z55e}mi_61{F5QN%KwnBT^)|==h=$#L*jVp_8G#x0bm}Z*&0Y?rBS{A2CKn3km0d;< z^9(XitkY1Zau7e(cehWZ3Tsh^ZW@M%+h9}2cu}vlQUWnr)mTtqs0l!#v3}DhcC|jX zr<+*XPfofYdE8)}O4@di+QE?~e?Xx!_k? z`DJfvGD5ng8k$AyC1$Cm#-zw>2sBM7&sR9eyHK65q{FB=yI&q#C`=#v@rKL_+v8EW zXS0v{))JD(79z3vj&5p2lF15Of|rE|RJwt}*66K_b9ah65JFmfs$Rw7hZf>d)Dh`O zMyk0KKHfK@B;BatgUyfey?6GeR72&w1Nx{{U8_Q;VH1XkCmYV4ZL$I(l@IkbRU6VE zZ^R5j$k(2ZMpz|;SE<9+{dkX3L=$L%a8X<4p1XTWdwy9e##2VbgbDBpR%+G_d5<}0 zUNo1jR;@I3Btkf&(e|z{{m8Cg2Mn4j&GUh*2n2FcxreNH2ll|`u0`0IKVAGN4nhYV zt@=A<4%g*Rq9)9P=_kZD1CKk9UM+3(vf=RsVg zTWooqhcy!>5NxENDYq#pw%xX1Owaup;^SdHH%?3D2olKltE0pwD3JRj7?vOq40VEA z){EtJi0eZKS1WzRPF}A@A<~AXFDAwo)b4Gd*ZjcQ7ULWvGZhN5yC9fd7FnqGX5(KE z#8q3AbAnvqX|3)Ybu&cviB7Ls)Yn&B1KV1i0J+eN6fTxffEd_CmKL%~;hm36ia=1> zS5*1)q!>kafr+^|f&`c(aI0*htN*QRkCL;p`dC}i;^5DvhkNg0bSJum&@$q3(AkGO zjZ=R{hO19SOi4}dTrqK8b@7|WjQbQ~+M^xE@IWd>6+&c#4>!#j!x{&a922T< zvnZ+$T)&#WgpmDInLZnWJom**&x+WMJ@QF|((*&3@4>9{_@K7U#Z)|sjcP&}p$TyY zcAZl`dYpE-FULDi>1d~zdwY6DZeo);^X(|L2NcW+kW!X*>9>>wn2_^hU))bvKx?IP zmu510k1XQ^>6B8YN~YdlS=vo}Vz`ALxJ-au5(laI9<=w-uueXt9GsOMya}zad02D8 zePrQGpcwvGB1U>RPCMIKIrGG_0(#+LYkf8|L(>_!414^=F$7@>#X5oN66XV%tND)w z(2JubnGy6t$JJB6D9MP*~caFCE66M-=qG@Qq#oGVaL^rnU`0k&FP-1r?c}L&!uce{868hnr4YGE>|YlQ-`V*_FdSM zxS&J5^7Y$hUI<|NCMhUay_{@}a#idb#I^SX z!c>K+K0lE)Y>?Z59jCJGh z^0ikl(VP}KRv-2Qu;Qm?6R3xr;8MT=Ifz1>&;46Ipp)`scsP<($jG=G&2WrSwjxe* z#iUT-MW(NcGVAFc`clAY!<{P%yU;a^8r?B29c{1cuN~`sJS9HkKP7?V3y_f1dLtGb zbW3-{WCXdB$Aknj@?EaKgn0o5#~xO9}%LBqUG; z{`wHD(((<2m!ez{`%R@Tyo;6~Y-p|)1fdqt%txQEN_>lzZLrZtzAQIhq6>(paM+0Z zggoKqH%;ZZ-EK0Qu}4MJ-fdXhTys15`2xhSSlytfO(i2B^Il*+SH5Uv{j>Y`VFYFQ zyxUaCB#jYnThXzjBR}G7(OpgpO=aa!KA2AGf4EUHe zL0FjK`#UzNqciF_1odDJHiL+3w?IuIH~5AvxCyx~jP`Cfb}^&IA$4$+J*h0YY&7Pe zV9D1UlK2et-G_6Oj_MdYuv}lrQN>%?@y9H5PcHbGCq$ak~ zIBStJMnG8|u^4DvqrQR}9D%|`ZlgfAtra!I?EXPa#`)G1^}3>3tA!Hu`@)-43kILz zS^4Q^qk8#|N@QrFW~*-N?&I;J>8BW^Ia6`fVYq6W5Q0SI$3pS6ed59gGw)|<`NY|; zM#VXevM7NP!|Zp4_l95+lkXn&ka!+2wN|DGXmoxjK0|`o-gYmK-B;AT>d_y#(`aAt zlhF6hH6rVQFt zr?|S+0IZDlP~&(!=kxVipQ*_vCrOP_>sTL-J(t~Acc@*;Dy(k@J-|yI39>RznN56> z8l9BO`{@1d?so@Q^d*tn2V|cb18@o#Hg-19TLvjokdQ2PwFj+nic|T!pG~<)(*?sUo6zx9teX5EA1^`sh!@+sfSJB(@xW+(FmLimv*y zM|XR1ClLi4M^#MdZ=D6REScsE=4P?R#Kh5NHG@q?Gh~eV`KX3N7xcj-HUKiXpSz2<Kj}~hZF-U`9S^X>BKUC7^30$W^DHa zj&iUBFcGVXV~1YX)3-y_dCvP&(#2idJ%{m?=!MP`+~i(kA>=b%@d=f&mGBZU(Y#twxsf1JT`WgeJK z7Ueb6)4lV|i8{JY^9E?uFJtm>C>(seiP<&1p`pWvjTG*IjqGlxuQ4vLCfSHrx4G#Z zNFi*-UMLvxRLY-s%GPR4f=i>16#IrTZ7bWtaXn=w;0<@S>r)ZxmJL%_Nd@PoJ6KSt-&D2>F^3-H zCyD0;5rvSxM&foC1!N7a%>2Y&eC;gjG(JQk&%A=1f(g+iXz@bS$a}^m7F}%oGuq42 zS#9Wh^^!|2-sjMW8kcdqW!5S-hMW1svB$mX);{~)8?p4zczFdKVg|j_bmET>;;2#5 zv@?#?Q^?v*Y=r}KpRXuW&cC;nn4YC`NUJ!}8^GByQ@4LotN!|3k!}l5*G^#9S<4W) zwDJsA&TR8cU3QNk@tf)w?t<<`M2(HGSS-Ko*jsoh&&sGsSpY2Y0uaFh(NAr}yfm`y#53Je^ZZRW)zx zM4WR9c0Fu)C>M{5R9W{mFY;&%h;v?OH?ywVR81VL8ZoaBS-BmRcc^5qp+#rqrv~86 z^i0u+bz(pkZlPv9=;Fd}x&0a|PoK0~5=~NEK2+uT)p3#_!^v=0ic=Xe9j?*N@6@hDC`` zNIrM_!c!dYP(6(?(^7e_Al-e#aK<)FFCX5)+s#=?kh>!h~2)EVrB|9&m+p;#i#eafxOxk$W*d7$*4J zGdsCwr#NeIl4=<(RGrsBcb+SK zABLXx*KTL@RBMn>I$EC84de}vHTZ5;jMON{W)ZFt$(B6N7Cbi=fEaWeS+Z(bhSImn z_VFFuhmO3kKvn`}$__=`-(kSjxgh5?I^WC^Sv0>A$S79NKsUaa3%+7Agye-0i&lvA zm4Pr{-BE%j*odQc7~g>1&cGmVFgQB&jwxvo7^?e52lHdGD}3c{mm%SBQ`aP(xt_fg zZuE&Kb$3btqHZBVf{`u6rK?mt#oP_3<+a}SL5vJyOu(toS<{V9*_=X`YK!;2tRK^T`7z20E97Jn8b*;U zr;nN5UyZ4zFpb5*^qWL@a3M`A2)gt<|H2pBWl(4eM~SfX`h8WD(k&&P;>_S8Ai;rP zDTySV?T$Nxz8)Pob5*BuI4PzNz!B6Oy{pR*15dPxn)BV%hwCeiV&Cq|+eAhB-fh$! zyHdBV#uF-RBn*-*lO`vvs56d2GbAWWgdVAe*kQGHJeA+7+k;iF3%W}uE>$Bs-2*!F z;u$8<9b*{;OOCoSr*gy=$a}*$RIllj%lC9MrpPbpyl*2`2bb;5@cR9Ed2bQcv3c>@ z8a7E!RZ45+i@sRR)vq`E)@!6~nxoM8u$~yydWuP~E^qQA$nKX_kHK#)U(b{Dco6T`h&gvb}xo39QH_u+7 zHg=>}4zZ@h(QR^f2;13@=p|%v{XXy`cA$iiKdGaH7pU_m40gQ9U(fyyu|m+<14a}! z0UdC_lAQl&g8!}0{Kdw}+VGEoh5cl0`*eE1F+?xuXOPVPGw=^dpil$|!!pnP!_~kI z1o9HDahaWQyV3cT>w^uc6Suws$bOsWS&7apMYWS=aQ;2r@?mJW*KctuXV%%e{5nAQe+ToybuZjs2?9BD;3={nj}RC$8H7=gyf20$1#U6KYDNRCl&#(G zd$;-=3<0*(AsY{rW9IHZ3@S)>{!Gq*-_q$WD~G7k2X8G}ry>c8%@#R{CSIXKn5W*n z8zFON+fE?Mou7eDAl8A1L`KLiio-z`h5ud3MT}E@jAB@0ee@tVX5N2(((Wuh*{DS+ z*s1`_+G+MUG=^m!gG{DmPKv3g=q&e3=^Er)J^W<1R`7G6L@?;ycf40x(FwXO{D6_C z9FJK0Pb2warS&lu#?3#hyM4C?qPX=FA$~wzDSrgl!C%JQ6s!NVL=pPU9%iNS?7Q`g zm(ZqUCUeZkhj&H@ZhGxcorVgRD-g|F*qM%EL35*pVlgrn#}p%-ie-C(A0E zZCHKBe=^w`h#hlGv-8^>Bl`7H)T~7x?(7U;4Bx7pCO!veiz=)2B>HrV40Qb-&NJo$ib1u z)>7a4_vFT3ha+fg>`iF(ZS@UIjc9*QcKrIflcSlX1FaI^l{la-`|GcWwX>p;qm%9L z)3!!2<1&D`oPY~%5vudHCwc!_96x9@-xz4RYCG0YDmIyTY2}}{OZk))&1c_FJvBV~ zW_%{gXNdMZ+6FK0edfWJfTO}A6MR=lWHWr5Jlb)X~2UEzF7Wk+D4iSxt9R( z%ppt*i2UO$r-4aw=5ma5E&S=HY|)kYw+G_y#rc2dH-|>p& zlo(gU&NdIoAUa&uJK_7`=76(^71-BZyBERSYT)m#eY%*~bm;!l%s9(T&;B(TH3AUp zf99o2nK?Mh>DxP+{XXEXYUXIFCSh%0>11dGcvs)b;g9L7C*;}Mx?2h>4m&AE$39jcIm%ma(jMn*iRBd_m~aO*!FLH}`ntQ`q?=MjKR7r-AG{xcDh2DFEM ztA>cPk+tJ5yo{`k?0-9_$e49=e}2Tki)YkW9g{^<77J@3v%n-lK|DPzvGwZn(R0kS zrVH$z`YFMSiPUY+8wY;-#l%Kradi}t>1~ymY?fBN&kmv-4JtZFZ{(gZJU)`Rq_0y* zaNa|1WyLsDq*jyqK+A*|bKq_TRs#&^F++9=%pzgxwMY_3;gp-q(($C^*X7+6#lX#E z^em(>f~e+LDi4?w>> z;*8bp)ja_6Re;j}@4AIww;?ii5)hkV2QRn>C?~?(RH%MT5Lh9%!RmBNud@#K|q$Q<&EbJj+xiB@Iw%KUB9NZ*Ox- z+&(~lRdIOGf!cTP238iE`VpJWSP3FYf^L?UD4jaXyE;-XWu$zXRye{GH_(|6sZJ!Q zSI>fNVz!E6pmzwhV2U#wy+`N@&SMUvii?zCvlyzz#YXMl^|YMbcy{$-A8|chn9}`h zk}5`qgaJc~t|is1W_JZyd3LmMWSH76;t)Peq;FMEg7nedd;Zn)#D|q@_!?arx1N2- z@^#?7BtU)I*hULO#bgslEehdzUX0ahaYP4l@FKW)bW z{_6&a5kP+NNxJ_6?trh;ngZ6k07d{zez_Zaz%o_?qd$14kiMg|lcl4XtdpaylOuo| zS?N3eEe_WFii5%r-XcB(KSGYe0@M&;JPftiSR{AJouFSm(r7JR9vq9t^4%Oj$(v(A z@6I66U2Ehu67nwOc7{9CT?;CWNx?&cot}yz1mu#MF-JB8K{AF_tcyPKBifjVrv~{M zWAJ zjW7%4hHcdj{g`((e)~8wUHDTpNbfasMgW|{B_KW451cku(n)m1Y*zj|mXezevsYbT z?NV*-h`OrPbLS@7aA|E%8Wa%aT6zDs0EvG3IW8GlTL|+t+dx11!OBw+Y5bX0h+Vzz z!}%xlgnMFj8{Om52sa|%a<{BOidEwiIz=)p)umw0TJB<#}~dtHnkvY82k z_dB3bhA)VtPvkFb+ntpcd8CQLSoW?RnfEaN82)(u$%gy@U{?S{;eQ7De-Z?EUNkpDqIA2M?>LbyKF zGS=0IkveJSF~f(#+};zTA*a8-ygQJNx8cZ7OXCjT+fcijQQC5fZ3V zm({9AhE9?;&X)IAy+*#Q&VRi1cuX4f^8gUi0rvK<%*lQS+o>LVKu!j+)h4Sy$OR*> zxYL4{F&%yeL)}bRgZW87Y_oH!SaB%4$!Poe5Wf-i#mVy9;8Zi~Snb)SU|z%CuHF2( zL{XXDCYZa%i_lnjA?U+`3WjwvYKsXvNA`38?B*^ zeF?O@@;oz{`uER2W4MIbHI6!hcruYP*rJKoI2Pf2uOv>d9O&_Q=Q(9?ET>~kprjZ4 z!qwDCRsyC3B&rk<5=oVhGrPe+O9(_I_}5qID3DK_*Uuho zyc&IUr&p__WueT|f$aY~m~*w3z#ufV>YLk|_}a$bnJ?6uE#rc)N0 zZqfT4$GEtQ>f9;WNqr`tVUCYnGsp~Oj5kw9%QZ{$3NniQ%$>jjS^9us%liDO7W#{e1~J0?gd8N8!q9JYCpTSxG2`kw zzNat%-0c9-2grXlg#Ia7034TtfvMf^c%cX=?-)8+8X3wv8QHrj8reIW0Rro9E0+F@ z>_-o~?g33ZRqeQk4u8(Y0LLt2C8;TAO=q-w{;GSB=5kV<`;GW=%By-yQEFd-WP-;m z!|=Sra*b^~|LavgYu0>rfHE_Bo*RUecxF$YqV&|4YB2IW3|HK&0;hVc+NUPl{`Ecq7Y$)L+!KITF$ZEt@mW&PQV|M?#L|0l*<;921R0MMdV zfbnYlkG09j)yRPMS84FKN-6wW!}q&7^&8CJ*8BUYUiL-@KQ>5<3Wt&vUCA|Yc->bb zNUnS2p3Oyw5;OQj_nU}U;~@_M=UGXd&~m9P;t_pTVsmNQ;ifk!MxBcGFYff-0?+bs zk%vW5%RfKzmo?*<6OMyV<(_`vbRsHlDDj;^4rd-OE7X`Jog8hK9BUm;D^x#JLQfBC z+=oJ{#BPtb9mMgoJCjAujHvmn=PF1ffvIMe(q>R0A-wlwkRE6aj0!`JE+;If)ew>$ zlHKe-jgz9&_n!Bb-i4TFvTG`HxkF_ubLE(kNMxlke<49h$YK>!VJ z2FSmZW&hzbJAV1h4L4|=Y@=I4XWPXNj8(av`Fsq&(bdoDYn|`1(~dAuu)V_ILvNrk z+{0M3q8Y*D-12zF?z>aWsxX%V{&@4BkRk#w$kKR}LYRJH#fjh19K=^9ym(#cV7I1{ z8@7WK`5mu1h`sbLi3%nP+TlE7cxopkR;8DqwYoX_jv>ZF1`&QdI0&a z29AHoz4UF(Xzh(`EddeYk6QF^9sGM?`fvPK;8)rOcHt$$7qb^~lt^bA9dS}9TJn*^ zcV=@|Sa7YKX~n594S`PxyvsJQCHN9V?`w=2yFsS4u4W;u z(}Mq-8~y_V9`s)hfd?GJ6w|BL9SGyT6BDFgHBG}0q$s(z+3Q``cr5*5YU%;GxulbQ zS25$t5;-`H`JQnu&$F2}?KAMMgcom_0F*TIgv$nbTj7+$;v+e+eMa!;(Fy@iVuRBIcXaJ4G04e z06oCpf2CLWMFSFJ1S|m6M?mo%4X*8TiO@{`Vy%EaJ^3nv94?9773Jdn=+6rbvU1Jn zHXfcI9^8&wM^#i*X}PhANk+lTQ-(CpW@}kd<+J8!QhQvx2)DNd%OtP#gGasScJy{H zmI7mtaYQ_fQ3t(C8fLLKX{Fq%(wnGSrA`%T?bc;Zn-76It&}($b03j1X&|bu#4!Y~ z`e;Hqk($6{$f7*;ZcnMt`?WXoYJib%9&<;(n6u?nXIE#($gyjt$cvM|07x#+`}X@~ z_tml*yv;R=?WS4T=(r&%l&IdjyT|%pqWzzn8~-cSu0MFzzq=bkn(1$p&xrta9s`K& ze?zVRlqFeO>e~Whoe7|YWba0623SDxJJv}7-qx_Ou`n_M6nho^_OZmTPk-Bc6wj~V zC;F@R*8jWrhVtc0sMK*G1Y1DhIu2PqK-^G5qahT=%7duF~bg(c3ULSTISOwJ7vfI z8W6-=q4zX`M942d;BE!gxo_nvl0~E_ZD%O?|xA{l`#9_|wiN5&+FVCy_J- zK=B^~0dn>>jy6&@CMJM(kT~FzzePeGbU-a6;5p+HhMwZjJunJt>Qgr=!s;;U-kM4!7Na_mmhvHr%39od zqByug!?lj1tzy`rplnE833n8ti@8FVMIyfhQP;f);a2C|cK!Zx3E{x|`j^~V z)xxmhSI@o{ApfE3zR*1!Wg_QDSUZUhveT&H@xaXwrCZzlo=63^;C47f?IU)?La*S}s5ZAZ^*C(uvZOlUQA0?AcabK`^vTh6HnXOO?5U?X?|h z!2CS84X^klun9+UtnfV}MEB@33Z>fBu2>&0A;?D`%zr4Eg z%U%DwDf+k85dXfm%`HIPh5+C z@&?-sa?Xl#*X65UxbH*HmT&A(7Q6OG2+7kqxn(r^kdc!9`kPc7c-p{tD7cMRW5EUar=cq3N3abJR+drETS8V+K=rx%SgrITggz8&f| zO0?S@cA|z2Z0~nI{$-8O6Q-}muTo+wK>o#D&_Ar50~rt#MSl7JYAwe6eIVvrylwJO z%pv3`HG7X!X2+kaiiA`inA7x98Ky^k&D(%P$T-6UpG21XIdF3?{g7Fo*N}XOSwh%g zBt4!HlyWdouSZ@uXMQU++e%MlUNS(lKr0bCEn%#5%G)Ia9~FnRm^kWrs_M~6UT3-0 zJJX0IKEm-oapQm}S)uP4v9V=QjZEpcgi7#bCeC+@tq z32~NcR8F7p@)A)pt>L?}ix6Z;CtUm=2G6ig0`UtWn(?r(_dsg|v_e=E*dpRUZipqu zD%WOc*HO(v5lB7Y>f>TUp?4Jf;7_Qu_k~C_h4_KC9&?=dH zVUFwgc5?ChHHyIRVbU!rpwc%u5b!hHhky_p%*Rc^re2zGQ_S9CkZ+^xS$otFII$ys zv6AT@10w|gn9-GsALSoYLBg_&sI>q&!l(S;mJ~=FMZl~?xA^Y;m-d46;>H^?V5itO zSs|*p>bSd@#lUbgR@&*O|uv``ca5%%RkDeoWZ3r)0}ZN?gXqun*mQ=^pqP z`#Pd>wV#CDi5mX`ytr@vD!3O$Dhf#XUgE5#SOdC8Y6Suxy;!qSv;uBZ!Bk8HbcZ>C z;O7iGR@KvQrD!xVjN=X6QX>HePYTsLnJv>UpV%N;@^Cpb;{DoNbDVqiQG*_v*W~Xe zkU8T8fvBYBiMZ-|yGun=#u0KA(rD`>(kPEcBS}^Ktk>lB!Pf@gc#4jlCvdo2+Ex*h z(?i7@>c^u)1fU3xh5{e2`afud2~RVjfnRpSBKbi#S_aE zsqYr|GY5FRH(qHD7x<=0KwKwtfVhV!KeS7Nw7&NdWH$f3`2>=e>8BmsLq-1a7h-2n zXR@bhxlATEUKD*<>SDYkOS3_YtkYBSkMxopDE0XCs*DaldyrQMq-e2!q3nnt<~OLYGsj3vbPrDw1(CQ`5aCIL6R0d=Cd)Q~nSl&4VCAN;hm?51FdJlgp|%6(r;&04_u#?t$RB-N`L zH4rw+iWpL(kfWX{2k?MnJO)953Lsu%orrjFgP_YTpi1~*EC z{6__Yz;Z&cchg5mB+DApiUP3*rH)NvP#c0kp60mH7OSzFC**BjnsfBF0O;Hl#|;RH zMM{AO+n_6xpo7!Xx_$Xg_R%wGc*a~f>7+3Qt9HsBb5M+wj=K4`_V~JS(;}a$SH{`>XTytD z5UY0iqsRH0?)nt5(sd8psdS9fVSdKlA>_$_K327esB#i=uSMgo5s zCtr)o*^;BR3@WE~w!I8(HPy<4TfV&kVZOsk?y>thl9ez3rLU;K@4`A}N2*u)YfA!-WM-eZiAaT0(|8V34ddsbS04Sf+b4RW zK=p0P5s*5SF+*m0-$YMCn|hd?YpU$Yki}eS*roa7$a=d0GI|*->7SU6RlIOhff^Zg zy?d!!>=;Mpw^2aGPT;K&^%wQu9~ccnWh)zE^MYEvUq5O|s`+}ThdJ7|pMY?G)QVPc zaz1-rpCMB7DcBUn4`QU-TejR282livgOp^895m3w75#AxJz|HWdXUCGF`V#eb>@dZ zgw##C41Fot&_?1q)u(Hz(l2^nB70#C-Q^TRXXeN&WfWcu2J2caSv#9C{AH3rAl>-2 zK)&Fi3k3`-C++6Zk`aRz(PF`uFx`}} z!@}tSy2x!aS-fWA!3y4@GgjNa?TmBifm&*ANcb(>Gbfcr*{DuAN~JkqBZ|x`$(Axz zk5y0U`*^S)3gbmI&?&)?VF%J=f^EZFUA|cxLP-UZri)H{_#5KKFk#xqwwPK;{>75&f6!7*b$~XlYEGBHIO#7-oT9q7atJQ!J+mk9SCCuCdLGdyT zkq{PkKcETYg!;h7%XbHrW^7mD1n}znAlfdDpD6Fex0GoNLixxe_u^^y%?(=klWbt= zSvqM8@L73R&Yv!`g>^8=M9<|^WtM`sEe zJ3@$$l{)%)S*?x`t&4swj~Cq?lY&$=EOPrZN*JXuu2G7ttJGT3m`JO3pbap>Mr0gT|F6RVWS9t7uN9*U(lZVqZG6 zP}{#V&>kxQM;`Q$k^vBGD+_8b9^)62zi7?+G$G9w5=^TcQ}He?wu(}Hsd%R z$OdFW!Uz~*3jwx_M_sVFgWlA^av19jlq;#n^GGyMd5uMbyQzYEoJ=iwJCGgCS-F?? zaO@@1R#W59BI)_S8K8G2YPXlKVY7Rt^aV``((~(=0v!F8{wI8#f?pafQT(88_| zmBXdxgo3nA4hp|3{l&SO&vIZ22nGT%g=Hva==)`x%vx-&C9TA8P?*8EB7WgIr<<3( zb;gjm9Z_Mu?3cyUgM;2d^f%X=V46F;7ykN^;==WYMgM0)*7}=QEq8ubvZN$jCR^p6 zz>>fah_qa!GbnZ?uqujOQ>=J>JjMMN5gg69T1hEGTjE#bcu zbq|CPl?R1L@97||-)T!BzM*0#h5Rif5- zD&EktatfHyk?kNdtPmY%WYQJoaFpJL0yn&rkH2}!d@Q>E+F8`$EF8to18ARHn}Yt zP$O{FBBO~O$fw@y= z$<$l%jQO=vC9P@K=pElSA>i2TymCnUcq|XutA(@s?Y2Zch_r2!MPx7ZT?~214MIi( zrFnez%+SeTv$836XOHmUAz$&bHg@P`HA%B8AA!B;&%?}`g0-lt8grM{-l`-R!Z8$q z?nTZs#)Pi?+Dedz_CdCdk%2EVj-PL<-M*@Z87n_sqkRj5q<6*gtJIIsb|&>wHChWA zIVdUk>O?PrM%vzx#F+u*-f0d+sq&@nmA%f^P}j5!3QLr-AdPSOH1Ekw7KK;b`S)Qt zsf4g&?S2KAe)?<10`7&qj+>d8Osf%#D%&_K2US{~$miZ@WEoeSBzq;_EHyO|oAo&E zTOV+WM0-K3RW&-9b>mJ8+DUQO7j>?ja%nAX&7@B&bVOG+M|PN|MM}M1>wnPp=!H95 zpxwN_&Rysqd(D}-p7=j7r}jR4omvW%l4)iu-TL6I{YXgmbc>bWUZd>nMUt zJmm$dwf#z{am>z2ZH757+l{yxUQ)j-K4S5BN%qD3huceO+5Izvz-_*4`*h>za0R67 zn^=GGj0hBW){^IBB@puhyNjnvk&!7EPXXi-nWB5WvyTghKdsxUKhx~X3&=~kD(Ux{ ze(8YJWOE|@F&<0o&C)x3m*f2O9`CELJ1T8zA9oyvfz6JT)hb*;zqc>YKBPTzydt~F zwsWy7(J*D)nqPm8oGviO&oa8@O(Y{AKAxB!n$JbrI8vDdSoIM3R@OI`_fvxK$^B(m z8z%%C98}EX6Z$a+mxxKtNlZ zz`ysj|1PHdeVO6!y@g({fW3vaTazQYJw=k*8#nIkanxi{s+lffG*yXri|Y2Z9;&Le zu%W3r!pO{g#E}kfn^nJ-7lKJdFy}>U7g2^nm@;EW{#szj{P6zF2>s0=%@{a5%j&Fo zRTDmv=K%8RWqDyJJ~@v}^PT6(`<+iT@8aX3)7CV5UZ-L|uk<%hfp7i+u9tl3H&ajA z+4j!sR)>5@dY@ISUKe$N`{K}Kgp*{x+ZPR!XMbQcK@XVANyd}5Cky!)Eh2##vy?X> z5<}<8h8zk*{zf5RZ6*Vh2IL9SWlWhNbbSGg`mVm`cJ0XB+1zXkRWxt(!xI;}+4AM* z(bM+oZXeQAI1TS0;W#5%K~^|Hps!3ayu?@RXer;p7%g^cr(x~_xn!pN`%iH8dJ95i z26Zof`KZ;80!c+Z^}{SGiS<1p%0PPPq2DU}4Gxc7$DZ!C9*-Ugw;p$o_U7B7$tLh2 z@p*CEc{n(^oj1H}GrK&VcaHXs)-@mRW;k4*We+dJY;?ID$?2h6bCM;(Zb4DoDA z*BD5$fEY_5CXmd*82du*h8=>ZDw<62qkh4Ril1VJX3Q9c9linnj43Q2W3MxVo$&l> z3ic%~|1`n91ym5tWU`U?g2-ORAo2NPvjgj*WtH3#_xgtsy3!Q8B1Sa(+WGzc#3R0q z4!%%dNQ58zm^^j1GCKFT>$b&#T^co~Ln{F-lP+o$dj?Eb6Dj@9YseFG0y59G)3ZSZ ztS@rP4SSZY-D*}*xp>qIRCXfIY4jK)u)qv=3KCtgA2L4$GQB;Ij5GdO^kib?pp$M; z=9-9YrAv`BDdk;dY1HGAsA5|D^!d@_SV?d0XHGa1Bjj`nF}0xNXqFmQe29$B z72ac(no9mQ7)K`XSdByA?z2I80xqrIz=&PAZalTg|6%JKgFA`8Jslep+cqbf*mi!g zZQGdGHYT=h+qP{x+5GR_s;#}dFS_fz{8n|kerXjTR_N|=+LVj`E1bj)B5Z-jxu1xLG#PK^0C_$5t)5CX*6vmK+-;9 zeDcl+;pU0tcutaj(PP|&q#&zosv$%YqTcm1K>Y7R?ubC06CwT%Z-vF^VzYx&R!G8W zt!EWC5k9jc=E)fDzg!4Q(0wt!f!M_X(qf=@cA_Sx1HzK8uH;T~V|sjJfszWT9(It4 z>b5xk$>mh)2PUw|M_L)BP|w47{2-t!5>wS8zuu!m7xAn zL|+qDF-=MoaDrTFSii~fYBC3Kja@gvyT2JM?8dY?E%E&tc_5K(!;eZYEY4D&(n=yn zM(+q5{?JcE*R&@KOUVw`g7=zyQ0t8-VK%BHGrbkrRR=`Xg(Aq z{Y~`_vJzPNQ52Da;qtVIj(m%yPINWosy2GNc`GB%ym8!Ct<;~rK+cya-CJ_CXE>;K z^Rbt$>xhxq_J=XQhWi}Px_evW)so?HGnrubSdyWdh`DmLCm0}0!~K6)_ArVoK~J*U zHZ!x(*$_QOvDS^$g%bE=4oi~gGWM(bSldr2y2C)kafv;Wp2lnKNI-;r60}ii0H$^k z?8Kn&n_`W76$*dQrTfQ#BQw)sMin#Ze!Z;N?D-n*DgG2jvJL~;`4EI-Qo&vjj2(d@xg@K|8~R}`PLKCHZJt!o!a3v^CRhjv+<`Lo1ryAr4jvr@-f@i= z8M850@c;;r&e-$jp z-f9!K9oX-OISdCM?&EhW6%}g8_Y#6EwQGetZoGd<{7WSlM>Ess@1YuoxHBTZkhHIC zu6e?KA|BfaaqUA!L;U;XXJA;ZJhytsVpG|mlM8tal4l_@t!%AMD3 zfA~~!#3>TPBjjGq1cY{sP_E+IhvhT^{ip?Dnv~(UMRLTk zhJxoGvsX$#+nCgea>fwe6nLY2j||Vu^l`q@x79IIL=rlmf9Hk*Riz-Zhk$GndAnER z?{V-3#Ny+Y8$k`DlTx6}-(-Y{W?9ev4RLN~{$NZyWoKY!&8oG00Y~d*-iiSkrWk5C z5@&Mx6)7-yf)3F+!7SX<7IncBEXu#JnFyT9nCoMb02@VhvvCeN2NqP8eY2K80x z`Gu0U$n|MAR5Hx7P8&U>oPP5uHUlb!IsvxOZ6cEqLpOVX*oM(SgeB(pR0irLILSTMwy2TB-FI(j!nC8(@u zLMXFjW`(aH|0%~O=y`VZlZQFcbYfYg>8H10&I3pwz-v+o8iL!Q8N zn)CyYm41m*dej{8RA8vZxt&;(rAjjV^e9=guuwV;%arrK);f!kKEZW#f_<Pa$gs z=Nc5z?i$2FoQr|8l-bPy7TRF;vPa66FC{8pcHr&WanLs%1&7t<>N|(*1;*J^G2Fn74$u zi@7c3Hh=3QfHf@#RpSdUetmGPQCIhXCzXNs;t^e9uY%xprCYxS1)dKUvJ=6F@>x&W z)T@D*t{%(Bx%FK9D76?A8nB@|mB+JpctK!97|>#&$L~0;IvPK&VJ_#(e%;WL*~ONb zZ`l)sEiRYD&Ok?XUTCTG0IgEeB9#w)qbyulD7fDqWr1_fPsg9w37N*0%G#n2q-(4R zjc!+IvXvRH69O;@U3q}5HER7LfAheMZ07j7=z?gq@I}LOC8wAdhgs`&uH{n2wDg5b zgFV^dEXDOgM0W&Lkl_KQw@xWZ6iVbDFk3B3s51QUgos7l?b-R;TR^_GSLt$m} zwFDvWmxvX|NtMMJU>9qAA~PiNl>>@sP4%p4K0x)s?#on&7%ChbN(ql_SbrYx-}+7^ z@GH}2B>A!wn2~*y$C1t`;u7?vPCzdqcFk>YGrY#zad%0_{-0tE@^)(esOX2qArH26qAa4OLyHE^AH@qvRTTox{ztjAah4?|x zFqbD_9Tw#eZbhOLfxRSvlPs(+?1m-t)%ryBi&`)WqE;x;a&TTDU$Q44*5A4oo!{ z+TML?0BCt4*0ZDsR_5WI=>P58t^S$jLWX1Z9)ycyX1*PdAy7wKS2|D)lfrpjLCgn_ zwbLf~LPkE2>KfT4`t>_xi{z#rw>0%CgD_{DO@h>khM6WR9OaxQZ*4JjLvdH0g)gel zBx-lo94MAOMf_`TKlb79@^-WH3Z0lM>#lxo=Mxt#^1qKq)xW|WEbdEF-^^Kv_Kbv_ zROx*OFF1g&%TvhjjcK5v>k3n$!*(u|6!KsN*ybb5OUC(hp-}nry_;hxD2jpHwre&h z8A^V_O)gV`8?qT3w~WqXr7|OQ#|dX}g_idMN{n8>vhzN}Adk;c4=HZS4e&RWR2FJ^ zqw)7fgfuns3On?g!(CC)>DB9qb6%W+SwM;^U$g;I#ohq)TvNKC6(ryIV(?9Zl0*#3H{ zC2cTMf6aWy-cXUD$vzNTpYZ5vumR(by_@IT;mEJQlV5#-&R=(0I~C~lsrA?j$68@C z5u!0n8WD>@w{`_q6JiJ2w%Jt_<)HP{{VRa1rB8dM%8U2Kq&u9d$9%4y_A(gMGI@vv zm@Cmldf`|QZdJ(IggnnpSGDlkd%Le#eI3Lst`@1R?sO>Q3S+zGVd50w1K0?COY@*q zNB-XvTB}~7^B^&tm#L0hCCXiVALeT{T^7K*WcN%b;Nyu{3K5Hnf4}@%KfFu`J0-qA zS!y}#gLM-7JbZ?%b*g%FRGWclTddizID{%Wwrw3M9Pxt>N>r26y;_sZ1C-=sZy}_3 zyRlO7A5P$>{Lh{&9p6PyD!ju27n(Ms&;Pkkt#B96cbnqms`kOfmTj(7{-Ad)nfT41 zO`5SYs$zf7NAAK`ozY+t>OkVzJ!8Lsb6%|-wu3*SYP#VTa0yicadYQ?eYFA%n0ObG zwSX<9YOvkgbmGh16fOIb(3cLHiFKDdoX4^O1pQko5Vg%=rBJD4kG(f(wRkL^@UW5)gmQ%6+E#KmOJlP5hh9AVq)qyzBP+-tk-S;Nhdj`N`cp(~DH;PMRi$}sUp7+p&lvO;??o34GNIaqiFVv7CFC=`PMsNi(nQU=@fK0FJ zvMsen$B@S+#YK*RRlttt0$(m6X%jM_Al#FEQ!P>ISScSDTKJksyQwtZ!iT`#_k2SG z9$^)V?ar|5E#Jn)Ni!fQ*@6?3rH}w;X*&yP6azYrTP)Pe>TP?t++hJA2%N;9xtH{v zd`Pivf}mvREl?V?p|I?N)Py{Jk+kyzfYsg!mM|c&*Q>zeMSvyZvE!8H+a&EUhVtd- z@8QQy`(-Ebo{`Zg;52gkf>W_6v0f`#B z?s%3qxolmi=n-&?G4}H#POA2{(Fq}BkLa2!qRrwE3rZ(f?^@TUM`kw>R!Mfe=8d-h zW-64EEuoCXm`uU6Q5RXf;u$#fr5*W3q853t7iBgU5d^7%M0%}>k^pG~RvS!wnnQ54 zA2yY{uYT|dE|_RrIHAGkdw_1PAx_3h#Z=w3WJ|_cqdbd% zuG2V>Vg!fOJvlyf&#=)`#JO6a-aY-+y*B_A%je>67NYwdSggv*sn)ntdzC3IOTcn_ zioyxtwiPrk3)h0xxc@o@=Tt1J-L6Zz1Io5g_!UsgNI!Wz%-c9er6 z5!`KpBb^y4iTHOxx;4w^ze`s*yE1cQDDv%#@mMP#sA}zym_-ju=LWTRw+OH)?)#o( z0NML!+sutCpbG9e?Htus?YUP90N|hYJLUK!3InN+iv6lz$<0DXASdG3Lnn!JL8Nac zqUZjagzs`zh{Pl`3#A%r6)*VxMgSZ%C$c#$7f5im>@*p4*eI%P zJkc)Oj?n(=@1!5CaO0$AMfTND0AY>@0D%>{8S7g8Tj+_LYAI&5no}mZYHG1=Ox?wY z%UJzr%@d7XaDX^m{-*LBT5|)pGMS)JjswWp~M)9^NXw4y1=C{xC0UpdrI*0x3I=gF)P40%w*~>VU7C zOm!RxR)yH0;D~{;YBgzn*i;jrhV{JkWZAlTv1=A~=!4djt*Qn2fvtY`&~U2OrILK2 z@j%nlWc%;xGMtVaZQqxLA5H=|`SBO~?t?|fUmK{x6U{{ctS_4vQ9~=w zO*W5$wtwxOzSFKktAS{-mB;yUjxD)ZMEuXK8ga~!S3NeiO=T`bpp5iD^s1N*zwlkg zw3O?79qTlsuT2c*Jj10$|57iZV=u$z#dQJx1JFhS?T`?hEj+TFIM04)RGb;W!EqmA zYjr)P;DU1hE<@Ht+4_h2cKhVcUSe+L?8?iGbBlJ+wU4j9Rr~%)#6aeFG=q$*@Sbpd zK6>(IDxPjDa@RBOebnXe7pZZ|vgtS8*4lD6b1^B-L_;9sQk{QK1~R;-0Ug>y7GYB~ zi}=XrKX+FdVO{S*_|9-k#qM6(GInQpGfVt}!3FAZy1rX?u)6NoT~(fmwblDi-CZjg zXuOxUi^=&pya3Pph6f&pZv5Zu?qSXmnytpkeo<7`q#n`L4<-UlcCV&R!N*;d+Sicv zG`251tE(Y%DXU)WA4kEB|BexjdyZ&`GB|fL<41^X;d|74Kg0ud*jrOr;l)o(m?Yx! zCZIsfg36s<@W4W}T>}VT-8c)|g&5etMu6g=8f=i|M(;pazWQ}wMDP3d7RSYV;3Wj0 z&Euw9<0~3XsEO@=t^15&%1jbANEGzdZk;kE@w?iS8Yj!V8SDK5QYed6_;vi^#D*LF z7zoH1gKa||)Mu0l`#WEmvQ@s${Cr+C5#7j!@VcJulLL3W+G&k_DbsD+XFjPc#diR4 zQ{q5^{d+sN7=UT+2oG!A(W^{6U7oyVA$c;5fjPMuP0br!#-CK->N`3c;G1m@AA$g&>y5QfhaLrI;G(jEy^NEImNt)zRY)jhmPE56NC zNXuCL>FTMx4-n!35qi%YBJr=C4^{zd{Z7~&X(o3LJb3bfuNP=|!9TJfMfAqFFGF?Y z(&B6kEPyTZ_sxY13AHV6a#>WYmKP`Gw!!6sX|sXUh?norpt6wir_p?{2Q;zd^rR6{=*Gq9l`~2Q0hEg(-}`bY?4j$)EMROnY&2K${UK zQ*q%yxqLx|Moe|s(&BzyOKTh+nG9F-TyUbOVN2%MDcklZ-Lwb&te-E<0FcU&@%(nj3!g zFAgie7Ld4bb##s()T=aOG9}hMib6OoSrBuB{hK*9M^*8+k~sU;v;t0VttX$bEKSzMG^CIMDKop52mA}o8Y-XlBT*4o*4c`xjC9Qp;+hSU~;wKhAwQ0dr(zS z&)nquf)Zxu-XJ!$kywjMYZs3~e`~l8HMH_+f*!3{q6Na{5;a+3$xvX#ujv{iQrFy? zZe$;!>f?OlFl^VtLeMX-9_qD3PT*gm$XD+lwkD7^5}r-|0g;E;Qf5}3hy^R;V&4(j zN61@_&=@rr42QX@*NbaI@OWz~Gobu8y}FNMot-Sw#dH`y4E1+)8bz7UixQ_Ypv|BH z^{(DIKPkLs!xE7J1=+D(7RVPS?Rg>+KXuWf;9sJk3&@)k2OH`&I6Hy|(A9|WtlN-Z zRfBJOn^#I!_INl4$ElI&UqE+%d^5UT+0C3tij&C{6HZ(|bg_^^-f6 zw@(&+_aeNO#2KXtN#w-@IxTyeI1fb3Kn;C9q`Jvm57noZABPXnIGD>k1}hU#o;MIV zF0Ls#^3<-ROs1wma{ns06WYZ+rz1L{!qn}0;PY_xR#xbFc6j0YK5|THOl16mW@bUl z&nRlIe{em7iTnvGpbjNy59AV<;4IjIiWy%~YnZ5L99Ccwn zE(V^mJXdw74(!OuWna(lwOye{{s|+u{LwPyTW6o{Q>xfO2Vy=~ zCBY0zoaZ<|WjLr9+(KMJo{!FcfYDSWTJ1Lh&s;Yj{?USVN@!^Ic$A zpLf5w1`$-70h65;M!sl6W{Rx59PWY5kE12tejROqB(_8 zma$`+U(H)})xIjA=5|HU%m2MBbnIB~1Y4kO$sf{peP@a)HOxKXz?jNR)H zw@-l1blzY{VnGwz9Jh#{XLDD^`dxfjDk`{;{KC~zLgoEeuZ&q1tmLE!J(qoLLL>BK z_ls93&uz8fby!KW%yjh0-IQFcy;QeYwt9K{8@_7lDs%ZoCnVy~Mz8QZ#vW`8Ua(F* zuxL+59w+D2?Vs^vc)pO#n0?2qA?*F;?qS5LwUwMGAufuoI}OSs)*?clCyudRf_qn# z_G$GCH1lwi5;O>ReTAuTDKEYrPLf?!L#29i_%i;Nzj4?|Q%-$45c;iFT;m&;1s7H&cEi*d@>PV9=ILyh~L9OXwMeeY69~2ap5pH z;N2F1^AyUQ6>l%y-E-V28*G&3+KDJ8*GY0KaooTwJ~5Osl z=O&c)B#kCbYH%T6IvDn@5C4AES<<(VpuYaSCRYr;M%pNoc6;p}vlBrmY!*!kc;J7- z+`B!T5LnAP{umvtJ~6lUPEgs|6GGjzQ0+6;Rq^%>8AzLj-7*cffp?1Kbudq_TNsooKO!6&JJeA{!K+QoG5>XsRb8)=NXD;*Qk26| z&G8VEc8`W9UI4^@_)241L7fp@C0le z><^7m;7jb}AfV6L*FtrG2j|IekWz_9D{u_}keFkF+~`fzdl=frc)%ir>1LLI*M&o` z|86R=IqUOynzClyps#eO>QK*-m$5J&6TdZI7y%+ zs)|5ZZZIRO>4t$bR!L3->qzH6G6&?BraxF zs&*EAmWsC2qg)gDcKlAh?fs!Tt>vu6%OpF>4P*k!+wGrL8T2!33aDkN8VNxcOZKpt zT91?=HL-IDHdk*mJ$+zW_M^+N*HV#agSU?SV7@(uh_-^<2-{8pO+ z0d3Rp7*lkx-bWAIT>{P7l^)_KMS%9NwXRh&X5v8O7LS~0I#DDp9i$b8Tq z!gD0Js-j2S5=tl_5;C(owM!hrJ~B}%z3RHNsksR!3GYYzOf)BDoD z+Z(|iVsoI`!)pf``K#Ve=Go&|Z&xOe+=%d=1W6s&bf{r3d`{Q1Zmk7N$%}NlC`*nm* zM}c`iSfboxcWGK>WUJaaw;DrfVaI?e{I}8ORVS&n1+svQ0D_6&bb9Vo_Z6O@RBcHv zmZ8ieRsxYg9@pQ#H>WTA_x~Bvvo&FcK)iHiKmye>+vlEr=~>k%YZxr+9XsBJ3^K; zuiNMKzyJ5r4oytJZU5_jyu}-PfAr2ycGH`w5h|n2n5LA+&!-7Uz*9?0wZM+!%xSNb(o`749pZKX68GN^xtuvm% z@MTKO?3yT7cQ_3rwIg>Yf<57|QFtCJ{TngSY+3r%Xl9$v2Z2x3wdzT)Q;FzQ1wx^` zPhqe`%mICEx5OZ5qrMN6T3lAl8y|zoEn%(P;^k$6x>~6CHhgO^4-PYFhEy|=Ch(h8 zz_1IA)vl~qwJ}47)Nqzs29uv1J-8(Z@M$!VU^zwrTEq82RWzVo6Y7JP? z#cD`mn@LK$T6w9l=+N!&WSPS3O%1k#51a+y9G7lt5n25vSXH$)X(&;nNioxMwyqzh zmZsXjVq(gRD}j^Tgmx3zwSMo%Hek#$!JtO&8<=3c)5@Uk0Rm4(`$nR~MN=<7lAtJu zAMQ}%5dhno$QW)l4(wUxS2wF*7}XmG?Y6(8@Nk+K&*7<7H}+l7vE>06;7yjWV~{w| z9sT!aN%bvWOrr=Dbpt3TR%~6JRE+s^1ZG6BCE5oGU&&MpVp~XISYs6gj0-Ixp&S=O z9>WBr4%dnXlAo`nMAxDz`E;Y&~%0DgR#5$(*R?GuW=eFOxn<|DnjPy0E1mvbsm{IAD=KJpS4x%K)1;w zAmr#b3ZrTtu%GHj6#3D zbw#hC;#keA(wV4a?Vya%9pM3f#R}ANFR_5VI-!bZznJ*%IbMdn#Ntijb2TM@@1`wN zggc1F^g-l01G7gaN)4&fH@M%-hc+<>gLhWeV-)B4c!8(&Y$EP!bNnQ&J}0@AnmUI& zD{gT-7pdpjjcY4+{1BZzFWvV{rmfubhP7*ZnWga9BW!0LN=7w9#z>7_wS(Xv2gm0F ztdt2(*%FM2WbT#jhsv6?c_tgYVtvC75X80@#@Id0&z)#9y||JNlEG%ceAmpGDxKbU zB2oIsw28Mcy{2y`nV0%qm602PRhrv4WYjwWr> z{Z=8%n~WDLH7{%smWG@g&o{!SRS~wamN!`LVz^MD6c#zi9aQ_+Wrlw@7W|!EA>Jo~ zd;FNzhQz77UG59&mdgj%wscy97L-AVe)#zEGROYJ#SN)`7xdZVGuyqneMU*rDf z`3uu8TQ>*SWYg)IdE&s>BADvgbY_@b`oDnB2ZV@XLd6Ki)`<{b&O>tx%ZR!-1M}lG z^L{(sK}rKlFwwznA@jp#bD+izqJnxd_JB;_F#VNA{Vbs(kKTM4&E=Q?= zHRpyT?_~?^PJ|4YYK^R_I>r4mMH}B;J96mkUZttl?zm$wuljK__HCGj<#}vwGaEgO zxkdzUEnUaxMNLaP@jVC|62ld(Vgl^9o2euRdOrAW@**a9RkPUF&^jk$#^C}hpPXeF z0`gZiJ^Z)nG1TwV2VJLPc9jwEd18w{VH$kj1uug}Ve9VV!a@WNvaW>{6n5Bo6y>?5 zhA|Dl{%eg7P3vbvD(H|MP4!L+DC8S?(`t4+P9UjyaBi7okE1603)T zZs6|Js}nc=GcWi2c2rVz@tJB8veYB8WNB$pBWE0XvEVHS|GEds(YXz$x?=BGj!Lrz zXa+A2SK;YK-8}M3Tc?Lea(yV|GlC{I`SlU6&d)E2_yX!Pk|kcVd6$T$O9WWO&s=@@ zN{UpI)7{B%+pqZ0E)+mbxyJ1xhNUDJU|Xi`jjc7ilY!XuK^1+|yju1VRPS}Wq>_C5 z+xP#5w~XGCXO4pc0cBzV0a5&9*A4X@9e>d04*Co~)qfTL({1!$h|J5hZMl7pA1Bv! zwVKn9@KRvCK(Im*92wbjyiw%+f^>c$A}sLo;pFp?U3N`Ss=iPgttFfScYV9|^VIEv z36#;|O=Kh$i~c@8KVLuviG_%N_gLi%#bEtG#1T{qZCV&3h6%OlL(D`vuRXD7!^l|J zz+FzgcMr~NqQS)dALefuzq#7}cmzht#_&@)Hhtx?2jgSXe`a8omF`@TDp(@9p=clO zm%-M!c+Le&aet#p7k60j)K41dtcp3SU{qh#;!&l2XM2}&3k#{7HyH=GG)V&vsanV2 zDOJ!R;z9kDvFTYkbFeuWh7IMLUt~~g4j`*cQYDP5h~#9RK%$Pp99gyE%da8(Kz~0= zpGHE@MKmZ-;>*Bte0qqIOWy>ktec>TtQg4#?oqyDB$97iw0nXj)e4UV3?cRve?l_( zsg)gs^!>yP5C00xD_b(v8q^W<;^*EA>DrCJD;R&Zlf!_6E5*XW?{y4gv$oiDX>U7j z>3??;4Oy7GAnrBXwHsq)iYo_;E4(u#1 zElIa|&cSTTMSJe7%$sfZwaZJEeIn6b(3<~V#_Dnz-)uOL6t+NWvN_wjhKIb74`6e9 z*y^>`M^rEOz;0T%$L@!m_!Q4~RWW^-Si|91!P(ar@wblAl_)`ss)#`N}D4g&x%C*j!-lhL$CfvQ(As_llSQUG(621I} z-er>FCPf+`)P0`WG1O_}crgJUG4Osd>7Bps?i##n89jygYZD=G$8)He2c@I5zSteT zu}x-ks29;IW9^vv{rwz773xJb9GW~HJt3ay1Os@|l8!<|kbg{AuCQ=Yg0Gd1}XrNasV|VbZ#FS{O|v z^z(QK0Ag}}v&V$HDz{mZ>2;qRPI|2|1#Yl39&}f$Qq#8s&JI4ptjZ6RwkKv${1931Ao;?seoP#o9 z^>TeA#(cemiagmh3jvewID1$L@pcu8l-j-Yc5S48%H1iyJ{@~qF5&<0-UO*s5V{Wq z1Y}AM1Vr?I&hpdI~mrAW%ks_IS=8(7T~&InT0 zzCUIGOC(!6*=N(TctT(X>$6x9HpfhmzrSX@n%p9OeKqxN-{QwVOT!v#-&5A^fgVw< z_sZ!%b`alu^ErvT!o56zlfYZ|Q2rKZy2I}B+H zk;j|VI3zBA7-W$O>e?@M|$ z(BJ=y1sEY4h&SwUJRUL=T&BvmM%C^g-bqO!_BZ@0XARj2kNvf5V-bl^0D&}$+Yq`V07(-#b4jglh%w2Qh{I{4vPA+A z4nh(jU1!*OKx8+;n|nn9RkCp!kRiDJIuRlVxAf05+s~d+fN%NCW(?)C)XXkxWK06D ztGjQm#Vp}cD|zk2RerO-G@xJR$cKX!(?kE{S@xuj5tFPzblL+0zg$j?#C)bx><+@t z)D75ut8SZ3gCUhmht7M|Usii*j{G@Ib1Vf{I-e8D(`e(!PV-ykMKNZ!P9OUiBXyMi>N`+#r$QG>%V16#yyh4w$Qf;+s0R z=bo7p7?QH85$B**5SULr7X^Bm7mwL5l&WezAqgJ$B1ruS6qPkA8IK)XC~VZBY_(S9 zSN=TN%!CF}G}#3e?>$j!+}@N#u@O7&bzOndKXVy4MTFn(ndKEVEY^wu{02AD;k1GM z#^5=hOrZLA4|_6Pje=UjQ|;o1E~T^kK+S&TmO%%rUhFtv1~I=xBlR39?U|yBJW0nG z5ubwVjD|RY&8@=}&p!&(l7htgO=J7bYHBmZYdn$@UhFj8!m@}$fs}#oE@1`BzXsc- z%G~3)43@zV=d#fhw^sBAwPh_nX+%8GHn&(B6&WF@x^s^TJHr$Ce&7$E3ZADZ`mvvu zLhiI^=$q*K*$~Aq=T~1>ssT9ISd8P_=0LANh1VqqYa!GhKF<-IM5fkzr+yE&yS&=x zwDfYDrZNqKIYF5WyY-n@RC|K*4Z@H#ZJ>#CgXLCQ*Hy7o3pKcM`e6F})xT}R_Nntb zBEKw`%hul}_-ehviUs!|z63LhGDp1vaDa}Nc=Bx?QzG}rIMv^w&b+G@L%%f-(A{X3 zaID_iHtCsx1WwG;R}HD2^t29C^qJn5Yj-f>iFY2mP?WxLB0VvK9X0cBvVpELLY|No zI`g*UPd4YY3+Fb+1B`(cy5}S%xH&s&OqEkkY}QqXJw{z1Ko1{%2)j&w{k|}w<24{G z&LkkjVqHZ=RLkf%&mYy3ubR7u*pUDs+D8hL&gUFY`TfqNL?UkHiYL$u-<7ijUB4jmd^By0)Y_O`vr;xRIBlMV@+Z`<#B7$lp%D4~ z=lY?SlK9fQRw&M5Ir-^a7nkkucW2jSqW0@p9;cD2;YD2Ol4-|R=kDXX^RDSb)6exc z$11y&RO0eE573$+TKc~M6naBlyIVIv7|A3F7jeZY?5JAOVpXizH0Kg>OD6THf^Cx9 z^h26P$oq@{+VST$k`7A>#W6l32qkLm3=qNrZa7{r-eT`c4 zgN#4RX~zzU-4*ui6fiu8v@WEyYz zenZ>l(>gu{)_^k6eCsTjP;0o6n696L-2X!cTs##Id=8+dd;xA*)2YWexeHb>w==i8 zQ3)g}^%PW6iGh+*^XpGZ{MGU@(a@DXAYM)3F=3`p7Lq z(zYI-J%`LD>(Sm@R+OqPqGHo8oz7BCW)+DvEL%m&I$!Tel>Mgx%r7B3moW6_EqC_1 z2G9bx)ONQwTSe@&?(Vekn;{b8Z%X1WhXc}cMf3!`fHGQwS0QR4?7?^Y7$+#}<~6t) z_4pWw!t0=B=uYw~ES=f{VO=wI7QjKf3Kdc0&9ud4YHIcrjd<$mZ;Ml>(VL9`kg25I z*mhQnn|`{1^HfRZ2LjW(3cj#)%4q1j70PmiX0f4UkNydSv**gFC+cAq7F|YZ@GdMb zkMk=!3nRS;e@kJbym}lDP`pc*VETIb6efG)&}KG9-{QJa1F0jtSXL*-i9mE+aIb7h z+m#ReUIYY{Bz?{1i2?sDE4++}GA$l8&ngbwt^$dRISjb20@?9{GA`krvXJkLhR=Ju z{vq4%{{iKm+4k3a#svb3MFR#R{(s((9R4Gd(6zGtk$;)n+Wfan`BGa`b-yj%Cr8)* z2^+uI+JU6^yrL7p)nhYt#0J)8I#uB=Z$)<7Tg#m+c1zAoYY@onD?^It%lr0_ z1hV~blb8>)EM)RHIa^rhpQ5K!w@8sELOsxoxh7RhSLHQ~k>C2eDU>E7p1g}kwU%xfLd`+v}1t{x&0B(O=*O}?JXHOe6hL9wOg)Z&M*9i)U<^rs*E z!!XFpVEJ-CspL)u(z)GzCW!KP&t)&c_@epfa@13r2|x=tMEpHjbD=MzO5ahL_@pKE z%y8LxY2j?7N7ooxpCN*oYP%JXN%t+$-=HH{z}AK}z=j6Wrx8emWBw9(xpjUZ7qzE; zri1j}6=!L*H?r@%OhntmH4KWoVeyvhU*SOWV4|P_vXrbB^Bw|Ln18*;-U-_ZVT35Y z#zwWiF>p5S?|1r>%Y5|k-oGZ8-EyKoCbXf$P1vB-d&1?=uco((=-fVlmW|9EK3(=?FaL5L$AZ$o&1GvK?8k6`n*PL&vB~wW$v2MUo_8eU56v>J-&V-h8{@u zqdbFeKS_%EyDT4Nc>44Godqt+C7k5U5L&#bYjdzPXkUi8!QS0q_lKC&!npVgiF)M7 zV|6Jnh7lGi!!vy@NyVbA{?tiwh>aAflgy%qRA!DXZepY|J8UduR zxdG9vQ8^$mH@r8YRDbJi{)ht?xsvu~;*3mj^$Vq~;pVh4r|>sJ^C9Rogpx6&xr;}q zgrw84fS$4f#X%g+v450|)>oa_rpXCQDnj65gN2^nzI2P}p4hSGyd1yNtsON1f%DAP zd04iR*n#+LceP5ikH|Yk3`O%NnHNYOOoxp1y#r+AgKi|8w6lV|4B&L2ZxSO3m@A}g z(4sRy3AY0PseP~P3lrPBK{vxfICNg~!<+__oQ69&jUzb^S~;)I7-UQ?^4W_?>rf@U zDl5r6dkcds&Try zBtgl$9t1abgE>C`u*0>SpMOvn(^a}-M7JifCXwC~tIvoj$i{b}Un4vT>;vl~R3H$A z1kM7N_;m~e_6w)IefWl$^*PZEF^JFDq<%?K`MAVLjuqv^*pHkehgS(0?M$Gpk0Yxx z3hNr@kHY%!03rvFNJj)KRFO%nEFY-2JGjtH;=8;9b8T*cf$;o(-DgiXIQ@R&M?u#} z9Rjaa&*ggcXZB1{VJ=I4qkROZSp_(Dj&4m){w-$-)ex|>7-ae5i-W(K626({;2@!a zSARTga_|;!pSqeJ6<(vxyk?q74XT+aE0P?vgkt9pV3NG&!_eQQl@$T?=yyo{B_XW~ zLt$s*qsJFq1hEYNSNao`_nKdj(9^g)ulNBv>@Mq?CPN=DvjdYc61+^RbJJFmhtNbi zT_>{@h@V?LeySyNK;jAl_6SLl#3 z6}lmJt}vf{>GlCEY7C}}y2PlB-8;{$q$q83Jq_p>bkXl!_@2I@fLUhUy{^Ndc}o2! zl&m#56dPTpJ#R8#Xl*{+PxsB~$+qb(_VojHS{70USU2^aagE+_!{*uXRa|2}4^pTR z!dze97wr|z!K(YQF^x+tPFopO_ExNOvz<`|9YYgxC+Alpiemw8tHFz0{(E7)v`sQaMjf?qbElXhGHMzHHQ9uH||?uuCQ zpN%&QM}eUExIXcsT_Dwsy~^YI!N@DnKE)EeBR9Kz9GBoJZYj4+FH!EV0@gE#8O!7y zGha~-d;@0OHyZ}ROa|gPj?bG=S|tM&+qy<%Gq66H2V}+eY>av1SdE-IjLrE(B^2T; zxsZ__#7+@RS!@FQV6@KR$?2_0P?lw0)PBU^$p6LOTL5L*c5B0QcOxCr-Q6h-QVIy% zbazThcSv_5jUXW@sUY3msC0LH7wUc=A9wsS+xOl7%>KT)=2Q^Ine({UTIX8FI@Wa- z_MgnW63$`J?E&2f&z!wk?05muyTORN>3aLjK$kFFcIEDd zRU0HvUoSD(o1`9A4$PN=s3Viq9j;)C-l?L`5#O!&h$ ztuQ?vopWtzhVSYF_&w)AaJ6&*?ns`Ght4T)gi`n&iFWzZ@cYFoQrM#C6}6AvLAXN5 z0yTsd`!7+@cEz)wk4a{_6H6WPl`V0z#uY@njGzEt-B4 zJk83jmS@E;a1isO0KwsFVKCg=YNbHOY@Er>oa;n=db|^f=8mUsIv+!_DNcl)XV@c) z$UlJDOxV{5p;SzhuVmSo(x#;Is}sO3a{8|ZtM6<)NlN;hD{r5a+C1FE%Hc;mJGN^( zbKy3;==E-|)jLo0HEQ~hP-bX>_&qKsQbv(_*6qzaSmu)6OADwky}bpBQK@kot23a9 znPW6lKBH~yxswuvhWCVx1sawKqWnr?^OTRld)!_bAd7p6PpC62pW?MQGcGp`%_ndg zcYxVrKMz=>cqtMU1acq7J5+78A|H++uJhBQSn2i-_KxTGfDRa&>}d`CTZC>)Wg*GQQ^7 zjMGzY*0=CppXJHz!6A|{q}1^12y0vBdvZnPh;^@Cn=!`Njo?6QcvUl6ij=7dlWIup z1l{TQP3g_1I=MOb)j4vy8OY?8)m!r(n4?>^rM(+3CFPppc;~C`bt|Usi(M{qncJf6 zK(b7ZeAsMtqNfx)fISUSP(kW;xs(aKk12ZsnVZdw712Nhqm3yUfwYO&!$zv8yP`GA z2J+cgMP$?Xcf+FY6wTH1c(!$f9Fo@lyH3}h_O6HoSfkOKy1h@Eo{wm920#NPH*Fdp$WQGYq} z$|jAf!7B$t<1}Hlkf$N3^`%OqWoM$j|Hyj+@g^2j{KITK#y}f>)R$Z=%9%nL16K->h?E zc(}bQK&4gU=wu*WfrE8K3OCmsGy2@D9d$&`U*1w{f6N+=ITgJyuCya0bh0k4lwEQ% zHx`$M6;4?87)AQlccr`X>+<^!xw`Rc%0z~+8)kudpOK`QHzfPyZ^wcI=f8$Jv_*JM zIn#bIS;C5!u<+bYsSC!?{^nEtXv6F1!!&9@^+G|;eLo*a%Me?}7Dvsl+>Ysb(#>bo z@Aef+>xcaU&#U~5L0=lQXL1433*f=kQwl7zkpXXSo`sxh`;Fe=fg;?z%rgcRJ2t$T zB22Ak;Eomt!}no~s-qc9+c2^TdMn{hq&&_{)3s>cti7En{zrFNvbC;yVYl=+= z?R1ZtR-`Dq~h-Q6%ZlEb#zg(j!R0 zf8tbn^cY35|KkuIp>Awjp)1FxP?D>ElRY0^884xA&q!dP(LBgLUFwqOMi1@Az7 z2}PSaeF$sykf3m*VIJ%%EW77?aqy>M8`9X+2d zCRD>sdZ_%Mkr+&}M{-jx{SK(T1WvI~l}|BoZb{wzh?Qj08AzWoq>NcL$BBm={#m2>?NJkJsc~YV_g|zlNEh=?QW>}yPs&+>d{hu zI(w^J&<66`SG;D4JJbZ?HykgRfGBNrKN1=<4!P4GxkkSs5>Fty!y) zA+tQoo?iZ1gEC&Z5pp(?&2>OV24ARi#d;ig*KT0*)nPBX1J=c*<_SyXMtWnczA~{{ zVN^~kOG)4MZjML8Ra$-5c(kUiCutOY1Cep4H&2HVVs9MwU4QuX=PHZ$FpUxGHZ3Pw zp885p@!BSfBh-W!d$m^tKZ)&fZ?Jc#3{ljMx0jN~a~4! zlQwx1obhZTu`DU?>)YfC#5Lh*{X4qVAa6V6<DaAG{W}HtxOdspd^yh7yTb5-)j4?&no-i$RF(SsWckL#t>uo%|^sm4^4sy>G*wpr$5a@%z z3FO{ZJ6WxZC|B6nbZoM{M(kf&H`mgAL&RIxW;#PTJZN=#eS?puqukh|k=lAU-G!u( zUq8Ojdv&C!`~-pC&l2O*XdMnrt+~rOwg7@peM#fG@M1`O$t;oaEe`l+GhN^XS#$RU zYsT@0_`Lee1pIY3AZ^aSe)cJ`_H!^+)c2(SzNilAiJVd@ zY{ztrq6ZBkw~1p)x|G-cB!wqbV|xJypDb-H_BQle(-K&Wi!lxz_>q`7I_kCgy|AqM z+g5?NfG?H^^zZA4OUUXe5fQbtsBoydHJ<7&zIg0kRw(ML@V1Onv1yfy7j=GUVos$2 zG(mb+5aUpRhz}z+pJs_h-%psAdyE$*Ll55LK8gX)y>0L)>{~LFMl=-oBB7nq%c!Wm z`Y%8|Ok_sxr%_F+c${xo+3N0g_hc%WsY*LE!q5@@4(UBQjm6?i`H9rU&PN1T7|%Uc zXN;w{3eP*@Y64Omz|m5Iy9%URd<*pMLP=PC;n50J+GU982X$T+={g_GW_*}uJ)e80 z-+JW!7O}Wsfb_l#p`lbL>kgyA2TiD<2s2T6C&{t;vxW1mjT1^#q6QK|u8&-Ly*~Ky zCAWxSPrH^(5n5%f80VcJI0EPAieSm%@l4uV$%UuW=yFw-6DZU0!-Jhrx3?qjNHSJB zj<~1=K|%yJGj5MTOlnFNY+_@LajqW{$?DW@?I@~X4qnA_;7{!`3AqlvKLBIv)jbp- zmhN1>efpcZURXt9jT%a-j} zGm{%;m5;c}bOr_f>n1iH8#`t$cA06~qsB{Z*qk%vV*7qJD-~y6aU5O|FruCesku)e z2B?FdMZc@HW>6s#>{?IhNzc5j<_YENwru#K)&(S9tWnTGlDHK$EUlBt}yrMmg^h}dWZx*7SblFRbF*eD7|9N-0nxAmQ6=Rvqi1; zr5@{i`Zmx-jG`F3sj~&Ycp&kv;oJLc6T7>$tG3p7QbvLhx#ZAf%SRe~J8A0sRf@8N zOg0(@v-6%9mo8$4U+vFAg0L!$k6P{QQ*gOMMOe^di@HM*@vr#PwjO1q>ZOR#Ve`C{ zat@%vi{Xl_lzH?X8ZDA42oZHy<0uPAu-$*7NW5$Uq;_T z3@SNG=<*|t86$~P!(z>{38F523`o7hfm5+!zT9z9IMM*&w@==j0h+6QF*l?vu`~AO z1M}r?-74>%AIyd1d3ls&C259;yUlzns6Mg4b?h{6S&nr@YiEMC1M2iwP;?rKs2Ia? z%WU!zND7f~B`8hyXnrbC9k}_5V(+Q~pN}#I?JOVo0!V~6F_tO0p zHv)amun7)RNF2&17)F#6YG7|_ux4VNu9A6M5F0kA?#jKXYt!Si+ag~VfvW9LUNe$d z)79cs!dAe+y+v=B=9MV+YStt3Ei4vEwLYl?=VXb^IZa9?+@NKSYo8@a#*JuIj6$Nj zuz7sa!nFOY0p){JOdD1wuMkVj5=zxq5BB54hzQ9FAq=&R16V5wsXV-vh8(T4VN{kg z5C({_WBTk6Ke%9zVaWLF$crtuDFM?xlX0dL_RTiq0iS-1rMHt8lOvLC^r)v;dxmVg zggZN(4iY+uxUl-};n;lyb+3X}&Q|EU$Gtno(Me2&1L*L4sNP!*Wpurr=)Y)pQFmJ{D6?Opi9 z+DWj#^h}4ulsc0ucIElb_DjW2yBB%H$Yx@!_Im7d*{mFkhT`JTJvxfB#VIsQ;#(_S z0gRGmw>#kiInT9lOA1V7)s)FtOmEhojgB5a*Cbj@-nMnKSbPfkMd1vRK0)&d)ftEf z-A}K@1`C>wLl5Ul-8~9#^&X2AT2TX^nkEGmA^bfb1e;TQfFk+rVX*>UUhoxzdJri@ zVX4IiN9oy9VVQl-f~hwb5(AhU9WCHJOD=NRTBR7Lre4-)FETGdD;rjCKBr{Ud9*4*DLuio(yy;WdqYRis59e@n zMVA+9!oHsrJmv#WOa~|x(~WQw*cwQ(gbQiBo0hr>uXV>v=6$jBV#w}e^hVOO zcY+lT&rqsw=J96XB0}qN8q$eranYEN7vkKD&}{8gE4ml592Oa49(w!n|!aWb(GrOKhE+@ouo*ka(7DPmQGB7Q-`{> z97z=VeU31FOit8@1wIZ0?oJ>Q<~!t%8?{xjEJf>2Y-i7-TbS>r=fSLs>(#jRUfQLVo@YXqO&B{D&g9hg+_8V?J1PvY<)q z--ab;=2?rcCKAd$V}XJ=!?h}iEa*xMsD=Nur1_TFUKX+CoLnl;tJA__)h@$Xk(|IZ zJhvED+;B=oW~z@^X0u3}LmqPt#-mNSty-?-y&ktlS2a8pe!cB3T zXG$D0AA$-)$D*KNquG1KmLYHZEv+|I8QJ-UmULK1d3n|BKc1m%D-G@wVST1Hphn+w0}%L zyGR0K#_wnoNr8*$GvToOnjpGrLgE#LyHQHw-Bpc4I);#HL=~j9qe>y!C!x6JS+B?C zJdcl%sS&TvcAuA)Oh=5}3}Dl4rM+m@R_4UzZB{fZSTuruQ=+m{l$doj>GLLm@?$gx z(mqMMFqx@mKIKgM-heEVL}L>Co%2u-iIs+2Zt}7xwmOq$xnzIz3U#bSxD=|Zl&h2v zWZwRZkqA0K6Er~JA_`yGpK&VO_g;xkvOwAbWhse*`>ooXqe@J^3m()*#Yct_anq7K z$gi-TPs>q%4G-EU7>SkU2GN?>jRN@_uhh2+;#`dcL>3fQgp2v-WI|loUHQ-$`XlDSBD9z;7dulrV2xNa~Cd zVIjK>&S1#gMH``K;$yVtogD^oIb_5w*yr2P5`*{;CAhO1{^`TV9qil}PEeK9u05T@ zIS5jXVfo7Bn1K{VT~D5|DEb7ws^gB@@K~V@%UZL@T&{UOKMi|yzWq+LNl-t?dw$wR z{4^QINeXM>quXG^0%(4SJ7`GfAWRgv;RNbUM>v8E%N#812@Ur$qhxzLCEU}qSBEpo zJ(7&R~{4XNp@zLgZ<7&gO%En7t>V3s7K zsJ7`~WFn?$&~a;c+G{Wu1zF>hisTnw@v@-4Z}kP@dsX6~PKpRaqWL@?0Wn4vv1)>- ztS@r)_7kdOF2{PED16g>xDn^nx0*O}b*RR!h@jEP@qRuNEoI7?6(MBm%wc zCquCf=!6~E0a#>16c|F86oIk{r8;7;;HuojTBQYn9{A@Rx!+FoeRw*bJtBE-4k3mV zse2&QfBdLC;+tAp`Iw?0Z-9@cAtBOy4yl8+VG`yqebRyQG-`PIQxvF1bH(E zLVELR1&h0G-kx2JGFv29oIEyZuV|t{Tv%>BL)V}xH+N{>X|Y#KzHnQQ%&FvyToept zVgI&~e?uv$t06=y*JJ9Dwi$Bx@|j9#8*9PvERR_DL25Ejhn# z$3^4}*n)iCdrF_3BXcjjz+7F(@spp?zJGVRh*eMWN~GdyPT6wTxp;=nva$kxB9N@q z<9%|X7~NX=qcOGeY{tc{y6bn?A^7C&@4Z`@hBjYkv0V*(AiK~6XVufBW1?AI&&?*- z;)&#kK|LrYoiYAE2dz!Hp172$;97Rdxx;98I%%w{(4Sts7%qGgdfMQ%K(5(s{Aj`N z?9hD0t-SakG&}Qs0piz3)GZ13+{6SG#Op~-IS0d^W69~}o(RQ@e=e_wp;B4b<~n-* zrAOAPQPh9Gwqv@DB3X^alz=mFqy(dq&^*yl57wa_B6EoP?(MT8rtxf75}_%v$#6`S zZ3@>cJGMEu9vhetb3N1X9J(}qRR(eyP9zzp!z#AU0X_8tuIKS>;orcS z<^&DLt?Kq7_9ARJEb2a;hK!&FRa++0I!iIn_Twk0Cnl<1`H$p<<|nm8YGFacdFV#^ zR*E7pvaBTybhD)Ty%!#AL!mnWsk|zQrf6z0%&VkF^7LZyZdP2b=RIl;?uHp2FzAno6%#MyjRG1ZQ?&LBRsI&*mv^1IlD9!dy*h zw%J3;L{vQG7?XZIw+8EH;;-X%U^AJc?S)>r%#!c6y78h$$8Ti}%aDb~{Mbg*)!lY4 zw;>>hemR3athLkURQiPGinVKNB<@>dYZ@M`XxT?3!vh7PPFJHQajglyF~;VnE`6Mwb9YgOE^<3&JVu|NXQ3oNU@5&E)-fHITYMq%C9YNQ^a) zM}E4CfSvh)MjhFGE9Mxl&<18m=l!cx46=LQct>JD=cF{L% zGt&Jr0LdJ10ju91L1SiQ;>hG^?BD`y+{VD#*v8h#n90%Z$DQzMPPPsPrpC&)R^}jg zH9*4WXku>cplR-81|Vl{XKW;84h&>Gx$s4k>|`Yu5Ji}fx3=HT3Vs|j9nhhOan zipYRT?t7=k(A$s1uMivfB+r7b7JB!zVRpD&)&&Fi0_7PAL`Uaa8T&j_o>|3M0}t>g zDOYmU!mWsPYJfq^RiMHw>Ug{ghTdf}nRsMZ&|17IVaK9NdX}?C%0_NkKBwd`&g6cZ z&*5)_BJH>#qN%_qF$659Kl()eGEpmYLnb=|2Pg9f?c{fZRZx{Pc9$|YwlWeka5Od& zx3va-ZUB5rKaG|Z<>990^UPda89s70|1N(mG|zP^8%yB&>Qw{}&s6`ev(vkpQ}!o% z<*?xV$|7T}*&<3$s^Ge-9SLC{HNguwZqcdJirj#wogcTO1n}T=yN}1TD-^c{Ws(`6 zgo_guPr<)cRzC%KIyb$rZ$X3c@%O*`d_4KeZqiv<{4lhlkISC4KGh|t-l18-yw2$U zc2M3^;CJg?v!3qp0Wc~BmhwLVs~^x9*r^&D{lFno6s3a{P4Zk28W${4YHzuxfto`8 z8(tq8pOmL(PHMxo`+eI@(5MTEX#3FXkvF(jcGQdw@CincNhxuh}#TEE{s246@ zQy}5&XE^GOvcI|nC(l>V(}L~6>Mc6gM3r^&G33G}zsh`?Du2Owsx(Eq}lNnL^VNiRH`*x~@K}{*bmrB)c{OLDO`DVTxyX&xESdfm3 z6iXCyui`1ae=3p0e8)W&Q--O5F*y`{Tis3ff&oM&YpjhOoaN*7o7h;5(@HiN0P!DJ zpZ^#Q`=cY_0YL?4D<^YcxJ>-v)Gz^pn&VGH5=7}FMG8Dm_eTT+O_XIcIZHFyhtT_@ z^E`397JK$)ZtVOH;R)|N6ogG-NZxEtM|`b5_LC1DitNx$?Oo~CMSRjS!pnWy(L16c zY7;vCen{S;#|p`G&<56On{2K$K~L$M-+f{H1c?2v zsR<@dkAA!A8QwIBaUQ^68!#x{KQgEvk>#rH$H9Y*mB$V| za1a6eUSY}U<%|J6kEcfc<;Y^VwJMXeL`M`;7t zpZf;eD+ZkUGd#?5OnajE*U)W{4vC!#ZB(*IAo2q-JV>g}H-H zezoE3+7)-!-~AK^dGX|dka@V%9P~%9I@#JK!oq5%;dr&pVxIG?;FINF@tGT;%u6VhqFrYg&QF@Sc{kCM z;J!~*HOc)fkrK<+R@?;YU@wrjRP=Zu(-Ld>rQom(If1mI#$-LUIXE(h&EC?| z3sq-1(JR@`XV9Ho{cm^C%qBP}4-ZF(Wr{R0Z6R(Em=gPHsFF6*_@KVvhInFbjS-mH zsPGn8c05!6jPeSNY;Z4pra7!LS#f)7K`F!TEi?N`Znb*Ps;D!9_L)yZwZv#_wmPGB z)K;gBaenQys}JWqV|x*$;iP~E1BwD_2~8((uTQ;EuW$jmlx}jvs4}ke zQD>}&mfAhTe2Uf!6mxeJBQK5>aoOwDR+Jn%F0b*s`v6J3&mgi$ecJY@)7Xw7k_)K+ z9B%7Bg8LyKc}Nw_0h|7rSwEou5IfY|9i5D=ML{5AM@O}vzw!`2{@(|I06-20W{)BM zd^&MAW(@c)5wLs9Kl&j4o+26wOZwun0%3-(QV>3BvTuqo%HM#eTMv#*99-i*Ug2e9pT(>$0(al)Df?nx>x&3?z%QXoL~CwvLfa+}R*=>Y^wnb9LAEv~l2LLG#iGPRnn1}=YBHt3EOH*p3ZoOq6E=og&#XMYCuQ5S z_UY--swd4dEXw*8E{&5Fg82#$7mfXLbxJm_?0}R40vhV_u{SYPPL%{_oHQc59r?Aw zbbE$+pHdIW`*OyqQ|%_RoJ)V1l3nzf#HWP&0nc-kFz|3ShYq-CqP0rYFWcJKHM5jR z{tnD6a|7li07?X4basDabPshRy8)0FJ>&;KNo`>IP*6Vv010ykV-Qe;xc?(}Py-qK zEDRH31}q>%fds-GAt^m$ku-H#9f<)R3d!A9(RMpx?`D|2bZ^eI2bt^%Q=_`3k0fr( z3T0>halj`xP4$UQLo^p6Ibwo(Q@T=Fj?l`87dfXXJXl^uY6$l5RqV3oSz*o4NHVFS zplvT-%FkfoSLTP)CiY_0BnG=OK`{+pD`Xwqd;m zxjK$L*Tk|kQopt5BDmf2m6ABDd@haEq^PV@SvcsJ)^pm~eR95cP&xncUd4d7^ozS% zKARq=t? zNm<5lOB7J&!5-XZ`iJ4C<=BPX20f9H@q&!Ml2J~TkiGEmGz>!vjHDeDzSGutHh9Qa zt*64ZsIES-2q`(~z%bQAr1fcxGUapLGW4x37VH}zr$MrE^mD51HI&!;u@JNa#cz&< z^rJq9^j}(B&LtSin7+SOszGb{Ol;iu$OT{R>2$okTQ+7+^mYB4(eP-!G1zc|!Y)RB zAx9|DF$LYB{*vwveS<1e92i7H1EaMOue^1JJy4{xF7p$n$9Sj%XP3_0e}^!D@Yr)0 zfX)|y@ZsGLKaLk>C&0S?+g#6g({#4Bd+H7_6=Lqd|Mjy#S_p$+MGD;aLI`fD)4u7I z8wvCS7tJDdS*_iZSDS6vX}zsO2?@hp%t()ChM$QKXfx=4)cuw|%+QDPp+I_?2oy-t zoo0c=z{>-#OFx+kvXBc^fIXt$ba=F(4ka~5W~)||f@56Xe4^<$^H(a7)HP1}bZqMWd@zi?s zX4kWB?qr)NK7EnZ4`1cgP=D71ha;X{W{!z!Bxla%mP5aSTPvjfN#Dq}^`6gd66s$}81M-f}&??^g1jF}cSQ;{=s+hZ6{zETh#Ao@AFu08WG zcsIk%N@QHgUd3H->djwjsjCdnj$uM6Pxcu(NBTN{=xSbdr|Y)AB@}fiX(K{i(M(>0 z2CuPT>T^fptHq+4N4M2;4jRn0s$y$19L&OP7r)UuB;>H^O8|@yx$3h&g459$jOIV_1Y_p3F64+x52&tx@fM*A zjj-|dZg)S4(G?5mLYJ{Va#2@z#ud+dN7-n#;OAt{=pX82{PI<%5XWV%Z4aK;G#C<9 zlzAnGk}vV842$8=4jBTvh*w*MrWa04(`QG_rUG21Z&OTABP==gcI~cEi7V1Zq#0dZ zm^%=k!tIXAJwYizizkb2YYRXhIQ-5nmm%wPn7^C4pD{SmCc)UfjAHb9vC zi^zRqYxu+C1OJx&ItpSz6?{caRt&PS;KHPOQ+vOd@0W{nc(yrk?)KS=XWM); zkcA&!cglJYCg;4&SSMIeO?M!!|EBW-$Ab@}x5Tz59rO%hM~4{oxi}lRRDP_11U&{B zJ$w6&4J(Ni`oJ!AMBkanymZ1dyB5-Yo||vy-?JYvT>a=QxZI`}8;n5qBP1_rleJG0 zltZYjJof!@l){8%-k?y9VjP{#H^XoYu$tWyR8;0=D^MZ z@J0dfs{fI#{v)D3r0NgsorJN0(~rO!88e{xoo5k{%*)*FPAc3&Kb4L}OBkirN`DNz z4Lz|&^x$kdGQh0cZ_dr7?a<;`+{wEGD`mpql9Jg{gJI7nmoou~DQwRo6u{O!Y3SLMb1Mslh17UNv41f?RHXdZXv*NOPTFA< z=obxnKCma0N{vb9iB(N!=e-Kg%encY!!)AQ9k1T(6Z{>_-AQ?Z2kQ3?u>QHn)AvL? zQVs=z3{B$P5rGMeA(F7&4eUIBV-Cg~LU5$9rPFM+;;2Ng1a>d&v|XPfQNIfjW?sbs zFM`utn$vI;UqEFnzE30j&UZIh?;|+H1lb#EXk;CfttRD}-W;1I*Ou4LMx2#6Wzoxp z1_annY3NFBa?+L?#!6>PB%ec$zx~Elie;L2MF87u1=jxnq4Z<_f)5RVz@H6(_Z{GP z(-c$o&+^cuL+QWnnj>I*CoIip(qW--c}Az(vOBt@-q01fi^%$YF#u@7!>b}2Uaj2Db2eUY`|&_uody?0JQ#xz zbpcL;(j}qfE7?wae)%4BPE|k|CGsQkWtl6}uOsiv*b8tU?|xLBl@~0R>?zydUWKMA zfuUHaC_2s@&w7NS)bWf(MPO~T9`hwuAK{Z4z0EA!GTZ3j-xObG_N~S707U)3`k$^* zf58asyfv33gr9}}jc$yk1S%s6ge|)-v0}Fou^oPU#?P>Hx7OE z&_J~2Y|3LaGL96)>+-{N-bFNNsAf-%G)5|BJHVs*s_s}kz5#UvS-s<-3I$4-F~=7) zY7f0}UD2djWn~S$+%9}ENWGk|MAzEN#o*dO*IO29zdH-tOteKlX+?W?o#DKDc<`Gi z{aRlC^E~N+o&4TGGjV+Q($V;ridzj(4*;p;gGc?yfF6G1e__>a8j6nC3D}b>klJYe zkzGBILuSTSKL`tPTRZosw(`JBf2_V|i2w(L(DBej5|Ruzt-(Hot;|(M3%G)^e4lET zhAc~Wbw-6F(H&ktGh-WMOpmaa$;rTK#^s)=sU&VV784FKAEX?kJLVe>KE!#pL^+cW zO9!=`1V&Bt)D4#zM zdnfAdCsi{^JuU_XGI}3Fp-}4M4GC?-o4>k`9It-u#@&b8E;`d~Qq5?*N!Y$5p=O}& z=CFywN|kK%y#4l@MUrxx)%XK=RRQZ?k`n$$zSyX=Oq|lC5aCbsSgN+Ih*4%rN9U z+1NI5?~^c~n?enoxeE)TO<3|noZ}AjO8ym z&O-?LafFMSnmQPp8aVxwll9a|EA#iPS*h6OQ}6H zVg3s0|Hz7bnTR~Wdc79dV+$XnV8E!ptH*t2I{$e8zS-z?^9(%HjyyQ*X%K|#sJ|o) zQ_C99*r;c6vf5IyBKRumbaNK03u#xi*NU@dK3Je{iP#=(j#> z{d<%3M?q!%y|)U8=U)N^Rg>Iv+DH$H6Et|0HzBCsD=Mr0#itwl)u928me&t=nnz}- z6E7O8^kVV$OG@~>2*S!Xk}J#kYv}SM**e(QVEA;fgLC(5Wn?_N7DI@aL@vQ;V@4xV z`Su~77)h1wr+G{nvo_K%v=pg_v^ot57$ft4z`{l`BFy|I_7!wr`p)PuHbBoo7@05! zDoJVEMD5Eh8}M#hOfYC){Olvzo0u1;_Jofk*c9#xh!6#8n!~E$JrXAuHt%<;UvSUq z5@R9vhxVd4Fa1DZ0BA|EB8svpNm9tk8_?JPl4mHuSE`6ZgAu6P1Nf%cW~s4#u75sGcB!I8?W6 z_MF)}*b1i5jP9xe2~l?Ely3U)q0N3YQS)f-nqYGwF7a$J;1S6dTgHTFBXdExFM&)O zK4@-3eg2tv-%*RwE%5YgJ45sDNd9XQ>R(VKY#w@ z2fg~gFfso1aB}=38~wF-e=x`YtmKe#)UdU3wlLU!*`k(&!I>7!)aJ-xEO(jOS5fD&D>ab%Jvl%yS5a_w}ywn9R3nmG?r3k90!<>owlH{_worQr3kIjGHGV#cPLr--SG&92(~F8p#Vh2(Op_)Y`rQQq1S)D7J4^E+<2UHm59RwU~?83VSO1cbkT zSuOuyX^}Ca7LcqDWSC@78384x{vd9VeN3j26M|$ zQWWK79h{YlKySr%RF;1?8qM}O8ncn5rAqT~#sTu9MaF_>!aT80UBFD4_pCV*P1^$| z(RtF7F=ePAriIStie$qJE1YaL8=j<;Ubi4Tex5uc-LQ=9cYGOKAnrCPqsa%~W8RD` zD#(+@*ZT4sx1~byYjfZc+SH^QQ-v z*10`JB>Wqaj#NkN561K7T=MT{@K3vWC|Vz;FKrt=$Z>$h019U7pa=AWROp86vI z1%o;b^fqrf)(#A!V_n7;A=#}jz4$M>SMlQ(7IlP<#gfnEpQd7&$gq$|&92r$MCVbdlqPkt-8f2}_MtmOWsWB8YT{{M`7vWP=KhkuV6$k3PE^1n_b?&U7Dx z6@}3YinHH3=DtLnR)4{RZlk!cQXWg9T?jB2!pUmAoxgSPzy&XwANKuEq-%a^azGEv zsrygr^l!U%gwgB~H23t#MjnMa=-efe!gNj0JXH;R_RYo*#%4pN#zQoaep~9D{SnUN z@*QhmNy<4<=kL82-Dv+|E!7FtW--SCluKApOXx~c+7v;WB(B{6j1zG(7sFMYk}6= zhX(S!G<&}GWVSJR%hz*=W~+M}o<33&lV~|&c)Ti0t=a7vx&^A*g(&J$neXv)E%sct z93U?J^rZ!9#f%eH$Ei^9?Wpb*E}-A4oYa@Q8|U~bGonDn?&O}Yo^JJaETz z(2FRiwC`q~UR=X&&;7f;lk5jE_=g#?HeeY6>%Y&O15AsHxv?wo*8|g_0etzF?iE1A zQq|bh*zJcUM2TYfKaAl3a==;!B3@s5&8>#rE{rF&92s12^Naq24SiWjH}~<%qZWK< zEQ0P<+xTn(GVmrj%a8hVsHc#IS$j?L=se(r^+#>atwck_HPX|A;9Nv*TZX+RZ95tx zp0h563nXN2r$YC#2Tnl~F?o1q=N?EjZ6trp+?k!EVCXx-%BSnQIp??BUR(LCnQ&y! zQxyk5@y~5c{a3l|zoXNC7>wLQs{s&A=HiAlNu1!d3$cZcJu0xr3RbdJ!i<@Y?6oyP zn0TuljcvUwGj<@>O_28F8Sg+|JeC_V?g_cORmCUtv7xGh-aMW%2HD8h_$+zP;aZ^> zglK3IsIkr1Wd%fssS@Z8QYm!KXZtgA**V|3I$yMZQ>@6~k~6AT=nS)6TaVo`&^)`} zU*t%S`ptcQRqOs)$MP?=?t|qhe4kT#m_U4h?0>y5clga$^@k|b1T1}E{r4U4dnNT> zY9s#UAi^;-N8^_ zwsJvog|8xZfnf$4*GCRww|-ht9&BQ`V~@%reDTc==?I0`SURPn-GA{5i$mkVyz)k<__0O&0p+N_b+`mYb{=b{z4_;>- zGY}>QNI=hzvGmf*BiV-0>sQ6laQ#u0Ee|w2(nf(9IqnwhdplQ$qm9~6Fuc03nPmpj zIp(Pfwpwd~RJ2JeA$7GdGpw!n%;MqU-C8F~{e;Iz%gYUdyRQpSgj%?2`QAgCq4 z1T(kpTSB&?0=8))40Ge|_QVu%_|_l@2WG$uI;Hc&aW)qX^wmRFo+#a|t3i|?lpxT7 zt3&&I!4g{#H(pnJIr)Mb^6fJU+nGxSxzjRV=E}j^%rG@0r6ov`q{iP;Wc}znnAZTP zgTVU#fwcJHeLw8ZRdEEdiwIp143okzQhxP8ZP5LoHo&5+E84%sE-`*bOh4Nm8?+Y~ z=E{{&>+r~vn)YB?>8qr}QZW$KQK#Qd{fz49EO}{gt?$$Y=nd zc3>F;>%Sk5er81vLop9={l6Z}Gzm||Sj1^sbXw8eoPv6)Gb-(MH%3qN^)pKF zP@9v@JlcF?dvFA9yZj3GoLtkqrwL=z9IjwBp= zOSKcBLo@xcrKNJ0fKjs$Z?G7PiOm$N7^_K;$Ic^WDM%;rqxZK|eA~5+l#?pD^K;ip z&Z4#7vSY+KmC88)i9*09P5%gyU%9S-u!s-XNU2F0nLEkbn#$XLpRj-M!GvF1d}$-9 zr6)A%S~PHTFIW@{6=oMGgsU%c29eKxV0h1jrq&rnFOB zgehBN44xZ^YXm1Jis>b-4kfge;3#?vmlMi_V3=_rJ2Q}cb_Y_`dv~pcIdUr3y&a*U z_^wp16_tHn8Y42iVOXA30M`v1i6rz$kF~y>xPt$?#c6ZD zKz)#B#sl~|{L}FLCFcD*d8Vip@InJeTdRlI_yg*{hVuu*>&X%D!ZOjy z9HU^5W05#mCZr=&?e6C6y#Flfu@A#bN-SJ)VEl*q)v)K_l^23^p(-FQbThf}C1&b+ z^Oc?+xX8HuLuke#Qa3mYnKn$gR|GsIJ7jHXMa!=GQ&;orbNdtrh8gzg<~33l6Mt}B zUy4k0L!p}|j4gK2{+cKHB|q_6I{0mm?<-Q5Z9 z7F>h7yC%51YjC$faCi5h!JXjlu5+n+{kmSg?%(uGz3y47XR!|a%RTqV{`R-`K1T9R zvP~m7_F_Ek`cIJ%S#T@*|C-_+P~!Z@T8`g8 zeD!Y<%cmz8Zy>6ux`waw2}z)~V#pmbs-Z9whY$cRkIOp7>5mS5Do| zcebS*thq+bHt{$14X37z=$|rO-Wzns`Vgx;60g^g&&8yh=aHX&J;xn5?Xe+n-X1?tz>cb z2g~o;%F(5=;g_eVn-lN5Ki&Hp2F=j##atNRfYAs1{eOR@{T*8>nE(P-j7&rU=k$BS zLf-aWCH8N&$T@G%rH8Td?C zvaqAt4WtADD6mj4JyliHSq;8fd^q^BgJ?Zs9-C<&b8n>SjT;Rvpb?j{7wSQI+XRlP zSs*#UqFE{uN)?9fz?~(lX9bSWQ**-*V+cduI+!|8jX653FFn5HCl^S3a;6l4fk}3q z`!M6^Pl8vWN0Cr{s|@N4u@9#JH_0kVlKo|`@Qv7~!~b+Fc5yyCIh2!cEP0m~EzK%B z6#)hUQ~$=hb>&Z8^-8Rvw^_hE#sKE?uT_5k*q~JYdkW3_p&SG-#sTR0cV|5vU*#+t z8-4Q~5*1tEHZYpTF-<-FmdnSd+iD}Im)vU(9Isv?8?NGsROKEzoR*4ZT{z*r4@nOA z(K0UV>10;`XZ`*|zy~!i)?K_}^e!SdUVOL`$Vf@j-cU7mVYyMDAFahZ`Sf|s?Sm-` zS)orUbr{dOv8V_>k9-z}DJXst(Dr>_z+`)4F2DNY%h?r?G%{X2g}8C$F zf3d{l-_GGb#C$ZkgWVYypbc!m`7zfwHmab05jcBGUeBxhjb@~qDnaL7QItORPqfz8 zWLkt{b*c|I)b#c4Y7}9_6O1jfvK{cReey8+A_puxop&RFHZ=E&C9 z*LqjD3^Nn?8Cz`U1f1<+&hzE1lKz{C3o@FvJoNG-IIAm5cr6N|EYhikxp*i^^J2*` z^gX0D*P#>$74(Goh(56h)|5BuXMb%b24EW!yZpwxu_>Fo7Ge4AQ^&2gebo^#%R2#@ zO~_!Ky&5tYD=qnR4k3&=%k&i=pQ;A_KS!XnT{Rs4Yvgi&!`$zf@{ip8zpVy;CbZx9 zBy$a%MR)MKG4+oRMc162>rlTH{@Y`1k)lasF$(u#j(DTE@Q5`y=}J;w8!U>4W|5=y z0^iE9cOcs`+;@S<8OCbJLc*CO?sS^KRX6ufTivz_g>&e}@MG|k%-}-yY0Y4k^)bpg z&cB;CQofzZbEF*Y{Hfyq<0z^0o39M=DnAz|;+oB2nL+18E% z_6#kJ5;>C6o4$iuSj1NSTsq7vL2C(#W?v8>?{1=+)ylc`@ZPo(si`7TmGW?3c-DsI*on(7-CRIw*a-x{vp{^WuDqhRO1 zscrQ8Z2qqm>g>YBswD#!>A#k8|9gq;^j{F_{C-pXjdK4Dz=rLU#{z|!7^5^oe>|b$ z$X?58P%-3mznW5+;cf+jv6aMrx`hY1Ge#3bjmk8``MDqlHCm`uLXB+>Sz&uKO2Eb( z_KRDSYJ+r15AaNTD0&%V*;jqxOCt#b;iI*@LaNBM)+CYs{v60^%wD?8-sLr!QIqhrtsEm6ihh6_fMF zQ3YH+ckQZlRzDg0lPKxg2dZt+$$Z$V!B1dPt%M~mn5UV0^(Nfgxjy=YT&XSmUfQFK zKPX{M#780%OA;SsGaK>RX$Kv?SXUIr1bkI^M6s0y4S9oO7_(Dgmi(0dx|K0&=&icK zjYDbrbglFHC#uIj`~p1|Ftdk&DSK$ z+sdQF?u*;;r}=AQUpX0wH#o%`NncN zLm66Hxc-e6dmB=C^+*FbQZ;Rw+l|UM?3weIGG4l!O14USmrP#Vv&kwKWsip<#?|tR z-;Q`wd0<|u19l5Gpjk@%SzY!1i3hjkpKL~XPqKCIIPI^S^!^>hzJGk#zqh>p4XFK2 zpMVnrMXO$g=$5XbJl>w}5fc(2E*9FFm{l44o{qBU`v!bqbI;nB0oaAyao)f3qq zs#slr(_;w(%vJ!Mjj)lFsx&kN%ZALZb_%#7aVJUYAj3M*`oxSLLWXYOsv`y86rpN(GKjN4xG)C(f1Bj6JY$e=BfSu;bq^W34`7_1Rx!p#k3}ut*l7r zkApxW`k}YCKP`W2lY9PQ$P|WqmGn^t}dcz`J?R zXH@O)w;I||n^_Nxj)fh6TuYz#wzrB;*Zv@m(w%p==l2tJm0zC~(lH&Iv@L1ttMUHG z>q|iDh3Dg+q*Q-Y*C_m@J@5yF{`=Sd8w2^j+=1WZ(7YZ2n6|&JGWbs^bR`oLTO&s| z``--tzaOg72)#^D;CEbN4Ei-?X+|omT4)JXg1Pox%4sE$xD;T`SA* z-ZIj;MpQVKDDL{H6n#L1g_z}KJ9HF&0JaOsN~{tG2rf*!BI}quajODL1PwfD{5D4N z{C>5pH#5O5eocou@naatEGg%=3a^WL3AdAYj9ofOc-#ArdVIHYHv_qV$#~Bw^!rO| z=|7x||7Y2>|29*I?TS=rs?R?~pp-G&|KBTBEx1w5|vXQr5n-*#9YIS;+Tv9Q4 zdmRtH{U?FwAB6}13MzrY%+bQw#=`ZtF4cS0> ziqbfHyr4;(H0!QXM@)h9gsIjhp0C2bYhj-uk`au}=Y;*)@?+04sM?a7VF(V_r(PCd z3}@EvdEdnln51nf5Iri{f+4fp11M;H3 zW1I-4J9MraSRP6jkkI%Ty3+@OAn}?1J6|m+mpp1aL{ykq((9AW)8vi=Yd#I&2L>=Y zuv{XfT(>EUv-?p8@BJ^Z-XMbsEtXzShCkV~HhD((uXe4&zWphGkzb<6<^6K_7b#%g z0o8v>&;JfF{=xCjLaIjAM}R$O69q7imgF>2(o0(FojpC6mAc&k)7;0AHot;{pIXx- zjj+H204CcglFD?IVgkt!;(gnZA~MZ)w0yUkSRk{Sby%K|>IJQ3oxl^N7UhEnUaA5} zqpGTnJcL0cgH^L_O!P;q6>ta40qnYGlH_m#x44-xU<4u0H``F$uE1@4*Sb+?G9E~# zR*y73P4obso6qaA%DXjBJ^5JLw3863{)eN$~2dF?M>&9;4ncGI?WJ;c(xOxqux>i(os z!}avg^#ROjIbbLO#$PO6Z2u;2l(loQb^f<7?SIgTC(MXt3sA$+62e9rIOeOrM4JEV?Kb(YCaS*p%)a;U(Ut+%oJN9Z7U@No*eMV zp>kVIo7OCM*CUUkTiy(RK(JC{z2k4oxe07{pk|bw{PKoq3h-0?snsQl^+598<^31! zrN7l`?+fKOU(Wm9`g@r6?|Z5B_e#xM%!lY8bbn}IoS->u84H}}<7mE*{4`0mPUaI0 zfLRAdTakete1%7+U z{fddPY^x5kwA|nXd~?B#Uq{-JZ->huP0|_t0?I$|BcXm7prYb=4^#P5#lmJZd+=Vy z|Mgq!Z)p9$h7kUKi~Sa@4ya$~qE>P2a;#WD3XOb;nPiujrKkE)95oQ?ws5dFT z0%%mNP;sbPv7S1>>v*vQ(@Y3J0F)zgMXca#gKXjpLAmS~lMF8tJm~}f#JT^mjQJlC z_q?y1|K+s}x}a+2Dqyiy08Z_H{R#6vfti31G5_BK8DCw;J_?I&AfTekz%g&Y&Qw%& zPqbJE?Ju`Bo5#BDtR7fQBsW;iT{G_oDYOSx9L?!L7_2+d>?kj=&dw2e?C1@M?O$X9 zI-y%CMp>Z8Z7tL3#9ScaWP=-%;i8j$a7@^;ly?oGy9k-9y9P2!i^+gDr0qos^<&Hc z^c$@E&If+RYpP$i5 zLG6@&(kRF1W?)`8K3C9t7)-lbG}q=8kFANVz4>fUA?9co1v|hLjvO(3cnK&^fcWx z%!~>7c$+Nc8(||e-)NvO5!Fxk!tf*uw9zl}a(%TFec;<46KnAfM+=P^D`otS!dX>l#pz)94+b+EE#{aMZNM@#Epv-$i6MBfke zf3#}+w&4Ev<)^MSWJ&!3EU0$CF8%K(G2bV#aB@N(prM64Z}kCZ%&;J*LWxE}B!fWV zb*<1c3AmdpTqeC-Z+*z?CgikRZ9Jls{gQFRYuT@Gi;`Bf=mi$M^tGOM{#RE~gZQx7 zD~2{4UmJFGeTO60V4dj7)A1uF(@$bCmguQC^stm9YzOc5l=Vd=xP!jMdA2Z`*^W`B zlJ02FF3?OUu{(jLU#Lf6=%6lm1>fYY$<%*d6_KUK3uY1sjN2BOEc$o(cKHg5=?iY4 z`mKj1nN4l^1a24Dos3j-iC++}D;u`L(;kR0oUVH?nl(oJEF*XI19+{M&i;`l1SM&` z1i=OZ!c7ALLjU)jYj0;m|NACpaJ8{M;ahfG{!nxF3WN8l!ITm`t|4JDby%@(r*C+m zwK}0DGgT%tgg!KoY^jZ2=%ZTE?Z&rK@Lem`r8)kzmfUJyhh_X1+aJ#=8%ZRaPPW)EB~=qC&?W zY|dC3ZU@57`LXK0o18%;X+>x`)Lnz;RzYhH3qsS;Pf2a&-j#*0!RnMu&EKx z+-7CMU3Bqa7b#q8qfYwTzj*VV#CMUQgrRzgnWaHuwnQC?Ccx=BFkPu-#iWcBzU~Kd ze{f>cCWYwNU~ZfnHwR-uqnsjlQUXE2yu@s^v;=7}&gJJKT+3dVDC3Lm!v}tNPV)d~ zliNNl@#R@qUTze~Y~u+D2F70C7NGJ3L*tI?><|F zwl~HTWw=UelNViGs7NH9gZS$t}S5Z2x-u(!Zc<$=4Fe6Nb6fL}}^Lflf6XCRj30>M03o3WkOb1?=+4 z8KIUtEMMO`S>TJY4>PDAROSsdyig?L|j9a(~5RGbR#$M@=@y)OIs`6<4~_lU>1< z!C(?3A+HhF$Kx6^eeR9hfPfpQqe>6gr#aw{wl=OnT|(70&?w9eJL}~l^B-qaj+k1s zp~8l52(Ra3Qv>^v?|xEIHy<`9NOT(IC%DCC6${@+uQD1f(_)bnHUYc96zYAH!id$_ z!jaF6WJa_Y#Z+{klgRep@BFqDiUD~8^IkeMTO@7m2p_i4M5V^&V_#eqb`RnKf9LKm;kh`X8yL4T1 zDH30M={t6*VO0 zb#zjzR}lC|bl;;x%n;WWM7G z5;qks6xQ-Af8axW*BbayzCIF7a?e0|z$;9~2`kled8iRyg2X<)sJG zF|sY9%=6+I5p^`B7df2os$+8oM&Srr1!7;-;&_V52gOWRi;kyVdnL zyhOOHL&S|z$98xlU!EaQB8k{qSQK%TAM5=;K>I!Y3%7o_VHn0jN z_I%$82yn>R%I855V*PL37rnvNs6zSlRCcN~=(=aAHRIJp?%^5)iCSSr3186~ygRGa z5X%TZhOq{04@^XISwWV9;tYPv9yvgAoI}V_1|D^&u%E@98S$2q;z`+*R@75@HpYL3 zTQOIg(WbBp(`G3HdPH_#pD%YIP2>h0P~;xl)lLrsodJrvq;XxQgORSrl_Y7|&e;um zJ0Xf@AZ6X}z#Af380k~d!C9&^#}&toO+!n0p)x+Lr_d45^a+r%Q290%$(V8$vk`b~ zOr3U=K)nO2FW#>1_hfF>JpE&`w(md?PsmK4YlPe?>4qrUWdUEwHV0I`Yir2?E#--| zY76XMv9hFVz5s$^+hVGRN^#c6xFgT9uxGcyC0~n6nzgg4Yo~H$w!|9d7hnG-LJBgD zOs218LSQscx3kbuFqi?1-~l|b@c$=^q_kuzZl# znP}~$I@-VpAqSGOR+QhWxFIJYA{d>zXTnjqIioq>w89d*($gyqNsh+*@`MF^f5g}1 zoYKT&w4uET^W(^+l;Rfke`9$vp~*@ma4I_}MUME+5y*q5Jl2BCn}_jzl8r!RSnwXBN zo7|WaH972;Z#Shb0pZ$E+8=cFOtJ+6gyQ8h6@^7fWg!ktJ-99;J=2?1ux|G6beGrZ zI7~UM%G(B_s#hv5$TUS%RoI|zv=`1rnBc^-&T6@CoVZ;&4S?|(smxFn^z<`&;}kUy zs!YWk0$z}BaC^!}D8pfy5bwVe3k)>qNK4J&CMT3B*4ooSn)wTv23GMk9fSDli7}*i zHDh#A&U_rRK^5;_OW!d2?m4LG8ipGXTLv9MvWxN@{o`8%;Wa*+!MVD>wUyU&_gR;|7S{#QTCgev!bigaYxCZg*12zxFS6F*2m zgqLXg6f5Uw=NF2q-!r=sh&fG4#cSRpV&o)f#;3euxAdQOh^4wh&KVXfK=}$ps!&;; z%F>DYtov&N?Zm;oQWw8s#(3E8dZChsB6v-=Waz7a;1x=rA83w@2f#{mVc4<{oZpO- z-TV^8>}g7lG&)Yx9IFF`HmKNB zfa`lAmGl)Ke+dBxk^0mVN_yYpS!y-~l9A#>@J8%@C zHqK?O4Xn%E=LU}3H&tor2t)|yLe!uN%F4C6Cqn{lN5?T;C6Ab8sl|g&^rUuF-YNaG z9&ZKX=!5q44H+XHb)AxWAH@k5A zyq9^RQ+);AYHvR+)y>mj4E5~F%%}Y%&ywh|lrrq8)+`yUK0ta+?CJr3Swjie;YUct z>2kBdy$oGMD}U+oKxL+8H373j_60;e)_nH`1buZiB7uNnn9dp*K>_xK=XWFEl6`z3 zQb}i^mvX;CM1IsHq~l+XCNL}B=hf!FjsqkNq5SN^2Cy-tNJ!91j!+QHxD;eJ4Y~GU z(|H_riY(SA#S|`b^b<&)UG=r4NVOjtHYMQ_;8&Wuj3H_^dE{sgF)Lrpw2R=opg6^K zc{(tA<c;$X6bV-G#LYR6FFp&zAb(V)Qk&}>YgeE)gPLz%8 ztPxBZ)i}X&pCvVkcU=R8S;5z=k-UEIav@R7tV(QQD~xhWHu7FYSvLYzk5}EnsCK@?S4s!^0){X zoOaKD74H~n=|cQ5qHghXbW*)}o_mN;W9+rIgw=5&_8iwOqyJ(_YJa2=%?(ss)zN#y zJdF#^_99I;SwdlMXPA$@=cW#3-Y?s#0Hh`y;$<#{5gk1XI#ri(3R_Dh&QgzNBIsyq zNIHeI<_kN&$sBNLis{VNdPt{h9OIKBbnjvRtT+ocqBU!ZZh6}6;MmiH;Z{S@g=Jqn z*~b|ycDOGEE1we6=TjM?cHuBVXC%K^My6YdBL{32Mp#?!3^Tby8jYqg>(gZ}a-511 zBjD>SLqV2CyTiouJTpv_M%9CnwJR?sRT+0hA`E}IJa7HN?lp4WzMS#dWXSb$U2Lw` zR5%3RX2v9M5<;tCqx-7{qToEE`evaC%V13o7|S}RU8_y>m$B~AB7-Z-=7+YQ9?C1O zywnUOwQ+~#4t(wOq6Go=$zx2)W9_jW1s!|gu{X;(ZCPk{<3r-nKgMkXti}2y$(J?O zFOayEVe7~-h7wFY71+{N;oVGTg&BTArD}oehx@swgkl1-WNm(N7M4PX^mfP|VOz|A zfV=Wa`-!pFB=bUMJzhasq*hZ@KNcqJUajv^dg+JU5z4YIh5~+*`#p)RwN53Q(qz<8uDFRwXa<4;a(4K{qB zf&-1RIHXgFPcWb-2q>S0R3pPW9ZU&`F4C1uxbekc(27=P!? z*9s8{n|?kpq;fcCu;9x_ExTJLOAub8B(8;F{D!m4n_>-%3o!>vH=_7DCz@#8z>b}U zxKwbehF)o{6EF=up&#e^M04b@Df4PpV#i9NiFaUmG9Cj0F6LfReLd)G;j<#QjM z@W>@F!P<7|nQbqzlY^8j5!%G3gwFQzOht&;v%q&F3@^^28#F~jR_X0FHmt`LiYOxs z-_LR-@^!Lg&m(0oc9N_AJJ5pNd3(^5hd+j3IP`NDQyf>qcS&Ev`b*qsSZG`NpIwbZ z;1IwJ`LwrzWE$%I7dlmNxX-R~drnN~`Z4$8B*lv1Z8;@4#rmq~VJx^!BTJDMa(5Tx z#DX9n;#p{_QOrK{Ro9kl?Lo+8{)#Y6={2G?8#kq`mE>Q#+muD%?7GPTWJ5H|wx)c= zw7!LrI6Bv_Tsa1h9t$=dRkw8JcIHYl$yqX9f3&dv-uWHKG4&(R%@_Dy63v$p-%z6u z>eOC3^xu0xy{1F=K51X-p-)6&r5d|TXBN*lcw7f}(*Dedu9z1q=&SpwP;TjdS6IBy zl$stL*|j=sE~@jTucE&^88hXFmiBF}8-^yav_ZW)MhATE&*RPyo_Ds_7uVP4+c(H4 zyl0{jgjjabXtGSxAC@wAaB-CIG2-u8R zT7qWMNA8sP$*d2mRd0}!+N!2ZdxN-)EnvRMcVHGJ(7~P4^{rgNA*^5?VJURvb-W2@ zfn+OSiX99&8KCkD4YiSgD^PjBlZ>Z&AVWLGw{gJs%MGrGOuee2(Rh6Y_2u&Auj-}F z_^_cLj=$xE?#8Yzc!103T>UKOO_YSj8F*g=>GAV*G503Fx9cty%-ktt|KYG@SXtIl zVW2TJQV-j5*|^_{uR&F56Q5+A5Jld2=<9>QnWVdvbVP?HjltRAn2r~*L5`T6w_118 zI)Y=YG>1WW|41ZSe{ipf?II3B(&`~?&O9*exz^F^T6ZnbRsSBii$Ya!t{s=e8jQO%dA%m*y>xs%y#g z^x3%HR6Hvyw?!Kqk4+0HMYG8}dobVtIo^13J6T-Y(2~M)p+^ISR0k1$ptNpaS{c5F zhnI^43eh;WRZRkQlCLX3fz%7Fv{O*}VI`o7?S{%YgN3a{!VOb6tQ3!`Qg66#10~6i z)|Vew=z=p{tgY`;@{Cy0T~{+esnT6m-zzedo`wH{3bi@LpztV+qokDAayZlPp; z8VZ<&3Ax4sSQ8uEQWXbfG@&m~qlxAsqQYAdU4{n3L&Qhw!QVZRXz!{Mg{JN z(t_aSNq)vMbs0^A^cQ!tft@Z|5>8K8Bax%(m3L)qXIky?@&Bg=(YART2q_@cxf&1w>np5XHlupsG@*TrgVVI__^*fDjPWKwC3 zqp&RJlf*#Fy8h;0hRm%$F&@lJ5XPgj%!r&W&@&3uxqS&wgNEcX?>wAyKgu}+hBCH| zq&-$}xNg!{$zNGe_e`Tr8`7ibN`;J&;>{_!wsE4whkl?3mNm~?auf9!l59@COqrcy zjp!nsAiDRZ-KAmdq|2&K4Q=_xPgp-UZJFAD8^jz1r6Zmt4dNc;8ex{si|k4gw*es& z=GiLQVABnVIr>Ua5@_D>#RQbo=6I2zLT6dC+#iw%d;fbb%aq|4l-6boLhu zD6=-BC>FZe95mh6rDHaJYSTF#0;}T$ zYd1+sKz0v>N_DIIR)vpnmZd(m((!hKPPKDDcm;AXX`X)O z+5wRY(^+U{%tnoijBH_{Ww>F6fDwxeE z`>-6Nk!SNlL>Q>JgXMU^B5M)r3Fz8gcD8&{sXhVq(A7>P$D$Qmk_u}I?k?`UebISK zbZGIA@8404rCuU0Se{tb(}pOK=s(1NPy~4n&sUhd{&=0yxGnG7UeARlqBRM4YvRM| zlZS^7vGT&D8k+;NfDRHU7gN6)dyzE4!6anG1?vG&+_;2@SbLJ8XrYjp{C#n`6YK$a=E(U@g_hqqPNh8{GKI z%aXwFD>61SbJc9upXxWHTOF043N&8)gb)qF8?n3>o}_K9tqM(P%_bqoJj31bK#fX& zIPxRubQv(sP@Oefn~xL==713_sg*7-d6#m$s8~Fdu`f4oZ4o#HTYCwXfL=ff8;laatKgFxIBmkJJX+OmiS^(_rn|PTjGk+ss+I zRl%3vi`l1tc0;@3u<0M{vcX}1Xkb~fSJ=^6S8U*{PqN*m8{4!^{*e>n38}tPQ@qUF z91>mWWQ--;bYmYbd)|2hC1kNl_j+6A7|fJ*z#mN1^3K(4L*9D6-5szcO^9idk1p7D zeZeLjP?lD~e~N_2>dd;=P0`sZ0*bOVupmeq4b6 z7E7K?W)@uHb#Egj2*&}uJbJ2@=@h3Dlq0`-cv|UGKuIECAK&xx(q4?F;~>f3hVr%3 z>zo+89RvE6542FAFOte-{to<8nteIxtL2!YLX@UxO{bER@&1SBygI&pXFjjjB~5rf zy&q9z!8s*KtIx&Ka<%WfZ&19brA1LfLk)E+=BXf~PB4_IbuB1z4INY7ZQFDEe;^)#1WKWIsu zNKdHLmohcSh2z1qMGCl+e@QIP4(K7|=P+o!uE;jW2-YlVEUkI2Q*vKAuLlqWPF9KT z9h3=I+Ux1W7rbXuhS&R@E$TUI`U9oAs8+1}Nvy{}N;v$BtxojOZ*5paL;c#5x_o#YJ0<2pcS<){-Vzhf?=hT7lUrmHla#;iN-H6H1}q9A2hzDU1$koBcqlH96>?wevQr3C6I5U z1I@ykaj?D29?`(vXD+MKcMU==h`WdjeXWurGThV>%3L}yp}M!sRxX#Kz&hveQ_(wlThy_2ri6@-^(b^cZn(yXY@dYqmSZ40ZG3Zz#z zO$2;d1?)z9XE?BmlDtvo5qJ)E$pPPg*?mp?{ww`!lujHjnHeV!PJw3-upnDm!`R5+ z9Wm~FqavZz&tCH?4FiwJDHXIj!I-`Udp6#jp2ywU9@!$Z{#&+i=uVz+J?ZB}JMMW9 z^tqcr&wm%_05Y5u8%7zMk<3a* zr{PtZ8gK_l-c;yklPLa#Kw8IY>hC!vXq~_6I{d{Z$jJ8So^Hl;7(vS8Fh9fJ1b&gd z-+-L{Dq>Gr*jyFMGC{LTvmU91(OX;a?Z6A%$o71S)YEVqlr{%HT;Q7Ind*lNVG0*F zqdWGK6YFXQ?|4y6Z8IUn8eK|E+xi{I`X_`Nx+Pmqm3IDgw91g!xjOZ2>Avp*GBhB> ze5pA^9zJ@@4_amxJ-LQzZlx;g8ab<*MaF(L>2h{^s&?B>Q?MNwS0F~o6k&O;dF@a; zmS#GT4le46b#ASdwV*ZZV=`*CY-F?s>7(63rwFTSGAYVd1ikH4u}YFA3>au+^s&ca z`KgpkVTMuVKYpF?FqWv+e$qaih2)|k_M-TZ2)P#mEqR4vERF$(kU!O^Z{@b99_r30 zMSaJz1ac|61r^c3$SGPn?I#+GtPIq8vn#x)6U)ADDD!-p%o(GRKIZ@F3-l;c#b&mU;{sPROeBDTV33 zjPy9cVt!=`wVyNa41LcDYrcgtfL2#F+U@p%Nsl6`X3)qlDB~FOamtnQs!cS@4x|r~ z=^j}o6O5L0{SxK|i&K%JLk>QYA)MLdVW(ng_!)qrH4i(tIQtWjJh2JA*cCV+$3l1f&T_;y%6^ z=S$74fybvum8Yu_Qo9CNs|KVFLwXHECxHpS&Z{Z~uoBd@zAG`ig&?FL-XL1nl7@?^t8fHYgWKpo|-Uqn@P7D^4XtpWPXQq#{rpo~la zr{haLzy{!6fOU+(?11%aNoAY zCIaxu0l)%A^dEu%YrtDZ@6MaQ;Q$>ir~H<$-r0K9twnmA92^~r%E~(h%f-r>%YCb@ z-ydZm`ggHNqsihkUydX=ne=139Y9WRr45ZNh`pqf>+2ZYebG9ff005eAc7O}d%7Ya z;%z)3)mDD$?#%7=c?@txGbJdX@p@hMBYu0;rlMNEIQcTxxtXH0{C*W2An9pZc({<{o8g3$AIgQ;!5;=K|$#$5*Yz?L) z3`cjffxtfrVNG$FfO9$=j4oSG<5inI8_7IiOkszEG_GR7AL+A2c)kTC$@`3VGvPH5 z2E!92q9ZUn=HMDExTUNQW(&BHfhDST!{m0bPZ5zxVM9~rr=Ugq&!ZAE*%NN~kVsNx zR~FhdJS8}ULx1{W6YR}ksb?stCgrnPy+}9*Tpo+^jLVH2#2U%r1k)$n5V8?y0oIH+9Lb2s;Fig5af7qgD`iouab}N{vVCQ?y0>Al-H)|J!U>57z_n} zMWg4rO73!7@ZKZrmhL9QR$0hUc8+>+KDsJ{c{xe^NKm+^Qn{oofh-$N7C`!1HYlJq|7e0&$=O4yt z;fj($Qfi*@Qf|^B)OlHUqa-6aPviVBagpeZHrNTEnyo)CI-EPSt72F;%NC)4bwSJ; zI}rmt`^`3{&VZjxK87~J=~pArLVxIh1hte|jl#4CV|)qS^6stkp7^Dl|4miqyBB)m zB-p9Bb<1g=OQ!BTn}-+Eae6z!@lDwv=g!947?;gu78U%XY_v)_5z z@LmZaddJuPdT1LVh##DSbMsjWRi3wJjyn$w!QE{3KKAfd!RPdz(b=c@ltguxk6Qvz z<-~A{<}Wm_uO+dXD9c$qo7wTFIrrQj!4I`RUI-Qt>G;t>E#VgD3tf7nbj)0f9p>RzN7_;QC+wCr z)N+;D2W0QNZ~9@%hzu1XucELExgPNSNS_V+xB;(M>w@gXseGY{pdA&o$DC>f(!C$j zkbjt#ujTSU6TgPN?iEFD6z48bCqxs=2N8o5;o#ZHH_T%oMKctQ3-Bxob`%-%dPZ-m zAR6OaEUjN_pm>=U_QVBL zT&}8`4|vID{>A4Xv!P8Xmd+%n2hBEcr@`;i?Dwr1@FTN$DI&2iKS&Ro1bLs|`BwBP ze$cw#W0VPBtBMD=sTvD#2}6Z2*UI$xT)hOrz#J=JLj2Jm}#^eF-ie5M?X#Bne=&BM4G&VCaDX}qGAU}nU zk1yGF)-WL>2|#p!g*)Wl9pmO?hg5Jd(rXLFq@05#K7f*2h}dY?B6{5aurX<;KRgk@ z>Qx1~nqRqMrhB~C-w%tPV3UlympVmai)Y;{;Iu{G=y( zR&OZsYQ`Lq6=E;-qGyH`fNxO@Ryz#*`fsvH+iieHHADr3c(ZBVsOxx*&A&3v-wKW zES!>*0}!CEC&&&JRm%t-Odn8#f~QSP9xJ5>6(88Gdv}9ue>o{OBT6Y~vkM-too@i8vGT<9j_0MsKYF716`1jJ z^h;P&ra!*QJ+BkiyDefy^O)&!^h=jAs%K~S96XFp6y2wW(S9H1J{oPI(4fSh=67=q zR;dw7?JlLj49Tw@TEath6U?L0&UP`Xy@0--Nb`uOLi}0$vNzv+pGHPefi!@gz~o4l zazB{BQ9D)ctscRqaW&*XG<9IhGw9%0bdF~9DW);h8-x3t9%VSE$?4p7+Quo7M}XJ8 zr+7UAJY0!-DInZ@on(AK57q?p(mah6m_E!QcBE?DBmLzoX*v&CI8xXF>5h)6PGo+v zkM|2QI>^hezKq04j7TJ4A*p>*D9Q)OE+>s+r&?y>o=y;v&IVd0E+*p%Y_NxsM`j4j zoH}JWwXYc&!&ZI-8t8rs+O>+-IHh!mp4V+4S0T}UVTUOQ!$vsxIJ!GbSmcr>T5 zAWR{Q=XuuWA!Pp91$RE{^+zBpdgPT@<1W5@@0l{>K4L3|bAf5Y@9u zZRNAzq}%ZL(yL2`o4T(tirBXB1W=g2ifTf?U#$r>GMJWj^wGXZK01zC)J-pmr((swusn|VMzFWAsZf}= zG+>jO-JH%xKosUV(%=zj!E##XE?xBIZuv;N&Bouuv!&JyCp|KJ#GeaPy1aw3Zm`i( zgD(7aasHFX42nY$pY>E34M1jLNfi^5cC%-nxJ4$Gso`Eao-dYCTbEk2mdg#UC^Jn} z_@L;QVk|>q6`-f7nE>tRWsr0oWfv1lz^Tab7Js9@?>v&!aJi{1JRp`_*`+Ye;V~Is zm?q(7#?sn%)YWvku_A?F1a!dsYzac+0i9pFEb8&oDr|e4_!$jYZ`<;RzPg6}9@Ms^ z~9^Q=VISg?U&LrNS$yQ9ol^m2xUiB0#9F7V1rD1=SKmkkdUb-6+o zgMPTRW?hNoGk=Tq#2peU%GYVQ}lsEO9CdhP_3$b5Z_ssP)0 znMqaS*!v=@8oI!}K_A@2j86gXO2hthuHK^Y#*+Auuny@YehZUD{KxFvxC2^^!~ezJ zS4U;NrtQ*=NJ&U{cZZaubV+wA-Cfck-3<~-34)|_Nh8uBUD7RmelNQBxY_5-tnYKr z%vv+YcRhQ#Uj4&;aX-)9*Tn=K7>UgiA{+QD1NS4OrBfR&(V>Gj!Cr&+J&kGSjSf>H zURuYomvp1aVlNK7@aMT3%;!T#-w<53DftLIe8c|rD|vTan6E@hL%)V|pGsgCIaz5% zZZLB4Ua3M;e0`}?MSM)_rcl@$w3C~PP4mO>(E=KmOMc~d1BS%3!&mR}!W5^~iFc4! zsYMJ;jvP-Gzm{2U?C{nW%0(|GzPV_}; z{TMriyl_9#f(Gt=sOK^)vuSXoSoD<=Q7?vr7jfb z6Rp{#vCE~iAMATxXLngzkY;)}j538~K#HY67bq)8)UJVZU zbg0sd5Vg_A3ynB7l4oY9&#c~9JCJR3OL*tbEODiJQYT!kR$>R_%~XzTWaWkBEAuB} zCbgeqwdZclzjYY1)HT&qU3#LJe~6xr6uGkocBw~Z=Jd2BYWYid>rfVjCRm&N z=0*}BBs?5!q+d%e_w<26y{@@rzr%;xwp`~G_r=kajqAOdQ=QS>#xlKu;EIT~rZIaJ zuqb8JjjmEuO(+9Sc-wD`V=yCo9ao!};W?do6b*27cni(Nz4uWVP+)QP?IicVBy{{N@4=r1 zRX8_J9jRi4Q4FEB%F-6u^SH$mF?W(`mTa0O(oH&+?g~?3D&grpB_L)EiJIYBG$Yu~ z-f*g>CW{UhgdM|@`tUJHeoB~Qpss(*#~Si<9@D1nKq+FWg?}r3!Aq{@VGq?lh0W>v z;Uj{YnxiTimxI8hQ+Lz8Il{w2*JN3ULl2X>l%ygy3+s?mGl$L#?fudezYUDNDz`eg zU4EPB(`HSAkJl_NYxay|cymhP1@MHBJ09mTv4QSUgNds4E=}Asys}3H$kiuMhJ;!) z))rB|sau=( zm|Qb#P^{z`k?AHwO~4ae>UQACwCfeXpnt|RzM{SL^^l> zj}@)&3{>GyKyA0jAo3Xb8Ak>~oNCRN;JewxP0LxAY>-W|)q;)uO0b zqF*Liuc!*n{RJmGF6Io~4WDN65xl)XZ=RZ*76-*sT1&2Gp_ z*}Rv#riqLE9(Q)QWv8Maf%xX*fK|0;zyI4DfK5GmfOOdE56!pV>u&VccBTyafGoS2 zF~g7c;cb(S!46<5Hve9n1AcD`s?mKHg#fMofp`)?e`x)k2i-GD;Ypi3Qo!65ChenC z!43IS8b3%O^L^M{b&K6~w|DIE(XjMmtz}jn+C=G%TCE?mfa7iNROcOQzV>IkU+rfpBQ&H8wZD~XW08#d1 z2N5O~a5Tf^d@BQt#gFg;p6)43WoL~QyL4(s%;*?Qtk8IMoJQD^n0)~`oAh1DTD#&O zC!W4m^!fH#Y|2&-F@VdYW08%ljNpAx2=_)+0krn9f)3SrU0~Y78aA8zAFm~zKX0DC z&fR2u80uWfK0i-1@{Scp2 zGB$LyGk0*6Fb3%y*aHet4nH{f0XffSfTV9AAVZs&kxE22a;$;zz~65eHki5YRRwP^ z8SVMWK#dCBQQY$24LR}ia+maP%|;9kq6)>k5V5CdO6tzy3o|LNS(_6qO@LICiIV?=+v-e~}>#*yjR%`{d zE4D7yU~i$cqHGKF>!wWWnmZSoLu92r0>H2pIJc~Vw>|X#?S-~=w06+{F0!TMXk%=r z0^DZ>(0B62c0bf^e#p$-k=Y7}sN3;JBa$_L78_ybPR(#DQYb0bpZZX!MFykHdX9)G zN&zE}%Q<7|v3)fX(S(W_U}C)tgm!u;Qg|IU8T4d(h*QvFt45K$7c|90CykrcF-!tb zhwtAZuEswuwAe&J?w~x^SVe<9(3~sXW6pRoVv-4BJZ|LAyhCDHM}R*31%M+8Ft1x8 zf?tBW7I1faquiZ>cOv2a2PEm8W9Pp@|xpTnh*!WJnY`Nmr>VJ+LCGuY-S5+D9gIQoIOR&X~lm7fHzG0tn zNql`nIE}*db86lP==BfBOD)k*&Hf{-N3eZJ`F&uK4_lAR13NzS7MrSml)678&b5Fe zRCy6$KpWEt2VN0x*f;6SY{TaAG(1ncP1}6W#O$(AcqXF9N_e($I(LD|@QCxx$naQ~pP#(u{c~{J@CwrURN~n9lU?2lT7&Gy*_q`G ze~ZZ@)8SxJ#93B~n22})rF?~q{~vJCj1M~pn;UmnvXD_%zN zTfZh9L?D0UnaTfXrI!U-3?Uo?o61JU*PA-SGH=+5YH}|`Gxv)yWYHJ5mA7c& ziS#CiK{JeKe$D5H2Oo6*Xq?=L#4O_gsuh2UbFs0rHZ(Q@#1~k;Gq{HcP1b@DeFUS?{H*h)pC-t!Rxsqev1F{#)y$(v0VLZDD#n?|4)6*g7F=2~HhIl%E%HY%90Hvdrr0NvAw#T;4Yy+M*Dea}Q=<|oL$MD{aYe>GVavpfnH!+8zJC=C(fsT|b z;P~pO>&^x~wcbbpNZ_OzIJW}0f9;#9Y;I|6?db5sx5)5<;^SFvXea06c}VK)AbSXK#$`Z6Vq$=pSD^2< zw`T&P`eZ8-jQ+x7!<#?^XD6{ywM8Eq#4h~?k-P;sZCN4#La7(A01(OrhVrrz2g~nw!Q%J6*yF-{M*+ylW$xL&W-PaQx-eI5u{Bt5 zr(u6z{#qK8+H?a4l;(V&+WX%|96z~N8Dj^1ke1$$#KB(4%+bNf+Sy7%-^$3s+{*Mv zc>4!}H8+R{4+IUuXWA{p{qWgKrL5&NU^s4W=BoK$4WuGw&5KD*RMTQ$f24Xqp25S& zH$2h-j^I>pZU=E~&PljJMgY=*0T|X=#47>9s47@fPZFc|ks3`ot+8xhm?#hAcWgfq z(dzn$6vA#_ONm?xH|;v8(^MUAKLj|UTBk<3uMXQl!l!ov+-=UJQ6%8~nE{U4UkQGAP`?b&}fAEmj~K0p!((Y7AbPm$jf)N=n2A)=@IOF%KK&k(x38a21naY?%1* zY}=!08>9G|rQAT`;YR*vb7r`}Vq?O$7dw3vc@)_Sji}drZf7i8iXKmk>dJ(QaZ4^p zvCX6Ll2ghbDe5T?hJX9Oapd6Eu8_vdNF%nzH==A8BGqWn5z2d#t2OZA=!;Er_TEJ1 zo^+=FVi8h-V!JkfX`EIXw;G;PP%eyw&qejhqCVzyBoVd{lb;?~3!ER}eWUwELv)ck zHa5f18I~8F30v7KTpdM;Cz)+NV|Dv^q;C@|Nnbyv>1~qb4e7iXI6g<^6r*o{H4{2< zB*H0Tkq|aYQb-*rrgxLUdk*tQFYt+bfd+JCKLAJnmwy8Pzzf`7*O$N9B?*=UO*zp! zJ8+njkB&2)RP72e2yX5vB<&_mH&Y6 z`yb6}b4R=)VoOkdAJ-uWgJc8&P%cMgbc;q^YOEXW)Gy+4oli%qd~QNXBke`(jl;8i5@7Uc=X%e=vxTO9GRw~v!>b<54XzBj6mX#VE3fs}htWmAiC3h@x{- zZP4j@@Q4~#s8+p%GtS6yJ7)Fl$(j{|OOTIx4p>LCsSh_JEePHw-g(%5u8kP}GE(2! z-9S>apaA#w&VJ`)2EGE3zW(5R{Vyqspf8164+5A5059S#ukJ6!50?7&pwwO;pwcz9 zvIKInTa3RaWj~Bg2`D}}++rLbH7Ersgw(nFNEE9fMQcjKoi<19zJH?-$IJ9L6{*Cm z+DF^zlk^>n-P5N*bK)Om-+2!Du^7Mg1oZcq^$>)LCoH`&N=NC==$^JPuAhaG0|aMw z5#}#l_9oLc^tPi&%F!L@$y+Q)f{VoSgCehJb* zzq!x3m1`yBNbMm^pZ1P>-Qf<0BU5$N&BWsS|LWq@kM{g?Lyq2(a^;#GAgCbGh zbPIWG$u52utbY2wB*fCABgSvoarDoeiEd6)IgZvo-`OOX{sQCD1;7AO4Fl~w{8~)% z!@Pcf^=|=D`l0jjd-SiUbX$Hi{+#WB z##MzjHf)y$6JS`!ny>Z_#k^`lDWM7#o64c;8IU)kzhJYPW-Yp8L!vkc+JB%ihf!Y) z%Oi%B5d1#mT+ufMraO8#ye_91o1b;jBiqa=MbA0{@`BbKNk?BKzk^j9zGM6?6~5?9 z?0l_kP)4-K69%&oW7AT_=Y@14FyT(0)e94th77a11cQ8?kvv-P$a}qsQy(Eyy2JAX zcsXdwu9*|lGC@pVZQc<4(ThH|!hlKu;OqsC%`e0H=SGzOSZ zzsJDkAY*&%+?XQ(s%07pB1vPq1GUU&aJI|2f;Snt_!C>s&W{jH)cfIZ`W_S1uR_AZ zDB>vP&ujGRlZ+2Ql3CCye-fE+Ce@s%2$05$F|frYnZP+lBDEh$l|!s6eDy)$r~!|g z@!Hi8+dVwv%S*ZOz5j?&LF^L- zP`MZMy4^}m{nE?!CyZ{DwhTezuR?Z)X68=DBGy(wnbQt<^h7MI?SEWKpc?lAEIiT8rP%j-qtyAMhmUyZIkdpobaF78ytYiP)ygE9sg;D-LXDH&Sd zUQT;^pt%5Yuiu}3IfL)*haYu0IU8du32W=;-|I<(x1lo3{6&Ue=;0P*mIA;*93K@W z=njUCge;ZX<231VL5^`h)+zL`OBc<0a+wF=Q}o%y1JUvZ=m=pw$>~D=ie7Qj<4$is ztjbHgW65L{kAHjh23ZJHXj1@Ew|7VA3*LNO1ztJ}je#+O9W^r%*1tN7Ck?Jw#MhY2wFJCn2kR;>hB^{-^^LY8qg5FO^B7m0cuejQLEn*KhG!`6mU>O z!zf=r*md2%%<@VMwU@o0^zXOX|0#?IIt>q>&q z1bSuW`hY0&@85#-R6*F@8h5~u!V`cAA9l}Kpd*4mbsnR@9TOH(bn=l@GG1(r0R)3|o~4Xw z>V!{&-*a+q-FAm~g{ljv%xL^voChmC>RZZPaYW^Eu;a_g=N6)6{e?EErGoCC%Vp=8 zZP>o`U154XUz$r8m*al*OqgO-?&)~7c|BPRRST6+v|gNE%=}Zyfz}t@8Y1TNlqBEj_CwZt1_)~;EsnYRXyg5mCOd^@IbC~89Qej>{YBY~UUh?u9_{$7}gMB}`mDbd}K2 zf(#XZmwt*ti>ncCT2+E3ylcp^jCaJj@`>oeZsyd`Z0Q|1H1(7W!vPrn8q4^HneT7) z5}?Qnge-oDWZ^2cB8i~`pD3|yFc+zqpVfL2F5{P8+4!_DN zuq#`;LF~dhQ(BIJI&mK_{)Ww{Inv8q>#d_cK64k0${^;PGyn{cu%*}k$~N?ktgUSr zzK=-!y;N1`Hh(oXQntSBf7yT{-@i5Ye+z+`(EyyF+;v)DnT#nMTm@77zmSGA^o&0XO`WdcdEyyT}K(`4mEeN0E)bT$XA*lqJtW4?TZkF(|&mv4JDp_hhRJR?9LkZ!-mZ8s2&q>Hq!vQ3tlqo2p*kU9MrqASGJgb zU5^~(lEO?IuGjPOt?C1Epd&Ims*kt*0H|c9wgAPip7WDGDSpvlEQy0U z)F8s>U!TJHg94?DwSkz0qrKU0>8hBWwdMD|^{uyi32IZ{R*XYcY&ujs$n>1=$3{i* z=rs3#pmvUIv=aI%W3>c3RJJaMs!)h&q^kIhwj(cxD;o;K z0pmi?ksI5VJ%0uBdD&wNtx8X1u@i}maN|mL=+4)D!Gnx}8C8gQ9YM`*dL3CXr^`Gu zpM2#jYt_t27YCtMD4=B$B0S2__Di;3XlK?t>bhgLrRw0YZ0)?FBmA5m0#AxAMu8+< zW7690FOYmXS|;$ak;+5ldZGk=_Z49kH&ODnfR}ngSY_N38;GL8-fHhVQ3b*nC({~$ z@&SOd&o3LK-QVJeKhHWnw$nGa`YFOta0F(%?ZvF^lmKxHBVpHD>`S7V<=OztboLS@ zHSu^-G;D>WT&N5s1-rVr60A*L<>*wnI%n8L6$cMf8s0fsSopP@ zXp1L7d1pJBnvmWvDTJfsMQiBA{u!nq+l zFat%0^#D$I=vBE*C!$}hlT}A2_l@W}b34X^lXPmtX4^_-?{W3TZ`Tek=;AX-tu*Mn zC`B?;?6xWkg{>;+PccjD77FKTJ&bWlcH57;fqS5ZH2wb%}47qX9qx!kUr zKBh6QQ0#njwRtI;`N#D5=fa=*FaHpJ@~z*a;lK4l{-eu$>Mj{8s{neS2jka!ZsyiN z=@e)r{m`2c)3=gybda+$76vB%p5L~Z9*ZdfU)eZ*ub{q+nw5oMzApxhPjTo>hlD&% z;Jx99Nh)rk#18bOPmujQfa~h6nLwW6(lXmOo)P<2`(0;SJAAgrzKRNcBzU$x-eKJy zZ@wLyr0SX69-`YB#XaN3ugW4RkQOCQS3OZ%;E;-4LnTbiW=1ecqyDF+JF^q}?R(A+cCIDqtsGG*r~6w6j#C`qID0xm6Hm{1U2glgl!;A?R~a5 zN*M2fIs!fpP-*B<@HHfA0n!grbc>B8#C%s!cLKlSHYBF=BFc3#x(=z%lf=yxpj_S2 z!G(#trWyi}^#YL9`YT_A?{4n*Q38-of@9Q=1}Psjrs*O)vgOLhO32|#kxvB8?D@!u zl5t7q?iaP&BfiR3Cz&_)UiAi&0`^#N9Wc5WqN9lZ1Gd9XYjV=FpZPQw9xfobT~S16 z^FJ3g_yWeJI`zboDh-@ev3F=J35Sdsk}uI;u1g%dot(Q@hltXTRRe|cQW)+Hjsl09^})bunGTj@v6n(s_1D|vc<{gnd7OV?+7E6lPo z>q2GRS=8_c&dweLlm}VS@30rUg~17jV6cNj`Q4ph6pS>J`0gRT^4!T`5Q!FayZI#U zY#8NZ5b0c)q`QvtmNqVDZptmNdcV@B@v@mf(2;$*BjiPK-0}7rSGGeC zAa;>>v>{Gkq@_xXt4MfJSU6>Xjo?e3DC2Fw`d+o0_J-Li;fog%O01Vnp~w`8##<{s zpAh_E!A|BnNOCbullH`?BB{IV1FK2~+!cCgFYwO@+@sNx-W z;bBZ0RPjMsn_+b>pV-4vj4ioeeduOpMKdAmlc18Q5pDJJzlo;#qLHx3epT=-Vwoj! zj+>vU7)04ZU}fUQ7eF@OUc2`Sl?1iNdiy``_Z;(0KE#p2)f_x z1lN1TqI(v~U$K+*{EF_2OP;q)bNXgapIy#wK;)MdqN2SHp{qKEB|#!X>wG)_u;)I` zPlgSiz)*5Qv}#hBXiZ=zGr)p|C2e_;p)kP2;$CaZl2u(PqMq7n;9?kcs^te0pP3v9NF@$dR*@|L({P_*%+mgs2!av5R9b5Nv{~${G zSG=MBxH0|ba?lEPrMrBB zHwv|}9=|MK625GA!3ZRgnF_Lc5gB%1P|t>Oecp{cyL}G*M_d+h@8N)ixod%=^A{M? zPg@MX1w%huj12EjbwWF^u2$KLKD2}~**+5vq2&`ax~(ra)R?nd!O+|7zUNLI;gG4q zwKhlTv0UZ5tKh7TDs0qxm$pUX+`((^Uj+Fh2m-fQf9RSe8<0_V)`Ru z`Q3A5n6g_8y{|^@gmXZ8M=8%gYAZ=cT041uQW2|IB_bE&wQ&JoT^_Qt$CJs)M_-AK7Ctxrbq! zZKQpR4Kd+lSqA!og!93q5MlKi`(fNVa5=KyFtV>aXv^VYy}EoNa&Zi-L!E1jo*q-| z#^acnBqi%p1lBV3A$K;DzF$7zKNsFerII#G3CTMyUeoI>va$x8J<2AZqTSLY8{s(C z)t!EzDZVrZXe_A%IRCm5$p0;7iJ#zk?`|Ya1iE=*ano34c~&PEb8-wqy{j<~)2`VXpoB^r)JOxulGqmhzTDFlrU67xjNT7w z+pIM{32W~{aSB+|Y!!SK$w`y@bT4SoSa!X-Dr3Qtk1==jQLVSvyQ)T=J3_6VsW+uj z04UAC`IjUf-!b6_HQEDy44b|yXC(qnRgT<_oB9qrN>1 z&^hS;SsB)3^_f@#*tDTb^>e+MBBy-+1;*yYpS%DdZdlahZT7PCo(1 z2{^yz*naLE8@uQORr~KFS{l~YPmGO$r58~9Sl$}gU32}dq5NC*{^vIe8ZrG-4@CtX zVmtg~9|hHnPH@2N#h}ta-6R3)REw+CCJMz?T6fwzfLRy~hLb}nC?r*c?UUg*+oHU! z0484e?%)U?RC9x*GOQ4JJ3%y+U?ntY9ovYEg>q|tQHH+gV_9sgMSRO~hVn-Bg&O7B zJp-O9OFApf!5Z8c^5thhV*{(Ca6!Wh6O{Bs>6 z2w7mc0OSrpV+%R@YmyjJ)kk9@hyl%6yj#U)8e5B3N@9^(e5XFaEe zPYESz9FZQ(L`+MOlXSr7$PE`i;3qI63!l<{b%eTPgQ{G2`HB2M6nxy0g}iEe`l8M^ z#?#{K8Ohst_$0U_I4*RXCxR678AQfw;%A&g?N*y2w%4UKg=@WhROH{_>c=jAQ(mwGra^9H??X2UPT?z zH$j?0&6aUCs@7&@Q4cJHxzz@Ne$x^JvL%Y6WR&-pQEo{c5`XdJ`z^AwTQcasgN$PyYVursMEQ#ng;xzfZgVES0^em646LIWQs#f&=o-%gWcqN)`kBTiSs0ubN-D{jtabOR7Zo zzg%E=g0GuxS*2+ehLF|{)20bUG-sb|TW-#uT&?v|xiX`}B_%_gY(GQ@&xHz;cSv91 ziru_~gRYlRrWU-kjXkx~LlnjfTip76LzTavNPejLJztjQ3oI}F#@KHQZUb7Msavt- zttoLsQ7WfXB=J5ncwYENzSDZeM$6*uJ$`=T^6gG^V$M1C(jUO23^@Okv6}C;$^3mB z8t7Dk8LF&iWPOdmTlAp~MXiyt2epF@CU-A3IOD1=prJ0MaMGu;+N3qg5aZ1t6XSDa zSRE=UN7zNqW*d>Y?ZJo{wC%%SX#D*tT3WUGzp-xb^(|p@_EEX4^{2f=kEaY&I*w-z zn0GU){73fqeUjc;_7fr-KI$wNxT27-K?o3xAicpSFU_hhpodJo zy7o?BeWtSohTxPNY8W!Xr9AXLZORZkt7>^{o4gAOzMB z6!znoNp};!oTPrsQC?-DM~T82ltv9U)rue8WTKB`agD~hdMya?gEQBwK66NtRacHe zWlnYXxv5cJ3_6dg7A)Nvz8b=(76GwqgBI$2ei^R6n{fZb2GgxU-C6y99GsrXZ>PkG zjNk-JOU?lkT6O6_TS=X%*8t|Do)}@-^Tw#GQyRmb46WzMV!Kmsg8VJnRgeUyEsf}5 ztD^Xo6zOC|pm?)0^zi`5eCz?HhQQvuO`2 z$5_eE5sg^u(Ere@=Ro>QK5p`GbTj4iKFS|+OW^{YaL`C;2;f5Xe;K!bFtiNvqUk^H zf6MrXZo6S%K(~;1`fg#Tf12!%!pZZz0QSE%%orQU=Q0`nEx0$jn!~b}bAcHjcj&+m zrv2N6yzi(#5!JN|G;^9?TXDsmx8!3iV(iby@N??riXs@%y|ScYp#U}?-yrkvc1^VD z8#R;}D8Hbuy%*^~jKM#nG8N)K4TBn4Q6W$g;M5y%h&RXLN5Wsa*{#$_Sw94PY#g&| z_QD>jo#t%QpLGSUA~sC%#a{{BOB*|;D#(MPESs7UIEDWsk~BOH_dp5i0D$DL`;$Kn zp9=rI0bLNVCDHvrJNdr77J{* zbdV~NjI*A&_k`yI{p2U&a@LVt$(bco>s8;pWY&i3>F#B#T`#3e zbUVb~T9m|ZYp(TtLzu7<3=NBZj{+~8D``P5;>8>nyn(RJqq7^A&7qy}5t9vyN@}UH zeb(!`;lk40CtMOyaMRUh5yZgDw$Waa*J2#p2cn1<_xQq3xB?Qy3GTP#2EAWZvvV0sYaBERV z4OdASuY;oUp$)*K7)2}9Ztf#{5D4jAscqxKti&b9n?SiBS&)-#yE}`>5qbV#^IrV* zRs8YJpXPRdwy=NW`p|!qv1QC)EyMwa26`fY{Zjv&?*6TN@mpqlcU1a&aQ3$qkB#7U z_z4rP8O_-|Faizk#8dRDZYKpJZoEUqblxf)Q*5zG7vs3vozH)q8 zhPqsmJ+(vg#|;QWMSj3CFYOelKsL>9s_+g$kviw3&MJ+%_^btM7;6LCH`(E1J7skJ z>;PM|wf}TsZwv_#p7}%yx!PH(E?-}l9&hjO-6>A~ys2dkp!92T%AcOSpQo_yQmlXs z@xO-3=I6DVf73`82=D*M-I^5PuU$ca?bZQD_m^$>?kyLw0D2Ih-J0L`rvFx9m!QHo zx1`@@jWqUkG~kGR`C>+=xpn7CcR{0yDThQFt=9S}HjHh2iBt;jFkANwJ!E*jhyypt zl?#{D2856+kj=`M+nxB*p- zo(oG7b8k3!5xj3k&QILV?xa~i4+s4_c4t7w^&dSq^z$P6zla?Ogz5j^OaFiErT_ER zp#E_I2=tS&{Lfs2Y71(76#zV4t#pNh z7!s};Grfpu#nqaLiqp)t1myKiOqE}f-+TSe4zCJ_1{t|7P0-7kDlrYCMJ=AD+4Gg`T?lvhi zQ=!j6-I2eBkK=zb8~DBEP!7sifE7(YLJ(Wa`$9FGDSj4WpXreZG}4|q&TNtDdgsR2 zSFtszs8D_WU)~?Xz{4mn#t`+tG)}RxN&t^}j-cEEdG#Sge6j*sC_k5L02gASV*}s< z%ZlWESxmfbRFF&PngjXu=|;D<{jno;cS*e|hU%x4c!Z4&i%B+L{;7tNxjlu1r!h3N zhl40%V}Du?zNQz>2?HQ%2F|bd)czJl|37Ddz9aKnd5;7Otg~=ymPd3pS_IEVlo?`} zqneRegtO^pE-|fqb(T)Pr5Hm#l8}li_O%*~XaQYUeA)pkhO#)7qL0hFZcn@kVe$x3 z8z(e0waDSN)-f zry~MUo&7}*SW|V^0I_`M-Wd{GS{N|HlV>?68p4qrlyM4-^FdJ*{#O#K82O6cjVC zFzgwM|Dj6g{>hp~3$)N1xu|Ud)4D!3@@=~F6DOYDvM;Zlxhc7Ih3VdTmAKiaHTdV7 zTd?Du@>hQJ`x_#|0{{#_a~GW4Md4>kw$`5ro@t)8x;D56t4r-kSvn!Q7ykM z)q3THDsPclT_8MCt29p6H8Q5vGExz00Wrd0T;K`}W{^o;jITG(`gIz)U$l*5PPd3} zO_r`68nxG;YsU!JSHw}>>X_JI6(uUHq-LW%myA1OKFjN)L36YiGt_0{uHLhCf=JHdm`miRcfj3;JPo93ZQ!;rwBB z?zdL=Y}@7R`qt_we^}izdaRjy$bk?*Zx~ud$0JS$)9s>S%N33g#&$AE5^C}~nX7uR z_rgv;J2~0JB;^g8y$oy9X9uJkXiG~KYryJi^a#nb9-Y7a%vt1^oJzCQv8B`4ba}^7 z?aBrryaWISah?1t7p1>jo(wSm0?Y^j?aE3zd~P3D`O|c9`1=JM>6Nc%bi5vH#W2pf zqvz#>Z7R&e+#4CwHFB^(SZTGj_|Wd#W%4!Z&19A&`2Ixt&H@oZ0J#Y%j|SPdkS%{5 zvdP&BDe67q$+f9{B4hsxN$YtcLdAN1MO%;Pxw0qkaGz*4?X&8vsueogt$CVSdNy3% zxr_xo3#)wqB(i|r{agB$AoH^v><5vt!R~!$n28z4zYd}`_0XX`=`PFjk-{ot*H8p@t?WZh@TX3{tmedfbMr!FJ za}KBv0;E}2b2n1?nt07b5ouJFw94y~I4Vngj#RG8Z&KY~kKpIf!XNBLxV1{&4<~<0 z$>U1p!+M4T6TK*xIi7wv=*b6%WjwtD1!>-3%cAIA$(g3>FD^|NgIzt;xUeLjVA0>$ zadR^w?A~yf3$k))PIe0l3~U?)42amazlw_DUAu$5e@Y@5%a`2uBT;$nL}0O9~!K<{i_1a%WK$(H}S4;_}|=Z&bU1 z_iwk8fqbbKo%gvPfsH0L+Yh0){);(#b`Q5|E%{3mvJO=~NxWEsC#Fto4wvc?H$2MF zvb}F=QJlXX-&2Ui=P}g3*YpCFF4AP@4NAu~w1fG8nK9YQs|OzFyj)R6 zWy`Nv=P$EDp^v}fj@C{Pj^sNUXq4iVVLiK`+A1|wyFgvW5xo}3(opj4jLJZbGd+BG ziBDaG0x9pQ#YMf#M>10eBkSaY9I&6+t7NLAVpd!evoJ*2Jt`7s#=NwvRqew=EayUs za6<7dO0!fMbMMuP%Tayv6oR7C`?yE(CRA(>irs<>ACGk@Grn%;rkcpPSBE%^`7x6D z2|0>AlU8x0EsoXX3%q02uhC<1^RhdhI;_QcRL#6N=hSU4LtJOG4Q}#iZJDksd;BO{ zN95-V*hSR+#svMCbzZttWYzhV=Rae?TN@`fT?}CrQ1O1zsOXCjHLfuzZznzIvY!Bd zir{s#xk*?M`Ba1NFsa(kq7QDTUn?$2O5I2CO%0@?Dpin)j1J$dbaP+oKzQhL1!C@p z=(Du6*)e1WuNPU)LXRBEmxv||7An`?3xe5>cvb|x`PPJI#*^!_KU;5 zaC|NFS~lC8$LKUk&JM9~i_ovd2aj6!>p*bervr&KYmuSAZiY0|BLk28HM0eVfg2;S zX%q>H96@?~6oeCU%nPRD85X+2^p~u-?hJ~&;-xNJ<7`k)@dZ>PUv4w8jb5JYS!DXlCH<#_c$v z0SBI<6cxY3d2B4xh3El$!IKNmd^Ru{qch?kB*O7{PZgUzy>b!jS(^xE&>2C)v6utQ zvN^HD^AN1846GVO6?|}YueaT!`6y^EzGiR37c-a*iY|-H&w~s-DC0kn!9RjQKK4~# zL33b`rsv)@UT#~aw{mG&{P3V11>b2dZ8#`uhKgHj1PS)P2lq%yQ zOql*vWb_~!W%u5U}*qR1Bq;sc+zC@Tsq4v z@Tlk>@hohwwf@5;oH#~Lwbv;KnqFrS*9`GA>WjB}OIKBz3Ac z{^d8QJVN0fx*ZMV7uAExGd8iWD6XnDLS>7LU0?I0IMdoh3GDdK@p%w7xlLHTYr~`A z2y)KXdU@_^x>i7nNIMeGgs*BPdnW$Giu;;vcf7Ffb&7t6I#Su|?h6UZ-kEK@ZdU7v z^NC~MqBVI_JUw3&57%>4vddmIKpgLl^fz#9-0e*njXA5~bFbL3OrcG}9Kv8nqe4vE zd-sr?JLYfh&;bPZN}#})gMo?8LV%(F{!rRjThiY?mJBYI7F!KBZqr;bROhEhN_zI^ z7G8K^q3OA?16&!li@8hEY0F`=8#|M=1t?^~XqKTP_j4`tIM?`hHfJd7RiJ&KB%^XH zsBMP_s;3Q6RRpu;sW5zmM^EMk3W#|zLy#8NyI;!e?jTd-=x@P(`quq2Gg9Y>VD{Ve zfb(<(*`o(-ao`SQnKMbb8(X$b0xJb12j9X`C|ko~ZEt3$UtD|cGK>jFMGhKAiDagy zyPBTDS#9pj_Fun+eTxEa+v6@orbK`Yt=BzYo*VggiC8Y=b->GV3b^wj-iDit*|}Y} zwc)1nLwv*On@^jb<4yK!yiP$4_X0^`T20OShC}q~{d?~%DY$i_x9GI1FQemZjqNOi zO(S`Q`gcSNZgJ^<#?A_~jiYEGda@w$`k9eO8XPmG0u6uXy@0H*b07Gpyid|z`bF(s z3DWQp&C^Lxf}u+|J)oqtfKsuYLn$*Sct_-iqC^6Piq56~*Q-zQoD8+=1cM=+@uUf}Z*b6(&{cri1F z=T;NUSR=Q`7sx{P;XwteTqvt6UPQF{eZ7HiNUw1Zz=v=TSn-5#snEc(7U{qv#FvmM z-a{z|z0pe{My<1g1e z8riIA&W1FGV)9@`aEta&zWJ|H=#Y~AH+X`gA4ov;BtR`dJTMlXI&j1z`ye2($Vz?A zsLz*q>gDon339i7*NuOe;`0Pnb_O$VZba2Zo;4iQ6{L!fcWb0AnrVfnH|(=aJ~+fnOr-Dg z-9Ir>ISj4Iz%Z$j(^%ppaNn=15~*EYoyiDjT&SqsqEPl3T(QkY z!37VS(Fk(176`ovkHO3`7w(&84kyC96|xcBdJ+ST47T{kLw|nzC^`6F!{2Hw-(Plaa$*(N&S|oj|{L)h(3hmn!NEqfOwE= z&*7^A_CBt9w%XN?uP4T)3y%F|B>CrQPdd@pM8clPTuty9Tg`=+HubvK`B>6J+|-cq zP*M~ore({vY4g!g{jdh;1IIi*&-G)nvVC4ayCIF~Du+Pov9d9k6K8of3%rKFqNa}} zf~30_|G+Qib3ZJ>G;;QPX?i_B@J|+TU=tgwr0g&nF8yd(#@aVCpSI&3cfaq%j1isZ zSmP;X*Kx~OMan}sSOM!IL9M_R>$=W;y`^ciDv+D7tAyH_RW1{Gfa3ZP+$?Z`Y`{l_ z$-pb`Eo4-G2$y~kQ2_c$UvqpNJca80)%eTVgnKGRV796rP+_KP-ux3gYXT0GG;!<- zDah>K*27-B)gjtM7*FJ7!^6)NAbZ;az7H-7@#9)6VFdWy7tJ<(sKvLa89b z)L+l}EZ2_XZrYP>p&ansgq%(@MlNzGrX+gUC6D^hKlV!NV4(uk8(wr=nWL7Vlg4w?khpwDr?ttwDTo4|*6!+MPO45H&89 zy=$*tU?rF4H^3E`p5PD@sPluo^t)1~OUE`7(o(MT@?B zuRn@DByl9!%s~vqZj~KxdB0XuEu(ZIjmc}Kl=OTh87@yEVza#gg1s-pFguk+Sd(!& zrs1tM#6Gl-kf&#aY<;WxL^cF@qcEz zCoBWKnWs1u{%t)+u|M8hb`eIMt>!reljLfbNDz$&rWs`NtXqI!wGbo6(3?Uv#&r7( zgf+b<)DzZ)L!x*KC5e@`t@u-WDtNX$ls6%v+LgqMbK;QJ!HKlAl!%>?aml+}^)AK; zlRB&UCCxfT?^>QT`93dqFGZM;Q^)o335i5jMG`7;_HbQJArPE?;y~czH2dJeqT}N1 zswjM_tPzn`CC(@JH$B?z)HBB{5f2~|_hbs}Po57sXuRDUlbV8$OrsbRSm)*aI4tR8 z*BWcV@w}{38Tol?!;ljXJRa|R@7E9~1ZwT0O!XU25PaS%z-tO~w}!Q$FK|u05I$** zv~xugO&)wa((XUCY&Zz0agQzZC# zI{P|3+anaM52UGk<5|A;xYi}KlGsLetxJ-tTp@hQ&|8l4I@<^{?6F+VnZ9kNP9wSZ z;Cr7ake6B#z}g2z?`gsyJtr}5FlljU)}M9W>zUE!A6>b($hM1c6Y+Cc zJ{i%zj8!n%{{uomy}uH5X%`~zUX(^Zi3d&&3bsc@F3J#Tt-JH7kRO8q4;=#cl!yGI zWCsAjlh|$0=jdxy!qY&e4x9b}KeI!ai=mkJz|3mcbrAYm1u*i1Y2arL1K~|DJYjpL z)Ipp}ttC&9Ta zh)-@W2!;IjG5%;J@1i;yen&xcUMKILv^jt27DA1+RvCnS&j~+1$)>LBg?CiQ{-H`8 z6k6D8oyId6Pvi02u?)WxsYuwNDR$AQao0Li5`HY?WWWcG*i_JPX`YG~Me7S*ho+A|qDRQUTj?BU<*LMM4xwAS@6 z5rIE+x_-Wg61u{1lcw?3I=5l3GfCtlhgN)#`=G%DofX~ZMh11Q%#-{ib-9Ec(s%Zu z;lNFyt(P)NlatI0%!*~z5AvQfzErB5bVH0BAPIrPn85}fcTh0(QuTyz$d zte4o74;=>VK>!m#glJ|D-4-k%u9viV#-n5R@ghC*hf6 zu#fmj?=?P()8yV}zqm(RRj^(fh3`6FI1)ZE(Mi-i`#1^kW~_tlb#by_a3;)5ckZ^~vf56Y|A8|V24Svjo`1d)V#Bnc( zhU=M)r^j6K$g%1peaGyTE_IQoFxSevGoHG{jxMp9PD$w+D_rl9@)_=36Op-`4Sx|K zx-q4&3Op;I9E28?tn)nbOu)h(IM#t*M9_l`5blDqCVi`s*E)gEv!Qb}_!TH?qD$ed zl`PoIj6Y7q=8r#aI<~o!AZ&j3WTCEA3O|k~JZ|u}f)e)6NfU*HxnA0^Z9j96x0kh2 zrt#KITs+{xzulJRQ(b~o#!W=#`0FL~7!9H+31O^vomHCDHH_-0_SQg-!;i4bYFxog4eLGH$)a<&XKB>vvZ-*^?Nf@q&*FLJ zI6e8NDqt@gmwy|7t%Rb3?L2ke3V|7g9u5tPSmCYro!UU~%unDyp@YDu=*-HV+8_=x z?K;+a%R3RIzK&f!#IJQplS65NyApm{Kh@)XtOxAk*MUsU^L^`6nbx1BNEm*uP%5(l zMspa5oeUs)`Om-CBRLeH204o==+*~E1va>;Vip6Xi0go-G6TpHu$xas9xoxpUY8># z$kdyp)9`N%)tMShjWGtk*;OB<`C9p&H|Gb5H=goHwWa>TuruBvC$A19Yx@1TZDEO~&w;#JRGV>>rXA3&9nWfA*XnCmt5 zOU2&m(U|pyaWo3XSwb=0C<+-uIKUG@QScUl4S0wF{E{}9DW4_6&xWGCJsD@o5b2Ek zuoV<}+ExzyJZ+~aog~31ZLMQML0*~xW=WjJ!#D&;?hC&SbQlIAYHdv|Up-vUcq<^q z^=cguplb-sPFguAB7YVK?KB0grQ)1VXCZnYHp6f!#dHwPTSr1r9JF4R2CeMoQ55Sy zgbSpooqrQCJdx?VUBJY7Dw2qYy+IfcPlh-l+ht{u1mHv#>3r7Cuc=6rU?_Wh7IXk> zpOwRttaXljjN=m_X6@5tGDzdrTDY7?!%-_KVLTqwQ|4BorWlqLRb&2EdnP%YYFtoZ zkr+~#H2C;<9HjLB{XYD65TDyh79*?4K9?gM-)@XTZQ)n;kI(8g8~xp}ZdX;R5j$jD zOJ#qXJ+Z1YG5Gqr_uFKY9Po&bDR8W=Th3)FraQ0p-|qsb`cZGSL)=QMMMq1esC9KB zg0xsF10C_Pw47D9;S`XO{UQdEA}OY<%zwDTNTN z)?(s!s(;Hw@qGB;$9sPp#Y0%3eYE?bv-|#&&3g|XJb3iO5C1s>20Q`b^>`YBt_yhN zVIAHq%s}KlH4q*(l=8t0b}XTMJXH1c%$NURKA36^r7Cb?K8hGS7s&2IZ>>;*Fx;B$ zNm<}Y0GLBL+%X$;$sj+MlM1vW@94uOuH$T4VadhD6NoSWW{ z-Xrf|6AY9}i3QzLk(LXb&3id~r3|soh!P8&f}~cye)rv9woRZ=6-Twl!`X!QHhYI} zcHbSoe0#Lr&jG&6g$5(sCV?+7%p|fKB?Sy8fnhr*Knfd+NPtNse5Ru|QmA5(uxJ=& zejz*{XM7xC=*}U5jJX?=~+Ia9+spc5x4ECaC)tqW6CnR-Bo5QZ)((glQJ6-@+D*#bfaah$>o z;j>H9k=N5iOaZWfqT_#O82j~d(R!<8wFr+y@8TX9>R=2ZufIovvowJp`h`+Ri^z z#fZ?U0JEo5!DTGRNbTPnt;R-zr&&TV#X&nHG487PgS&VP~~x`rP`09n<;3V_ymm#5HnKdb~xaiG^?{NdOjI4D+HRIjfXYw z$Yh9H@u+V;m-?o6b>8_j-0qhV^WK_3(YQ#@acHrNsuIZ}k*0G`g|AjWiuDNUre%tq z2Ar9_ZIJl5G|ZX3J?Rl<-hEYRrE~YZ&AT8ZFK{Y??d1X~1_*|mDKlyF!H-)HaEQo^ zPzX%*Iv4~YMxj3CVP*>k&wSVu4@>*Hyp6kHE1;yd0_B8gX5cK*Wf%_HS8=@c!j6kG z3a=jzH<+s4SdSrw=SXwZvq>%ttZf;<(>$4yX zDZn+Yd0c(DrCb4acZ4!U&k6O3!(MZ5d z%Rg^{r3Z#y?R%~Yr_dOPxG#ow{SQbdI?Bp;AQpko(>Sqk9~P+f;xc*=TXd>EIf}|S znD^kGCGkHNIOU=;8Y~$T3+o4BimOa-DFc~gGn?{z-hI@1^#ZMqU|XWjiSmN`Fcr~g zb`)7SaUv{?`vrzwpqB)FzECPcZTthQ3a&CElfx4kM>ebPWB04y%g_{8KZyKBv>JfH zKOf);h=q4gp;f-?U8hJ+Ly>xR3BaQ$xQZ0g*}0cUuiVHcHc~H82xHvejRHCGj^(UG z+17U7U06jFp+z6e;NIZwBOBK$*NjNA!94%=BeeA+P5RPj4Vp!PEjOD)SNW@1^`=8S zBeUik%1iaD0>)QX|lk5n0sROfzdJ1-A&cJ@8>!S8w7(3F~@VhNJuT{{5kM4<|_JtJZfRZk8?f-9-VZd^Ix_ zv|lgDA~cpQBJ?bG6>3BxTTGMJaB2k`R8%5t8}XKBe^u$R_K zsYb;srPvl6%9>IAT$qpVXi7Eg8@L<>fsc=$lj__9b|OPtAZk?{dozDzRd5#Vh$Gl~}r_E(-T)opY6$LyD1rnFLf%`D_N`SEA+EEv?-lSeQHZofs^49%kzv^!1xZbuYTvbO%*QaB zq@36yw1r3U)$a-(lt_(}BtG?mqBEFt&(`P<)f!nTu!g>e*Bo{awsMgv7ZnSPb*pGC zEJ0$vTdUGtZwnN%yG-kHumr=PWJ4*tvR0rK&&T_=x*%0!ebStWFz-%j9&8fpDg~O+ zA1z2w$<}XeJ<8PY9Y;Y)q#yKvv$Ybv8K|5W*+w&+&^478On!!TA!ZRQZkX)DjA1;C zEiOMo#aa1kgYG8d*I>MwgmhpE@kOsGJi+8+ zl=IL*HyuB|-FutgGJ;H`>6~TbaK6C?naWZq^NfSj7_WNFG0}lOU`MM|BTfWAo%hZJ zCE?@t+NuN zqqK)pwf4MVLEVlDs$0TJ&3VCsnjIAw1DSj`YWz^27xAKstOXUlrg~`kWt7Tr2dbQa z5LQ1|Rwiia6fDwY$9(D0*#$;Ts>2j>RG&CMW?+IbIptx<{*z6GA7s-F{l986xW(`! zp8M7u&+C;Z!R!U541EVG&Rk$MlsZrk#W0TiMqI17p!)^R^&xEXQg+G{R6S>X_Uzry z>YImo6v@&DwSf5(VFpvKPS7(F(}}8R=0kZiuwxOO1hDUoP~iZE za@SO6)M*^jRX4kZDPq+D{?`4w54Uc6?B^LNBV8?>*&`8@ycH~6ye=PP30@N>aW;lc zHVOnAaZEkQZVlaJAkE@ep&XHuo0L>j2F4V7XR|4CR5NXfG>I8m98 z9~U<^qbE1+dJmr6V1H!{^U?N>z8|sPUM@8wBW)-p&rl$qlmTQeQY8qw#pt~Q!gs^) z2nVLTwQFf$hk9U1t^=eh`gI~|wYXrKX!!}V#>!GUS=*x@J2xaBo00ZO^$u~qQ$JmV z>-rk0UcS8p(kImhYc*C{#EM?1Ij}#DKzwRiq7I?Y4N`IGbWv6&!h`jdwB1B`Bg zIa*(RIA8#$w1=5qbibMFlPNhTp;N&OQ@;t&P^d8IUd*G+)dLa6XI_HbIUP)1m*}cPH7^JM^x4ogU zK*br&8U=A)2c=-vOP*e5V8rqThTUOXsAPF6$<~}^!->+^K@{lfOg`bhTJzP{;_h78 zpN5}Yne9705#j2Ncif3e8D8bylkfj9e|};;7=iEqu!r!IZoRiho(3?vK-a>)LyY|= z%Kyz5r+u%Vsf^494wwPvfdB#Ae|LJHqBcFjxl*o;pQRoc;^>efpD16JJrFs<{`vju zXE@z49k%BO61$Oqz(PE9Dc2cSGGBYvJ}HPjb$JfVIN5{cn%wH(*Qp4faQ_rN=KZ{; z9GV93H4Na9vR0nlQ>Epb7Fs*cVe%5Q5AoVAeWt!WQ5vFQc${OW=0dM!2+O0C&z<#* z)eQ|6Di1`uNO@v>GfH1S{q_4lYM`HPtY>^KIRX_XI|o8(zfs7?a;GEpK+AhE3KjKW zH11L^a=Zg6iE5Age$Tjlp~U0c7V>W>I!Q3tOG$nb9=566eL%51*?s-G_w$=Ky9dwr zS`lOxA-p%7bVgA_$fI$04Cp}+DF=NIn74dWh=p8R4ijG}ERTW00y6`b#ztgN^2*u7 z-N$Jlhuv`VNq9V#l13x{a*_-l*p<{|)Rw_)aqw_pVR=3_wuM4kyld8Ua z^S7s6a(Bc}QGr0^B@lEm zdtCcM+#)|YCSe4C1F21~RELAPuh~slwB_s>U4syDbSefQH)U~rHWn$Vu=p%e6BVZs zXS%gQr&-UG@_QC-ZMuEhOCr0I*R!pqe5Y#qZud<|0b9%h*Yi-Tv_LUav3{<--7n2* zwM@-tVuzMAI_{>QMJaUj7g!f);gmy|)u6EHm^H-{PV@%Wr=@sGVlFMzamj|!dLY*Y z&8jMB%3@N#&ZRXl&b$=8EYCg@x#s=zpN!mv5=l}>#rRegFpMg4Gdx zt^<;TQ?Vfso&WmV)}`EjwraeXC2vqFlm{OA;+xxSLY(UH>rT-089 zF)|Mlzmj2D6}eY`TuSloR?yuq-Jv27;8!AQ&ftDu3GKn3VTzb=nP176tcu(#KQ5*4 zlwZl`o}c_-X~76ZEYX1#$j>!bXt<=|>7 z79FDbE197>6x~;5;gzWF4d$`FWcu1V@bw-1H|d^KZb_drE) z_$o;cKi>Z;=~gi=zDm;1KYo>DV-%1z5ssdpKT)XF@M2D%wvn2O*#yAaEN8o;u5ddG zyV(|_r+c6CnqMn-vQpnYwr}Fkh7=+e{emgv9=<8iG0_>&$dx}e#rLJKAQ;F%W`n$T z^L9(e;#Q5|8v&|~JcfD7bg*XSkh-CLdPQV`Q^3TYLP96zya9@bPtg>yqQb5978V4? zh1J9^R(|<%5>UV_^^zfocrw3DF0Vqp;=u2D1K86kh#^Lb0T^n_V|y{>YskY`v(Ujt zMhV;0YkOCJ^EQ+tF2~^aD$)Tq$mk(#QS%7jMNq7jN)TyG!Xyi?=9k(FnjE+b4jvD~ z9!9+B>2ZXw$644*WA$MJo2M5H+9_PUO{549#v3|sLd7Z80S)W)sb|K@S-8yAAgS`x zG_Hp{Z^Fi^;-GIgjYH9<>HadF+PKG^@JxCpc;kZET7WH>q19lJOK2i98<*(^v2X$H zx%e$4z7$z=Rm#5$iDd!3!gN}*=F3p2mr_0PJemp%h*tWu%lMZ=(|&Q1F{ty`Msu-D zeQlI)dRyxg64YKM zX8Zy!D3Ar6w`0$*V#F*1av-7}riYcDiCVva-~wy`(bXvUs~|jxJwJ(OXTe9F_+EY^ z(n_!$tbHNTuE_4I-j7hc`ROc7di7RhrN zc9BrK@-(cH}8^A(WbPfxnhK)K3RJ`5BU;CR|eM5iln-bAJ9 z(7J~EvhDYHlOOoSX=pqBs1l*}x3mYu@an52q-nESB|^h}cDIfumC;dM*vEw7iuYsI zl4YFI+xPszpriA8IpxnP7b~0Qcsk^%C#C~@>%C9_6nKxoTeg#H6$Yf9GV?4F2+H1r z+qF=n9VEj}l(j0!P?eg*KMN0I4cH=5D~W_wOl=$mizp?KMO0d;kydqNqhd#6stA)7 zP6=TRg#aUIy4)c>evJwsJ6iu z?V2(E+lts)=(lcE=HML|e7XI-iI)h*51VkwUST+~AYwu4u{T2a6cSOW8+wY}Cug#7 zBtU2Q4JOi|=RDTHiCyHyJQIUuCIf~;TPR!3jGdP~8cGdAf+FD{-n(l*1s|EjMoBzX z!M_IasZe}#GQrWQ<(SYx26SfCm1yFerJd*$i!b$DnNe4#v2fv2E7$^RRnplG%SJgn z?JBMNf@0;X(q(g*^7Cf8*SodD%qcC!#FyWzi9On>SLtyg8khEwi3?zVf7Cz@YKb1fzP zDyYOf4|29hXaHggl0w0i7jI!^?b9Njq3z2KC=g68ui@B{Z)_m#H=37zi!vg<`tI6<=x?_#pw){cH83=a=PHVW; zUorn#Mm-V3VAdhB)b+4m@nNSdt&6j%t_;{aot&1No6xr-oMO~VmaK7-Wy2In!^N*`0?OY@Q4?Xi{xqVMd zK;5{gVAu2xBFqM2(ajOQ3GN+txcoPO7noft`UER77+yFPjFkm(nYb6@F7FLZ9LhY+ z;(BcQ%k%>i0g5o>k%+U!y74RMP>Unr*VPe9vN6a;-$GxGzm-8b20FyI(G%@=bIi{Z z*~4Qwl(^Ht@8BhWmAjWkl8-uEudT5Q#v=r;SI-vvu$-UCUXurT>0Z6=UBOx|ZZ35* z-0I9y??M@6O}E6>7nASMf+;5|bfhW#?k{9H{K6$41ndPR&D@WURi9#KIIJ1s?N}VDOuxXh?u^ zG4*pRcm@Xf81W#Km~bzORjVF5db{`5D{^`|ltH_jLMJDMrX&BV1UTjZ^-x2jfWHf~ zaS)le*^*LS2GIm|8<-Z9oP~A|Utl^{%(Dra<1xdxW%6-fXSLPZ7X-ZzrF||({enj? z;)J2h2BTn@zyC%?bEb2V&goH_FGiF=IW>7^i}v)uG){{!rLw2c8?Jrl&YZwUgTvM5%|bG0HXB-fh%DjrmS>OYW2_#5C6B@)~={ z^H8QSrppC3fWC+*4iTo;q_94uG-Qf_ZsHN6kzu;ldN-e9(#}-r9u=0!Rk+nPtW*(+OX0VPJ5S3M2gI8Agn1`5d zoBkKz)bBD3OwSjz=o{>F}o|n6^12 zC-K=YJVCLL+8dzssSdp-&|g*6H3C*^4Eu8#3DoF*G)z<;;P4rBtc2bSP_D@EWLHbV zPVZMtWc|3O{1+sSTm|CFjjKt`-Emk=VsVYuc5c6DplJb6x0=YKL;4LB>4FP#3YX?1 zvOp5NcS3Jw#gDSD?)n&tdV3Tk3l|dWBvE55U}heu4=e(c6TQS2mF5}N86f@yG^nho zxYpsIzDb)J_>WBA0rfvo(I?&i>J&s%Zh!P9My5+MgUTP>2#3nN5xx_%Qd+JeO@irR z3cWl^IEacyt$eMB8)$L6cli5-=^;uTmRAUcHTGGY!K`(0<%KB)bJQo8_v+`C~RcjTA(0j~J<2^=3T9L`+Za z-07nfyoh5m2sZTZr(l5N?*#^T(G4?DmHI#F11rBOTYY!;xAoRIaPYl?6V~p%d)@D;>a48y@>bhCH< zivdjKE+g?U?~&6=B)nBG`BZ7$p2L4@w(0QS`s_OVS6>B|vhN7oX_*(I*TFQ;tNC2! zIW<_{WEDiW?y_=n*JlT|E&yuHbHXVqhr@GUbd<#|cZDsxF8nDb6u58I}7`(-OSa5=&Z9>?JfNsyz>hDc>|mn!Msg(4)CFv z{(Cic8ip4?!wae+%*C9N5op43wXhYwzC9od%UnXmqXPUQwo>J~&J$(A5WUv?7KYBgWG3cNZ|j)rLjgd77(Qyr;_X_N&*olukru1Cv37>^fg_u^JM9+F$TLybm(OU@JzQLG*ox$;ZU!AgFbg$8L zf@2r%=s5HCs^qAu;W%W?7M-0qsD2M&OYS7jR}|$Z!t;yT&n3M$=9jqH$9>=a==pS( z&dpkHed%~KX9iIF2f{MkIkvmPBDqBPN#74!APrr0sN@E`758{KinSpc2vPlG5>fA^Gv0v6FZl{ZPJ z&WfFT+mhm0m%>@Y_6+B@8SsjCQ{`UKF-Jid7S2rLJ;E36**cj0&C~79o&FuOhRdhG z!)&&AMi3Hc-%gO;osJczVohom|7y}{2icLdIn9)WC-dw zi2AvMVE^Fx(Qa@5&5Qo)=RfVfZYS$t|ETb?)SJv9`Bn~tz>o1@uJrdHj0eyjhSTi7 z-hcM|&Eazo-CDX*Y3k~$OPZl<84FEcPTnyr(8-+En-JIsgSntpjR32Xcie5vHAYGo zh;fqQuCO~ctT`ZH7%)`y0vSL0;qK-_^n4Hoah%FD;j`rjT$x8_V!&rJ*_U`GJM7=- z=QS>vPfri`*uCB`M7QL}?1LEd4f=2IH7s5F&*vC3c>!fkGL9we0muAKCq|sAYpyZS zJPC%alUl7&)Ast*dI`48dB9n&jTTgkDkX`#X+%^lIExpMk)?5OjM*vU_D*4Wzk{lT zWwsR#8#R`Q-a|9pEmAtIMBrIdCxs14FY2nU!i=ZG$xI!?cf!GWf#$e1 zFYtJ~YkS3+R!^l3_j|dUX$N!=toCKmvJKVAhI%Jz-qI}|7M%KogD#SN^-RBS(7X0B zS02P((RnmZW7y}Ul%B4wgX53EYzDnT*8n{BJiPaY{rrAkIVvml5Tpw_`RrNmV0Zsb zZ|m;XW^eOu?~ErybZ?kQuhAAJY$VY`=2( z?#H;T!2O#cqAiRyO0;K|JZ3PmyX;A$!Rv6?xL`1-Cgnx@ z9@a`c4>q?R#Y8bPY`b3tFIP4U1y9uFMBy5zuV$TP6?Ak{IfVT;tWwhWaaTUBZuls% z;tV>3j|WC^7{+HXZ6}xqIFKyCHxkt| z3Uij@EiwRPVH#+;?`co3%7MY+{qu!f^s6*=KAkTxFCl-b>~*Yt?nxK)t(s}^sQ^_b zd^R(&JY-`%JsV0@>clHotv4g+DWPP(kX$94EdU)4yIStvmUAI$N)cZlcbzCc=S|1E zv4x4^O=p|v?t0HRgMpb36MhzYI&V^kPA%P?uF~7wqt#sYVeqs>oQiNrcYX_JE!YBs z3@BfA$xw6FU|(X!2IP8#?uXhJDfhl{l$24E%;n3AU)^W7C2O(RyP%h7qp?WK5LgHA zlsD+kt-t+;cjuOuV|)KiMx6KG|N8#+Z9Ic3LDws@ruZ}MKWw^NFKI-7mknUQZoo>) zqg>QngF453m*6{Y;U>im(_AGi<}jm$-%wk%xTT^tq83p@1F)ONb238#y6wNb|3_&z z_=7@9;RhW73jW+je>M<$v8%u3!&$Gbc6MHuI`wUx*A#)jgSX&j5-xvbNlL5nvJz(u zJ*MU<)7wV6dgy6aZAMoBuDyrzx#5-d-4YS(rH0*K6@LGR!C0X7F25KrcH5|SNt~w% zFSil#r zA;#m`c-iF}P?m8lF~4;W&Clv<{_0!)TA!B^al50V5Y=xNM;a?n%{}J};AWd-o08c* zMIQnEhJ4Q+T(#J?!`QWDGd#S0r=C@7?D97oTKDh(n6eY&NxuET8knZ7s(Tet#!rMt z@Jv@okMYYpz=nkeml=&zUt!$qi&|ZBr26{O@E~2^G^?d1KXi25H8(9Ls-G0KK)o+v zcuo*y)f<2gef0=)xgKkj<@&3Uy7keuT-K)P%I4dWet=EV*TU>bjPYtmUq1B)S>%Tp zkV8KjT8{k#Ik7OijzX)ClzAae@fS3e>ZF1_VgK>{ALf%L+_Tq#Pk(j2BUdBT_(qIb zuf*z&Ha(|ejSs5Yjn0;7Bt?o|Q+R%r#thR}SGG<1uF|=4Y8!G4^KT6~qWADH`htU= zh_N_d`LOHfc#8FWJWfbX>CoK$I8Q&#v%I~@57y6L`RX$}IpOH##FOD9IJIKXSXa!7 zuT2l?sJ}b^`WL=V!N2O|vk>+$v>f;8X>tCu3TmFYAK=YJ_3gX*cqvJ`yt3+O4qecu zzkt5-0}1?`_X4PYIXNw3F1JJk`Ac56-&O7uRqU0`hYqv7rMv3+XHSO^>P-V58cc?Jy~69xDGw%s>%*ZbY?&~X*& z1jrIR2?O+}RpFA%Lya?fvw_bybbuthwmc0ug(Z6>qLXS+lwvr=zcWyt2Uy()*Jez^ z8O#2^%%)~)U0`k8ZrI6H7)z}n3*(G#SGE zusDJG=$lb}k8O=}0~^pIafXriOb?*XG$Du{bVw!F{@hcFJWug;4$+Uq<&P_|+GI*| zvG8|NK1kM$)gX>f=;rBvPz|l})@jJ=68GxE!RqAg6)3fi;zl7AE+TE%#)X8f)*_DfKpo3eqVK-n+FmI+ef4F!5uGh+{#awV4c3)`c(PE2eOXFB3 z_wGKpl9tA5g~du8f_rukw_x~~@Uh{*N<_zxqnjzZz{F=tlN`Q>%IQ^1o@@ApZkg%5 zO+|XPHoqR}kwYHxKY{R2qCV_vFXYkqvHsJfcU`&U9AfC z2@}IGn8BWg`uw=Xm0WeDla%}{bKiKX)*Sx)ITWkO;_{~upD}LmMuD7os@oXkG37x7 zKNbno;+hh%4uQnV|6CF|Nij6=pF|>!J2CZnh4S+jNIVi4FfC2~Eb>EFz`gu7(p;gg zS(5O)b(&#>R=W1)BaHfIE`I|_XLTu_R^Bvs!^N%U&3bgE?oJ*Tmf~eEY|smbnfI?x zSR~FEe!6v|xZf{d0e`x2`>)?QWxwBNd8_JmkxHXMk-iv+YVRyaCq=h6nreYv5m;-A z?_n%;z(d%_gB&Jo$|Fj_;lw`FKn7U#NPoShd(_l{vk5Zemd5p9Ox}p|^ffFYw{G8N ze>ia%hV05wq8#3nDNj=Q3-tKbjpy&*zkUDsMoT5kQ0!5UZvlx-fQd-6Bw{pyo1i{9 zzq`M7YFIalE?j@@dSmxmOO;3x3{E&3dk^nAV_{jN9qH>P{`-r^6@KGdRXm73;=0%yvaLoDyh1 zCqU=H+6$v+al;~vM>Rkd&f%vS#w7L1H*@5qU^NO_G@WMd!wWz=ixyy@gw{;3-rX=-OZh|?U@qCUM zwx=vOHVd*9`EZRUiT1d-OSK= zg56vHeua13tXvQ3B?gtAe6#&s3WvRa$awy$dwq&t?~G`j!8FR)-1SJWbEK_B-dwb- zdTjN2yP8$|S{N#rYg(?&)%RyuuS=Ks*8}|723TJue})mR-Hu-m@)`#j-y_ILoP|D% z#3}62viv>_11{ks2x~3B6?kHU-K6qBJpiFV|8W$~Z{BteFv!gQuBRgBFo1_2uY)PR zpVQH1%tp~;C~yd?zoTP4UiGPLm%2@78@MPTEi=_h=E^0H|6Zu}D-CZ@pUs#Fe|HvG zeZ~&Z4HJ53NBQfn^&R7>lip&6dG&)IYec*cfeZ#AW+yvRIis&9O9^vb8j+v!bMFlL zAlI)Jt;Vjk;b$9QIuGa_^YcXZj`2^Eyz}#%^^PcP`S~==k0yweYXMld032h&+WUpy z(@JMD*6roq!=Gs|SK>d_DdGTLjj9w^IzTF!226(+u&zE=7f1zW$TC5TzW)QK)Z*l6 zUEck-1UgF5bA*D zl@lS{0g=yTn3e_o_cZ?9F#Y%8gwHT-0)TDzt*WZ6;KTj{ywFcv9V$wlnPziohNANf zZ>31NY z_RXXQJx2G*pp?{5#<~vtHlpOJDrropV>T0y215BmjCE?cTj)Un45mOVYQI&DeRsRl z!qF}9=mk^SE-OPVLv0b)aiqJ&plMr=G_9mVO9^!IDSG*=xnEBNqfUX;KNBrDf4f>P z1xBms(mW1`TEsoCtd~lYltFCdA+h%`?>EqDMmTz%V9ko zQnQqt@o__XTUH4pKE`ZZa?%`v)shi{_5gZ809|LeRd=ve=MsUo>n^V6dtkd#rl35q zNLMT0%G9-Bs#uWA+4>e@mu$b6H2UL8&Ws{rotg&domYYR)VGWw$D~8r=QFW`(N|z} z^e-C%?7k!zWNAGPayNM?aBoB~QH~W^iJp$-8iBu26^(^PwZ+!F% zQ+*}o=tA41Ns6h^+L&31_*%AWPU+HR_(U9-yo0=XfM+Y}=cR0!PJ=#jzknb1@73?R@eyV`n}g2cLlpZZ z!$Tvg_2TjK%#_tH_*8A)564_EW%VLPCwI-Zef7xB-MAWy#=|?ic*nEG%6)LB7~gUh z*l+4jQF8frzm(Bd2)x!wF&poR367_@!1y3O6$}sLmx;BE5+^XoXb+9E9@KR$vR7VY zai}PbAyq_;MhgOLr5eDa-RH4c`v79PYIIXHs zoTnmE?{Iato8p5@VH!7xioWdLdAt?zgV6{9=w2iwdu`#p2!btl)@HCScs7mtpRR!f zKB4B(ID<`OPvT9~C>Szz=~uPS&@-wcVNGFf?5xfCn$jhGIi>feY<+a3?O~fsWp-Ab zt5h$%v9|#xDCupwFr&P-czzlJ59H$t{Ea*8@3`rmGWsvh`5O)pyq!Fg_&i2NR!tjIZb-VxBeg- z>r3iB#pZt+#>0~%J}y;JJ3iOf)bE`MIVfAmd&R>n!elz5EF|AN^r(<&HjoV|MO0uS zRqL(4O>h5icIRJr*qy)M`rBjT?|&;s{-B*>rTC2m5k<&v`EJp z&iYCjn6LTx4MGn8$L{niFcd_*f>gB`s0mxqeL785+kM`X45H8 zsp9dzkn`g8yL&eFDH55@PJPZH1 z)I0xWI!>2*vspMt&yIZ63HfPdt3kl}8A^?^k-AlvDp|FcTP>J@-Lj(X%XVc->k5BY z%N)5R;nDrban0^*ds}&2zD<0G!_Eb$GVg3uwQ)i*MqJc1w!57s!SpEMxQ2{>nSdUX zu#AeTUKEj!L9E`W^`u&=*2kYI`HFUKEP-tIs}{iaES^>>k%0ED`jr;=8IOEgi=Hc| ztvn&FtEkd(N3CF$RX(WUbou_xbs`93@<fZfJNWK_QFN!(Wv>d0*Vi3EXY-DrI_U`ZsqI9kT>I4T z1lko2t4z<+ZgsW+w)i+UM{cx@RPAKf8VAybFRmbaiSVC10O9jg8iIMb2a@ zW@R}`Cm3q4DHnJ*ZLv^a^j)){WopzI^b2Nz0&7ynQ$y_8B!KCszG}ZX6VPxXIKBr^ z5EM{wAlM05-W!E8T=9<*{+$VO9pQOhdSfG1oRWfNy(@%30553*519<*~8FEQY2_IC#oUpc3F zdkd+%KqH6b&wP-jnBVp@wDc~PpADL9e!t4=XNjgzK^NUD<1Jd?e??eYF!x!$MT|_%cSZ4qu-iRD`?8TR?0fr zhK?69l&AWW$Dq}Ua(vwacM|Bd3@K5HE4+iIkn5;&$w;d#9}NRmX}c4%;^Y6X=R3d%NFZgsb9@sAyc{lkpd)f~ytBIb7uj~OQx9340$2uO8am?$@ z1eA|yy(rn2duPMk7)kn;%A7ddh%j2CFk74?VBkX9sA}`|7cW0=FPpUauwRbsRYi$b z=2#y`zW}4nSC6vK=XHAGYi+8oy)I|i6J7a?(|`Z{pa44a>}za~dGDO63LHurvufTj z$w@QMcl9*s)BKrK8&TRM(gDhX9j@~m-cFdlsyeOJRO(3mEQGo8*zqKZx*rn8K zoxF$N?w219CC~YARv=QUyO|+|QFrjix66_aZ~cc;M!!8a7;nsK|2)n+7kZ&`of!;9}n z0~`nvpXHwOxjrhn&O3y+!R<1e&-NgOsrNdel>0bETMMHTWaD^u(|kRV)0f-$?)re+ zrWochnHcdWL&F8H`Z1#{ZF9LsC;KuVv}5nG=hZwxc1yGi%2Gsf!G(_C3o&SbW1v|C*G(bCR5mZI0UD>Y3+WTY2cX`6xpl?Hl8S_l%?Mkbi;vHDE6x% zb48`p#LX!BjBwe6d?q=8lOevylC5I7hDM(M>~1+nzIy}pLV)`xxqm9{DthrE$_wDe_7Cnj%ocvx_)|~I%IL}~1aMa5)xx;m5 z4jp{Ly2kzP^yMudYmBMuBE$UVzcRAq`IX83V0Dq`yNC%Ql6n2nz-y-uux>9ODk^##c{%-+W|II3-Zw-)Q$_&j`4V0$8I=EIF0 zx!s0WHl9Gsi}a-5z4oBskxxiRU+k|y5HKFd4-CJypBK2o??(#l=dmO@{_D^>PZ{H{rw`7 zGl`y^&&vhm64Z0sf)Xszg+~iTMsEr3r`y;l!+ls-^ZS9fh7yA|{N2$$I(DA9XG= zZJJe;!Sr#boZFF}e{-_7FV&v2SpB_zS^GN^Zm!5?&v@4Ltla(jc7uyAhdZaH!ke39=VAP`*NnI`c4)RNM)kG7M=veNpCGPf*@wT7g&jAv;;< z3y~>>WbAt%IONJ3h;o09d@~>tqVQ5vi_v%eXCM1DS0=7ZjCCZPAHA_dc;_q2&D<2+ z&sfqba!%HLW)3iqKVZ8%vYNam|Ipc;+-{_b>-S!eSLLVj7A0ehGw5a9vn}bfAcGE- zzU&Edkwoj4hTEKwo3HHP^0OCtw1HI6k-`ocLAo!v$mOM^g0MoMMvrFX^T#n3`T}t@ z{4!dW`+Roz1Rc#sB=}#wy7Nfki|1^ry#=~7?{q)VN?loF+7xMI=_Y@KrsXy1V}TEQ zUYr`e9Tsa)PXcxm7!S}4yi>2=uRIT|g`V|`zp%BgKc|vIBHrw>R6Goc<{%OBrq$dn5RUnEe^BR zHC;G&kuKrJ%gC$tFDtV;lVZI-F{kb|607u?t2&7;Z|ALf5t>!h?UCa458kwD?X(Bmd*GV`xb|dB+((>ucO|EAb zxU8EGWA>s1%keQ9I(D`^=ALE$xuN) zk|Viqq95y6$J%kO+s3M|8|=povNPs{qJ*8mSPd7#&dZj&t@C$JMV}*@haKy ziH2+QbF9fRk*n2v_!?6vFU6)b-ZSbN+E&~)6z|0sT4^@JLrP!i!qN2#Rg)8)=4!rBhJJ~Haj^p^&2pT>h|v59?YR+h89a6VBu#t zyLo*HqD(sD?nrKlci(eq9*)BG4K7b99S?3WoU**Adpf=Cx|`>rtcMC8BU2<~wwh4B zI3n}fX#1O*M{$Y=LR%&bPgkjbGd$$TW3FKPh~{o(N2$)mdwjOz>%2c~l&)0sd|#Jt zb?}K-WW?R(wILdtYOG^?W)#u|WNb8C58cp|U6(aTzW$Ix^JaeRU~ooLQ-^M8>e=r| z>ZU5q?O&)!s9zylRcObkIjqz=pKXdAefz$uQ|rw%)>=j;%V|c?n5lHS{)xcR%g<$n zI-dpQ9dlKkQNNto5Z8UuH-=(eDC0Y}%#6Kv^2}!Z{3fkuUVSyqc(6@;%0z0?y1Ll% zL!Y9qORI5-WR9gyeMZ?T9e)bAx(SZu&Hx6CTZVqmr9*+Za8M z?Qz-LzHigf=*UB5s-`W`R*L+^Ydl?@S?Nm52T?2sWI7m1Rq{eFdc8wjX-vFIfBRjt z-MQNHXF{YHof_`!NUZugH+m;kN?DjAMJw;i#E|SEF4;JR>a-9CkGUjzBiA2{y-Sgb+S-k>p zZ@q^Tw`ojTKX2)>QR9@fw$?DY?apL^oyHzhTEl~-BG1h@sJ2O|*(Xw_0r~nKbDvKB zXC8Mij$P-jCd@^TQXGB7P367Hhfe7X-4BuY z#7;|^uG{|MF>v=@9lK!YdcUk==1pQ+j`st<@I#N@la&f@^OgNTTfd<^e{928^>&zx)BI^w>H98~xZDFFcAN$4uxoduB~$NsP*A4Y87IHr zX-YmmbL5ltnu9s9#<#+ht-Nlw&3kU4H!!qJZZfNXwr(c3-lORJ8O4`+6#H|EGy5$V z@;80Fdlh|nUaIO=Gu_PzRjp3PS1tnR_@t=$PqgU0&&w*y(>BTcGa?st0?dlW?`%NnN}wnPiW9~1H0o>$+MjECsa@-@-8N}; zNA0+ty}OBpMBB3ls{BA-<6NEDya4sW2OTPJi)4z~P4wD#-Pzv2F;s5)EN|0iw7taf zNQ&XS{odMcI#KMop0~}WRHvKl#~td1c)novJ*k^zqn?o3`TXS6Owq8rmV1s*p3cXj z;khiGkF`6Bj(~Nd8T->zj$ZQ<9DKw2aF4=`b(}Uy@7i7~4y#<5*u#*#MFvss?DmB0 z!N`dGxwS8op5zX94;en~%Kexg!#?tj^Fvk~nUcETy;8X*aN4_e(~nn2sLSc?BlDf5 zHt!4R)!HzD^LsHTb7O9OtdZFXHD4zWE5h~-9zy)X^k`&lg}EiA-Xg_^0>a;&olk7 z&fHHYS@JaXcD|Sa2R{@)`ryTotiv}+bv*6d#|^=vAsyFJ2NXC+u`~rSui9_x^*?^$ z#?E8d!ZjKvWLBD`Kei)&FoCYoq30#yDxfuXQxfjlQs8GF*rY`)7A?* zQ+9t+?n}b1ju?#|Zrc4!-OS{hT+kMVyhkfDM|*m9xSLGT^hXFq1TJd&Ife52r()Z+%Fb_Pzh&mq(UrNUJbTys^-Fnc^x-d99SHG_FWuT#( zfT;TCt`DO9d-55I5e;gh$=G&HM>2`78=mZ$5-j%V>U(64i-l7^ps+h8#QL4&WWA|a z@39jvpZApCnHnIY=e;wwKc-Lj<^bdRY3JLgYEsYc8ZERcW1O$GZYcWDJB91wvMql( zZHAt$Dsq~?G{G&A`l)tD?#rFV1(RPdC3tqGREna4j*z_G?smoEO`mElU1$NjSlaiJ zO|2jG?3useluu!z8j_%^Y|KX!#MVST<|8V##a%YuGsDRaU@%d_H!H7n=p<{ zK9y#PtA4&`#B<%5twC;YH-cKwdR@B0sqp??=QR^A;LdE7a@_5HT&X87c`wze%!A3I z%wH?7v}`~&rR(jWA4y=4efJ=|MqPXj>it~cS2-2Q{by`{(31|x#K+%=sJW`EiIlsQ z%H+-T$dpB1%2LXXOIaVmHy{3zsKd?V2j&bC4Yxb_SdM+r>*JfYa-%Jc= z>kim+6y&Sg_m|G*#BuoVQRpeXIc=Qq-Oh6Fx%+6Xn_}6SS}x->IT(9^q`FThIj=`t z%szM{+o0S{w#>oxlE2nk-5p)L`)#n4?%WoA(P7<|-(=E01f=eMT!cNT)S|PcmG^+j zds269lfD?Nfu#@G_5E8-ue7E*tT8$taJS^tRCrUDFF$!4{l1;mMX@K9EZ(wo^K#kk zkUn^vcAy~Zi=SPdIPAXlv6!mV?OS*;+7rW4kxi{C%-M%n2)?H+NQY-Kh!~0Dg`orEr=dj#n zebFb{$*04cHh(^(6o~cXw(7fZPDgesT(K+sTvC|B*Kg@>vIWx3w99{djdE!G7Q?=O z$5UR1ldPIDoheh?r**y6tJ>JITGI^54xJijOr4Cr8#iPrC(%|Ly(3cgg#C8O)+92o zDr)~V&9yf9INl4alWB6d!ao|(K9R_+5a3Q0a$)Hk%835*hACP$xY;!nd4h{6YL3~4 ztBHyBV94vYQ2=6RL)EJ3-D@&uL)^6+IH;Cx>n%F$CA&2 z6-_rwghKYDDn8D$JiIRPvyEuN=ho6Z8c|SUQVkLad2qvm7Nb#UtCtt{04zRqt>RVN zedw$C_UZNf;T)f+IOIQ{@=iE;Jn~g|Uu#iA<*u7%g|4JdJAG18N$E(z*^BI9>04Er z+eJnnB0lJT5l=rdvu8*^`>D}+em+K-B8s0u*!{giK2@quOU7RM3*49A5qHp-YJM~Ov-90>qW~r#fyD% zI!Bg_o)LQVKw@xQ6DS$zy>j^}%i4yhQ_6?) z*Bp9azt%>be4`vwG?`e_gM7PERef~cn$5f4UfgL>%S&^YiC5+DEv>A+sWT@0Dl?_` zEjNZF8_){60l<0qJBb|4k`>sb(7%8Tg zTFlu~hS{4}^RcfimBjsvyW;FvQ}HbKZql4EWQ<^KLbD8g|3pZ}UYWSZBZKvCWoW~d z=kD-yH{bZ|$y(MIaQE2N0ExS)eY&5u>CIy)hYN!C(cOLDQ58P*=#}YBhtjva&v#^- zMg92DQRP5`tX&$id!I4hJTI6db~Dx zSW+9mRHXN=(U6Ufdl6^*t(rz<)HcgV3y6HEFI7!6w;tSfeaqzTjmLU5)zVYgbLgH^ z<+s^ISt@_|?%8hL?69kQdP|pvy7_6!8?1qbMT|{-)cX3Fr}iF9ICU>H*RSYCV%AUXV*{Hnq(oFF%7&2WSw;=ePaLc{ z#&9w-SWxD^B14elMtVupWZMIW8WauFMZ<;f^<+|gf0ck*(XZE0nfb1|)Kd#tR9t&s2|^Ey`Q zBRSM)Mcsp@E+jDuMMoMoNNqgc=@^uZ3Pl#VZzKuzay*X8zi#m;bLWR2-$EFw_e2DkHd09|v4b;x-YmglM$ z*=S`gj-2Wh3Vof3b99fVI+~ancnu$B1dv~AF2&CnW&f2J)0<(e`PlB&P#@uF(vMvlP`O7 z?#zt6ynCm}RbrDbZf%*0#;u+IqBVdw>5A)XcRUU8-j%`>e>1 ztvR^|=UXYr&|zOmnJPi`_!BatI56yNK>J8?cl?yG8flhA;PH4rR@I}grvwIA*XKz3 ze~tWfJ@^6-`=z(~pGf8g#!O0E{aq~@QMQ`epU={SvU#0-5|Mm7X}g1l;x+pjXZ|3? z4g49U8FD9CWXohb+>&pXZand{aXzD3Ph1Gqge~}dK$hv{MRs35{ zMRv@s@3oA&vz7Dgo2%n?5AVNA7M_~7Rw}-pmZf^%JxrX@lmm#PDFeF<6un<`13l{PRvckr)KFk_m!&01ohD{i)S@{`B%1%HfTWj9+-*RdY{2*kU(( zV=cQIg6x5D%h5; zQMvCUEGw@_|Ik0I7kQ|EPo}ux4Id}zjEn~dJGD(-C5Ti6d{IU7CrP_&&2psiH1cB2Jgm8+ed6p zQ2#`daH+>sm709}CmHgM-rscSo|#-->s!2&F`y|nb`VqUrKWXIrNQ{9n0AW78+R6V zX0qA=!JEBbOuh(Lh=qg|`)v7A?O5&8HspOcrQOqtoX1B0oT685%Em`wwQCNvj}&;t z^XYn#Jh^{4z)_JqI(N94H}24^3HhAagE7iA{@xh>O>2vvBgw@%-`>8E5S+oQ^ZlwO z>&D}>Zy7hRtL!bNS4{GE$VQDc3|BguEBFFXj)JmFhit+tm{k1i>pxOfzk zx_(ev2O+^RFm~YNMpBfO7`$x+M^cryssAxgLiVRW0sfXj@RO0&%(ag*?4YeY`s$O zAf^^^zf+qLo1-i4pqoy0Z)gizI^>}c`Kc3HXOFQrKWs7PO^-kt7m=Q4qAsD_c&b%c zRBji_;aqZX4xRDViEWSNBb1))w7ixXo)}O^szPaNr&HiZ+f2vi(=1WKt;oWeLi@r= zjAHW!ZR+}?pSYhn&+3iF1-QEGj|(E(Ji^YWZV^X4*tIiXBt=&5>ZyB~d|4{H3_l)K z5i%Y*u6zH)_J00#s8ewwBP^+8Hrwab+bGcb`&hLQ9>|_{k0-8dG0GhwXWn?lT(AmMK8 zHqjpxD7fJ(iPYUq3Vd`!+l!RAm5 zQ(3UKob->g(lSStGWC7B>9PXEx*Oioi>!H5%$1ij#7g&}@m{?ANmh9!PI2kpqu?mZ zX0=UKa#d6l5s#CGq`yAmV7*+ZTswT4e0SQUt8ZQWi_0n0mvis!YMHK0V&-uFU~u7! zYV?)fZih#h(s6;1Q+3#<(w+3f?Do1Cjuz9*T|D}Ymi;@9?#}#38cl-KnY@yHwS1fK zX`ArlSaeF4oIUG9+XN~Rbs^@~51kuf*J zP&Anr))q2Hq0-|o;p}{b!m!f%`;+G}T&6SZ9VOPhVU?w9Ax;ijIjuc?O%LRhx^}h3 z4?aVQ&ED0RuMpAGdi1H+#;AFHN6p!|W>$I+N!_4LH(&0LDeL{X>E&=``w6fGx_tZg zaMmJX9VU_uA@7!k3Y{0FRHnM9I$BQ*O?cc~GBl@+$IgsWqwU>%&O>^f0 zJ1&+LeG1TYGWJ$46MWgDbNg`C@o=F#J;!`6S-hh&VcM^pAt^kM{Sef7D1M&%h7nnW zS9S0Y`&UV4?vj+>-RAIKg2Nz6leQ_|E72Bv;BRC+26*xwx4Pz`M4c~JNBgwaN z)N@Uh$KDjVNwMvz4wY=|_rF_p_{C4?ugUt_YQxTHU3Wey z;(IMl)^FndlWkucFOFZ_(HoXD3vR-dQrM*Yz!$z(!E$TX#B+ZZWsEh3G@{ii%8lZI z78y6HPF+PGacJI?OZAp6_qILN{Y+G;3`Gygc!L1b{Q*DHJz~K+R|gH#S(!BT4M&rd z;so4B#xJEF*qEB^^!8iv&c~BlDf18Yl;3XiQ&(EEb^{5#Qw+Sz#fuR!3f#XH=!wC_Czd?&KR(Jx@F?S&g~5J4Y6&^TD$~=$HD!)8ZD?nIjT|wX?*akZzW?e|#M>f@gcd zv$l2~s6Rdeg-#0>gdMSV@ewQvgXMN{L_&eo@3Afj9`rc$FgJME5{bbeovqxEe|(N& zama<|bf7_zR%o=#A0Jvr@Q}~1hyEE>a)QS*p~o$dm_HMTP`Dodd+Aa7xr? zUlIhu9=r`<_a^{N|55kKXd4@p8;>OrD$MfkAvxrXSMU=6QsV*M;2;5dS(?9gui$Kt zvc%eBH&hYR(wtUb!5BlE)UO|wc|0deM_Aigb*xEVUsJq!Y*{F0C<5zOZ|g;AueR!Ux!%1URe2*d6QQD6?Etb z-a~+3fL&m`f5cz>LSY{Ni20Ji%8!3a)Zz`u;3<|5;ab^A@veiU3h zg<$gPgWd^=!zKLJo|n-dQbMbU12I^`)7?J+5JnhiIYRN_J@(fD7IgHY5``0=-D)$( zp=osrz$X-+IkCU?zFNnv90H=f*+0=vQ<980Q^ap4w zG^pxdyC<+=@@PjZm{|t-Pa1U_wzA715J_2UR%oDTwZ9Ic04$`NCCUXW5A48dCPOsR z!KClV0xxg~u;K`Td{SQiYyWUBv5HjCDE9hq!#jW%v=?xKP>)i^{<~3DzXc?!qhYci z)&V`_55^$0_dKb8?Vr%jtP~`udy2ACYA!%dUBJX5oC%TXpnC$pli>f%+)!ZtnmM8^ zk&vOm@K_G0U=3D| zJ})PkYq zugr~hv*AIyAT4cCJa}?K{~Wk2ju;+o@RK}v1iH&OduXAs?k=k&45CoOA?`<~!QdsJ z854kz8Tj`g@FB*G0up0IfDQHbKg6a2#2-%}8BhkqLP$~0zy_^UP>}d6 zmthM6M1AjwLIlJIik*3!kS;DDWWmc4KAJ$esVx2q4o{2I=kaNP<2j%ZA@>Y{HiRY# zI8=BkF8}MCS|-kfLiAVe!C_lYE1=tcUWK?9!$e_&qm>%Sr6GZkOF6;Mdl9W&uP*=y z)u5q%LV=Wz_Q<~n1L(?Q3k(@hpEeN7+<^BA;wHQnl0srt+#RuYYVKGUcPvl>PDtQY z!btZIjj6D2019wt5GDkW>_-1Rq-DIba&xz{!h?~9eu6|BX@imnI?3@jVl5W5w>}U+ z$N^200LsfTqM)qSim;?ek1}9@wDMih2&dJvkHn7uw`m2(n(c=S`Pu=NtAI6xR-*e8 zv3MXMfwvNHlgM5=D+W@5j{p)vE5SKI6cWM-zT8T{!N@N-{`CxiQ2`nfw56*McX^U1 z7(hTUmbR{VY1IOT-OAk&Wu@Vca`V&Nkai+1Xa>-r z9B{>Oi5B2qh#Qi1uT*VU38*KoO2=x!xg2#bH`QTw_ zqkIbfOP8xW(V3xu4yB+Gs5`SXO#vgB2nV^eNO=xcR(`-ZRsk+ zJp*Zue+z{`;Uit_c-&AfjzBaQJUu*#mfSvAfeqK#u`V1ySgqjNfeHAxXqM@EI9sTR zQggwAl&23q(t^d4Q-#S50(go*BNX6Qz(pqx&+h~nj!W1|{|)eTdH(%B!SM$HhQlM7 zm>l;K(Bur5*yiBAbQR*>&i#8l|3+%yruTCHm(XdEoF@{^KXF>%AYJ{zHG2tAm}a&B#jik9-3^UJLpeR*tjmMHfrZobW4(1GfKvq;Vf-=z(#1r~ zGD741oA?EeKza^VMNrUr8#KZg{5#3NM+C_?6khxx28RQ&+-eaz6H}!B9t5E>{EIUI zC(`1BCTQR_AR54&CxnA0Cl=0Mga!`IR~DQh8?1MC=A-)>BhU$yXjo6s={;3|2|p2e7gMdU`jA5F zde{IZ0$~GklWYVXsH*+!V4B@+CI0+c`i|921os`2>Q!Q%TZ0Q!Rj#N#d>KMy*o2hEY7vnIcv zok7}nVbKLaw?DJ&1S!)6O$qEP3h4ypmE}AGS*wH!1tyLh}0N$Y+W$qUM%m+Xk!g%&|2r*z5Lms>FNEs7&44yqOK8Bo5SJ206d=GJ zJZ0o%wIEhWfeG|i08Rt|)`9SC(H#8`3KE*lkQRcHPYb>LWRw?^IRDBy!vT9L_Tv&1ku-ot zNVDk(Vu1Zin!#C>9^TUR9RL=IsEx3xuUoY!6&t}ERnx4B3IC#*VX}as}lp5C}Pmzm87Mk9Vk343wlvN<~2bP%JVmQw%~1( zzRv&}XiW;_ku6l)Ify3sSY{-Y?VN!;{Bp|_(H8Lh=r`pPhb9q(g;4QK z02UF+k44uE*b1oD1{QJfxPd4Jh$zG;P5h6t7)u9OBHd6;rsx5{z*I))5D-b@GSR@G z@gXe;c^J|tBo*bRp&p_Hye;$jO#OVqn0A5Y`yTv%#R2 z8B8s(Ch@%UN3C{PiIlYeNKA@E+P(g&b&jZ(p0SR%^7Uj5*ua-i)cx!{iFmNPb z_25n++k!v=3JR*=P1EvNijWW^X~YcvH$uQolPe~pxl8E)LNjTdK@1k4P4KE$ zURqX5N?8GRcHB{F33&`i50u7=+;{Q~V#X#EO_<;xmJrKaenO@8A(I#|%az)%G}qGR z4!pJnIa#!mnhOS>-dg+{c!zJf*kXPPEo4Jwvi~cP5OMIy8yL+ii_t|px;vqu6=JX~ zB|}x6f)rjZXoP8koSVb|!~&mhL7tYS3E(ESDqGWMC>959=86?G*K&vf@COqKCry|= z6Nex=toA;KbBTema$3QWAZi2C-ViW$321~GzY7#n{&z=htT|W z<`aWtS*-Lc*9t#lItGSmg8(5`mq54PCI-SUMK6y}v`c`kmmnzvpIBUT>`Mg%VznEv zzJM4IKivT3g%pA%p~U}fO7x~3Q%6K)R}NSl79i9Ssk0O6%&JKx$^&$ zUR~wU!jWxxnvpPwlP@6#S^a3a8heWxm&e#Ax+8tEf_9FyIOG$HW*M zMXp~Xk%cdw$CMF`1|o(u$ijeRAqE4|AIpkQurlQOh`bs~wAum7L+C&xfQ5tqyV_kY zL(7see~)kB_-7vVgFG65d;%Jw1M%(7e+BYSf==K-z_GN8n~fw2fU5?La1qpwyTkxo z)KgIA8e;6fsn^jw*T{Pg;G_e_+JO7gRfyxSBnHxQ#{TpSA#k!)VlP3#UNLBdIqR8f zV(<|C6azuQ_N#&m~RIVKuKjq zR#LK#7&L@3vf!vfRUkMyeV!bD8p@1jfkv1J2!B8fhF|_6zPf4)Ycg~(oSz_V`~Wn< z{Jlp#F@yiI=#akqOW_bsPAVpgN8s~T7s0x@|6RK*YGFuHmOJin5S9xE;X016M&cnr z{tZN%f4YtXPITO-Zy)FeoO=qymvG6>$0lMB{u19`e1s^rAjm71?7$&go>>=^1rk1mr%L)~lgqZd_4-$@IE@#F!o&#X+fkxkgFqkY&$Wd|5i9OQ7C6i zH*c`v1=OSA=rP?f^&lA_g4S{2mWToFg*aTte~#$ityYACyF8{R^Z;r)iGjNy%{(@4 zc2-VyUU-Ru46Ykk$pk1T&xkHm+bx!0w*r-jUhJ-ZYZ=Gs5 z`miV2FhV95ET3FKpSTyqp!sLXH8}cgJ>hE#t;EOyO%t@Gs}MKVOAI2sC^;`?`&6K_ zxZqd3O0#_31%;xk`P2K7=aUN5Hau2r}}kC)Pk8F=+nPjE4iZ+>#Jx zUcSHj4}kqG^8zP18^v`JdI7CK$z+A(sP_{C2~Kk0#y7pgKMf_Sp(3RlXiHZiE@6P^ z@fRiMPfBokk_C=s%NJr0)>kUu5RDJgJcM-xI1;@qPE>de=mL^+EB5kF4-yRl&S#bS zvCEZ8(3}6(T%caV{EQ7y_Q=P68;0 zsNlN#xf2A|TVo=5Wa$igfub@-g5Jos5%dQ8TB<$g#h^4OSmlVYCwMyf=hIjqGm9Hk zpx0cv&j@CJ3Z4-7{ng;(3Ja?Y!M0CuV$?#ovSj|CzXaPU;5gnZ*+6;;;AsL4O@NDZ z`_fze@3>ZBfqtQd2PfqQ4x9wp9caJ4o`fS+1)^(`*}D6p1!Man;fjaX327PU#?*SBfeS%IZvcqUpRoqu=m&vLeD6R_>=E@B}; zB8^{@qKk5aoN@TN^~oP*7rVg7(E4~=0t6iF#3BG|vI{_L{wO%34K^(-Q0w-iI>_0iU5U$vQN9r0E+$gS7tARfv1T z`5!`pwxdI(Q7A|OS{kEe>yEWTdphF}AcC^)aM(tLV%uqf41tIQp}zzS+zW9OT>l|9 z35>V1<-(b4aF(O_=xZ*BX%(O$2~eEgPb`YRNHZK!KFTstLf$4+*7GHRbMXMNaG(QB z{$OCOL1F-K5Wju|1vZ2J`p0lUmwN)11VHbCBfb|Lod4D0E`%{l$7|tvw~&7Vzk;$A zur9#*fe7?d00ivPTTw^Z%u75Va6p_J4>%0l&c+$+Qe9YvwqQaQ38e+d1-~4Qa_74y zDD+${VXl0{0zM1x}wA#);$|4|y{h{8haqJgIbe~{Aim*igc01i}eBaCOf_=$z% z1kRKMbowdx3y#2ITK=aV*VMv$O~2V+B<;L`GzQ>%2$~CMOIIQ8=|N)gtu}h@jt)?P zeVMe&Ls?f%6i6w+iG9XJB_7Dpgd~lyA~kvFKSzfzkKs>CUtC!xg?0uTmE3>;N;#sz z9!WTarCb~ikh)g^{3WE{mczs%v_#`si@^Xl9Fn<(8K7pd;HZPGbdWOz4w!JppN|5k zZUfshnU|D4VYKQhNGv*_zZNFu;v_(O!YT@5InP}+fIwP+K!je^Cm~`XEIY&ta<5dN zwRm{Ls3ixoo8Um}-=6DrEX?Ktl&^*sm=G2cg^m)7YPsTv*akuuJ0w`T@l(V9-01vGmjz*3pbD2at| z8D6QL|1`x8sr(kuJePoidm-+-*nfoeFD6L^Z@3_{3C?tY2g$WzKn{vfp(Gb!>SM1s zu^cRAc1pV; z?VOh>5paZ~I|@1i85}9@3^owMqFwH#87x5s_d@W6A!5-ki`Ett?eD#Q1Fyuvw_sR^ znS^nXzBI8g?9jkb1Tn{AQ9>5!3=Vrxb4E#m#GC^@8Ufp37S4ZwC6Ux^(P1dQz6P)n zhLKG&#A5RVd(`k20N`83I*_>n-kAqTi@=Bcdye;fxW*#u#eI|5}}mca|p>$-nhp;nXg-6hrJFzz3EduVCIq1!D32^0=0{uk`MRjCj#=df#wa`(p88%sZ1=^KPod| z*zGLAG?0NlIkK?GN>)oAEWd@d_H`qS*WnA}w^fLR`6rSt@_ixJgcHC1E%ck=cX%|Z z5(|vL04ynzKM;wO!P^lk(z}7FK>7KCyub)XSia4rpE0sT`8 z4#%{USLbuj0Zi4P5h{EsO=58^@k#6V3Lg&A=Tk?lp}b);Xda*~U4=MZEn*=p4&xPQv9S1Hv!>r~SWR{I_8MoQTC+2CF^+#JT`v-gJp* z;9iIu03Wa;E-Ut@`3Hw3_MG7v92h$fG{X7?w;r)rAbt_nFW{sIBEVYc4{#BtB6jK% zi{N)s1Tr^J9uuF%!N@pU{eBUlX#FAf3jo=D&0(MO90DZ;aarmc<&&%0h4~TTUawI!uc>u_*p1V2k<-whjYFuEZCcUPl8`txlKASP%1;S`iEGpT&|Y zglQ)@ka3d3^``*Y%0V+*A|JRH;`Un;3vwlYrJ&EfLgkR(m28)1ZwRX&yf(ywS;fx3 zRzKj#wY;coLqM)`w!|X*M~hqFK>fZX!)8w`sO3Cd?oGq{L2&5qpQ=m^fg}nv!jzns z1JUSyohP+CB?qS}lCF|{gF=qgOBJw=#KQPDDLFW7Ke#1Rpo&8^XoL~kWhY{>{Zg!p z(LJ;PjxehO2g&$dP7YL+Ssl!#ITH)%F9vF%Z1kIhjhCmR2{Sk)=>Jz-zt7;n3H@?S zMyOT~yAlg?`ILmXOQ2Taz#OI^DQO411P5QNh_-RyGmOOf{L8^C*AIV+w&5^-ygwWd zrMy;0OT!pqF|JbmuxruaW2=9^WX2i1P4D)|H(%T!XC;qklP^;GQDe8 zd{lwPf2lM4>U4ZYiePa%0uczlTChY6=neoaUW|zOdCB){5h^m;65I-^vb;`6a6mNg zuaCQ~et7TFvtTLs{5*Q~!{97%9(Qo4ktNaw%>xe7#NbcE#{98U9)eB_|9PjL;L8*i zcFX#vM9?H1GOER%y)8n8K(I)x{8lz%Xw}>P4)9{%fUGOOodFRPWlgW<1Ykq!p+tYe ohn(!liT`B?P;CZ_pRwS}?&?ZpQKU>cWxc~qF literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/README.md b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/README.md new file mode 100644 index 00000000..3a2a768f --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/README.md @@ -0,0 +1,98 @@ +# Helper Scripts + +This README outlines the functionality and provides sample usage examples for each essential helper script. These scripts are designed to help reproduce the key results from our evaluation of WASABI. We encourate users to check out our [paper](https://bastoica.github.io/files/papers/2024_sosp_wasabi.pdf) for details. + +### § `run.py` + +The `run.py` script automates WASABI's multiphase pipeline for benchmarking a set of target applications, currently Hadoop, HBase, Hive, Cassandra, and Elasticsearch. It facilitates cloning repositories, preparing code by replacing configuration files and rewriting source code, running fault injection tests, and executing bug oracles to analyze test and build reports. + +Usage: +``` +python3 run.py --phase --benchmark +``` + +Arguments: +* `--phase`: Specifies the phase of the pipeline, + * `setup`: Clone the repository and checkout a specific version for the benchmark. + * `prep`: Prepare the code by replacing configuration files and rewriting source code. + * `bug-triggering`: Run fault injection tests on the benchmark. + * `bug-oracles`: Run bug oracles to analyze test and build reports. + * `all`: Execute all WASABI's phases, in sequence. + +### § `run_benchmarks.py` + +The `run_benchmarks.py` script automates WASABI's phase of running fault injection and identifying retry bugs for a target application. It performs several tasks: cleaning up local package directories to prevent build conflicts, building WASABI and the target application, running the test suite with fault injection, and saving the output logs for analysis. + +Usage: +``` +python3 run_benchmarks.py --benchmark +``` + +Arguments: +* `--benchmark`: Specifies the benchmark application to build and test. Current choices include `hadoop`, `hbase`, `hive`, `cassandra`, and `elasticsearch`. + +### § `bug_oracles.py` + +The `bug_oracles.py` analyzes log files generated during the testing of a target application. It processes both build and test logs to identify and categorize "HOW" and "WHEN" type retry bugs. + +Usage: +``` +python3 bug_oracles.py --benchmark +``` + +Arguments: +* ``: The root directory where the build and test logs are saved. +* `--benchmark`: Specifies the benchmark application for which to analyze logs. Current choices include `hadoop`, `hbase`, `hive`, `cassandra`, and `elasticsearch`. + +### § `source_rewriter.py` + +The `source_rewriter.py` script automates WASABI's phase of modifying of test files to adjust retry bounds and timeout values in large-scale applications. Operating in two modes, bounds-rewriting and timeout-rewriting, the script either increases the retry limits or extends the timeout durations in test methods, based on a given specification. + +* `--mode`: Specifies the operation mode of the script. Choices are: + * `bounds-rewriting`: Modifies retry bounds in Java code to a higher value. + * `timeout-rewriting`: Adjusts timeout annotations and wait calls in Java test methods to a higher value. +* ``: Path to the configuration file listing the changes to be made. The format depends on the mode: + * For bounds-rewriting, it should contain variable names, assigned values, assignment methods, and test class names. + * For timeout-rewriting, it should list the test classes and test methods that require timeout adjustments. +* ``: The root directory of the target application where the script searches for test files to modify. + +### § `display_bug_results.py` + +The `display_bug_results.py` analyzes bug reports generated by the test suite of a target application during fault injection, aggregates them based on bug types and the application name, compares them to the ground truth dataset from our [paper](https://bastoica.github.io/files/papers/2024_sosp_wasabi.pdf), and prints summary tables similar to Table 3 (see "4. Evaluation", page 9). + +### § `generate_aspect.py` + +The `generate_aspect.py` script automates the creation of AspectJ code for injecting exceptions into specific methods of a target application. It reads a specification file that details which exceptions to inject and where to inject them. The specification file is tailored for the given target application and contains the methods implementing retry along with their source code locations, the retry-triggering exceptions being handled, and the methods being retried along with their source code locations. Using this information, the script generates an AspectJ aspect that can be woven into the target application to simulate retry-triggering exceptions at specific program points that should trigger retries when such exceptions occur. + +Usage: +``` +python3 generate_aspect.py --spec-file --aspect-file +``` + +Arguments: +* `--spec-file`: Path to the input specification file containing exception injection details. This file should be in CSV format (though it use custom delimiters, `!!!`) and includes entries that specify the methods implementing retry, their source code locations along with the retry-triggering exceptions being handled, and the methods being retried along with their source code locations. Each line has the following format: +``` +[Retry Enclosing Method Location]!!![Enclosing Method]!!![Retried Method]!!![Retried Method Location]!!![Exception Class] +``` +Check out the main [README](https://github.com/bastoica/wasabi/blob/master/wasabi-testing/README.md) file for more details. +* `--aspect-file`: Path to the output file to save the generated AspectJ aspect. + +### § `test_plan_generator.py` + +The `test_plan_generator.py` script automates the generation of test plans by matching retry locations with test cases in a target application. The script implements a heuristic that tries to ensure that each test is uniquely matched to a retry location, so no test is exercising two distinct retriable methods. The intuition is that once an exception is injected for a retried method at location `A`, another retried method executing at a later location `B` might not execute since the test could crash or hang. + +Usage: +``` +python3 test-plan-generation.py --retry_locations_input \ + --test_retry_pairs_input \ + --path_to_configs +``` + +Arguments: +* `--retry_locations_input`: Path to the input file containing details about retry locations. +* `--test_retry_pairs_input`: Path to the input file mapping tests to retry locations. Each line should contain a test name and an injection location (retried method), separated by a comma. +* `--path_to_configs`: Path where the generated configuration files should be saved. + +### § `wasabi_coverage.py` + +The `wasabi_coverage.py` script analyzes log files generated by a target application woven (instrumented) with WASABI, to determine code coverage statistics. Specifically, the script scans through test output logs to identify which methods have been instrumented and which have actually had exceptions injected during testing. diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/bug_oracles.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/bug_oracles.py new file mode 100755 index 00000000..8b3000c7 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/bug_oracles.py @@ -0,0 +1,478 @@ +import argparse +from collections import defaultdict +import os +import re + +class LogMessage: + def __init__(self) -> None: + self.type = None + self.timestamp = None + self.test_name = None + self.injection_site = None + self.injection_location = None + self.retry_caller = None + self.exception_injected = None + self.retry_attempt = None + self.sleep_location = None + self.failure_string = None + self.failure_exceptions = None + self.stack_trace = None + + def parse_log_message(self, log_message: str, is_test_report: True) -> None: + """Parses a single log message string and populates the LogMessage object's attributes. + + Args: + log_message (str): A string containing a log message. + """ + + if is_test_report: + if "[wasabi]" in log_message: + tokens = log_message.split(" | ") + self.test_name = self.get_test_name(tokens[0], True) + if "[Pointcut]" in tokens[0]: + self.parse_pointcut_message(tokens) + elif "[Injection]" in tokens[0]: + self.parse_injection_message(tokens) + elif "[THREAD-SLEEP]" in tokens[0]: + self.parse_sleep_message(tokens) + elif "[FAILURE]" in tokens[0]: + self.parse_failure_message(log_message) + else: + if "[ERROR]" in log_message: + self.type = "error" + self.test_name = self.get_test_name(log_message, False) + self.stack_trace = self.get_error_details(log_message) + + def get_test_name(self, log_message: str, is_test_report) -> str: + """Extracts the test name from an error log message. + + Args: + log_message (str): A string containing an error log message. + """ + test_name = "UNKNOWN" + if is_test_report: + token = self.get_value_between_separators(log_message, "---", "---") + if token: + match = re.search(r'\w+\(.*\s+(.*\(.*?\))\)', token) + test_name = match.group(1).split("(")[0] if match else test_name + test_name = re.sub(r'[^\w.]+.*$', '', test_name) + tokens = test_name.split('.') + if len(tokens) >= 2: + test_name = '.'.join(tokens[-2:]) + else: + for token in log_message.split(" "): + if "test" in token: + test_name = re.sub(r'[^\w.]+.*$', '', token) + break + return test_name + + def get_error_details(self, log_message: str) -> str: + """Extracts the failure string and stack trace from an error log message. + + Args: + log_message (str): A string containing an error log message. + """ + self.failure_string = "" + stack_found = False + stack = [] + for line in log_message.split("\n"): + if line.strip().startswith("at "): + stack.append(line.strip().split("at ")[1]) + stack_found = True + elif not stack_found: + self.failure_string += line + "\n" + else: + break # Stop if stack trace processing is complete + norm_stack = self.normalize_stack_trace(stack) + return norm_stack + + def normalize_stack_trace(self, stack_trace: [str]) -> str: + """Normalizes the stack trace for a given test failure by removing + top frames that correspond to Java standard libraries. + + Args: + stack_trace (str): The stack trace for a particular test failure. + + Returns: + str: The normalized stack trace, if it exists. + """ + javalib_frames_prefixes = ["java.", "jdk.", "org.junit.", "sun.", "oracle.", + "app//org.mockito.", "app//org.slf4j.", + "org.apache.maven.surefire."] + norm_stack_trace = [] + for frame in stack_trace: + if not any(frame.startswith(prefix) for prefix in javalib_frames_prefixes): + norm_stack_trace.append(frame.strip()) + return "\n".join(norm_stack_trace) + + def parse_pointcut_message(self, tokens: list) -> None: + """Parses a pointcut log message and populates the LogMessage object's attributes. + + Args: + tokens (list): A list of string tokens derived from the log message. + """ + self.type = "pointcut" + self.injection_site = self.get_injection_site(tokens[1]) + self.injection_location = self.get_value_between_separators(tokens[2], "---", "---") + self.retry_caller = self.get_value_between_separators(tokens[3], "---", "---") + + def parse_injection_message(self, tokens: list) -> None: + """Parses an injection log message and populates the LogMessage object's attributes. + + Args: + tokens (list): A list of string tokens derived from the log message. + """ + self.type = "injection" + self.exception_injected = self.get_value_between_separators(tokens[1].split("thrown after calling")[0], "---", "---") + self.injection_site = self.get_injection_site(tokens[1].split("thrown after calling")[1]) + self.retry_caller = self.get_value_between_separators(tokens[2], "---", "---") + self.retry_attempt = int(self.get_value_between_separators(tokens[3], "---", "---")) + + def parse_sleep_message(self, tokens: list) -> None: + """Parses a sleep log message and populates the LogMessage object's attributes. + + Args: + tokens (list): A list of string tokens derived from the log message. + """ + self.type = "sleep" + self.sleep_location = self.get_value_between_separators(tokens[1], "---", "---") + self.retry_caller = self.get_value_between_separators(tokens[2], "---", "---") + + def parse_failure_message(self, log_message: str): + """Parses a failure log message and populates the LogMessage object's attributes. + + Args: + log_message (str): A string containing a log message. + + """ + if "Failure message" in log_message and "Stack trace:" in log_message: + self.type = "failure" + self.failure_string = re.search(r'Failure message :-: (.*?) :-: \| Stack trace:', log_message, re.S).group(1) + self.failure_exceptions = self.extract_failure_exception(self.failure_string) + + def extract_failure_exception(self, log_message: str) -> set: + """ + Extracts the failure exceptions from the failure log message. + + Args: + log_message (str): A string containing a log message. + + Returns: + list: A list of exceptions in the failure message. + """ + exceptions = set() + tokens = log_message.split(":-:") + + for token in tokens: + # Estract fully qualified Java exceptions + java_exceptions = re.findall(r'java\.[a-zA-Z]+\.[a-zA-Z]+Exception', token) + exceptions.update(java_exceptions) + + # Extract fully qualified Apache exceptions + org_exceptions = re.findall(r'org\.[a-zA-Z]+\.[a-zA-Z]+Exception', token) + exceptions.update(org_exceptions) + + # Extract truncated or unqalified exception names + norm_exceptions = re.findall(r'[a-zA-Z]+Exception', token) + exceptions.update(norm_exceptions) + + norm_exceptions = {e.strip(' \t\n:.') for e in exceptions} + return norm_exceptions + + def get_injection_site(self, token: str) -> str: + """Extracts the injection site from the token. + + Args: + token (str): A string token derived from the log message. + + Returns: + str: The extracted injection site or 'UNKNOWN' if not found. + """ + match = re.search(r'\w+\(.*\s+(.*\(.*?\))\)', self.get_value_between_separators(token, "---", "---")) + if match: + return match.group(1).split("(")[0] + return "UNKNOWN" + + @staticmethod + def get_value_between_separators(text: str, start_sep: str, end_sep: str) -> list[str]: + """Extracts a value between two separators from a given text. + + Args: + text (str): The text containing the separators. + start_sep (str): The starting separator. + end_sep (str): The ending separator. + + Returns: + str: The extracted value or None if not found. + """ + try: + return text.split(start_sep)[1].split(end_sep)[0].strip() + except IndexError: + return None + + +def parse_build_log(file_path: str) -> list: + """Parses a single build log file, handles errors, and parses the relevant log messages. + + Args: + file_path (str): Path to the build log file. + + Returns: + list[LogMessage]: A list of LogMessage objects parsed from the log file. + """ + timeout_messages = ["TimeoutException", + "TimeoutIOException", + "SocketTimeoutException", + "TestTimedOut", + "[ERROR] There was a timeout"] + + with open(file_path, "r") as file: + lines = file.readlines() + + log_messages = [] + log_timeout_messeges = [] + + index = 0 + while index < len(lines): + if "[ERROR]" in lines[index] and "test" in lines[index]: + offset = index + log_message = "" + while index < len(lines) and (lines[index].strip().startswith("at ") or ((index - offset + 1) <= 50)): + log_message += lines[index].strip() + "\n" + index += 1 + + log_msg = LogMessage() + log_msg.parse_log_message(log_message, False) + log_msg.test_name = file_path.split('build-')[1].split('.')[0] + "." + log_msg.test_name.split(".")[-1] + log_messages.append(log_msg) + + if index < len(lines) and any(exception in lines[index] for exception in timeout_messages): + log_timeout_messeges.append(lines[index]) + if index < len(lines) and any(exception in log_msg.stack_trace for exception in timeout_messages): + log_timeout_messeges.append(lines[index]) + else: + index += 1 + + return log_messages, log_timeout_messeges + +def parse_test_log(file_path: str) -> list: + """Parses a single test report log file to extract log messages. + + Args: + file_path (str): Path to the test report log file. + + Returns: + list[LogMessage]: A list of LogMessage objects parsed from the log file. + """ + log_messages = [] + with open(file_path, 'r') as file: + log_data = file.read() + log_entries = log_data.strip().split("\n") + for entry in log_entries: + msg = LogMessage() + msg.parse_log_message(entry, True) + log_messages.append(msg) + + return log_messages + +def error_in_test_code(op: LogMessage) -> bool: + """Determines if a particular failure log message and call stack + indicate a false positive or a true retry bug. + + Args: + failure_exception (str): The failure exception thrown by the test. + stack_trace (list[str]): The failing call stack. + + Returns: + bool: 'True' if error is located in test code, 'False' otherwise. + """ + test_frames_patterns = ["Test", ".test", "MiniYARNCluster", "MiniDFSCluster", "MiniRouterDFSCluster", ".doBenchmark("] + if op.stack_trace and len(op.stack_trace) > 0: + for pattern in test_frames_patterns: + if pattern in op.stack_trace[0]: + return True + + test_code_exceptions = [".TimeoutException", ".TimeoutIOException", ".AssertionError", ".AssertionFailedError", + ".ComparisonError", ".ComparisonFailure", ".AssumptionViolatedException", ".InterruptedException", + ".InterruptedIOException", ".AssumptionViolatedException", ".DoNotRetry", ".DoNotRetryTest", + "org.mockito.exceptions", "java.lang.RuntimeException"] + for e in test_code_exceptions: + if e in op.failure_string: + return True + + return False + +def check_how_bugs(test_failures: dict(), execution_trace: defaultdict(list)) -> set: + """Searches for HOW bugs by parsing test reports for logged failures with a different exception + than the one injected by WASAI. + + Args: + log_messages (list[LogMessage]): A list of LogMessage objects parsed from a single log file. + + Returns: + set: A set of tuples with HOW buggy retry locations and a 'how-bug' tag. + """ + how_bugs = set() + + for test_name, operations in execution_trace.items(): + last_injection_op = None + + for op in operations: + # Skip if error in test code + if op.test_name in test_failures and error_in_test_code(test_failures[op.test_name]): + continue + if op.type == "injection": + last_injection_op = op + elif op.type == "failure": + if last_injection_op is None or any(last_injection_op.exception_injected in exception for exception in op.failure_exceptions): + continue + elif error_in_test_code(op) or "| Retry attempt ---" in op.failure_string: + continue + else: + how_bugs.add(("how-bug", last_injection_op)) + last_injection_op = None + + return how_bugs + +def check_when_missing_backoff_bugs(execution_trace: defaultdict(list)) -> set: + """Searches for WHEN missing bacckof retry bugs by parsing test repors and checking for consecutive retry + attempts where WASABI did not record any Thread.sleep-like call. + + Args: + log_messages (list[LogMessage]): A list of LogMessage objects parsed from a single log file. + + Returns: + set: A set of tuples with WHEN missing backoff buggy retry locations ahd a 'when-missing-backoff' tag + """ + when_missing_backoff_bugs = set() + + for test_name, operations in execution_trace.items(): + max_op = None + has_sleep = False + max_retry_attempts = 0 + for op in operations: + if op.type == "sleep": + has_sleep = True + elif op.type == "injection" and max_retry_attempts < op.retry_attempt: + max_retry_attempts = op.retry_attempt + max_op = op + + if not has_sleep and max_retry_attempts >= 2: + when_missing_backoff_bugs.add(("when-missing-backoff", max_op)) + + return when_missing_backoff_bugs + +def check_when_missing_cap_bugs(execution_trace: defaultdict(list)) -> set: + """Searches for WHEN missing cap retry bugs by parsing test repors and checking if WASABI can + inject a large number of exceptions that indicate infinite retry attempts. + + Args: + log_messages (list[LogMessage]): A list of LogMessage objects parsed from a single log file. + + Returns: + set: A set of tuples with WHEN missing cap buggy retry locations ahd a 'when-missing-cap' tag + """ + MISSING_CAP_BOUND = 90 + when_missing_cap = set() + + for test_name, operations in execution_trace.items(): + for op in operations: + if op.type == "injection" and op.retry_attempt >= MISSING_CAP_BOUND: + when_missing_cap.add(("when-missing-cap", op)) + + return when_missing_cap + +def check_when_missing_cap_timeouts(execution_trace: defaultdict(list), test_timeouts: dict()) -> set: + """Searches for WHEN missing cap retry bugs by parsing test repors and checking if WASABI injects + a large + + Args: + log_messages (list[LogMessage]): A list of LogMessage objects parsed from a single log file. + + Returns: + set: A set of tuples with WHEN missing cap buggy retry locations ahd a 'when-missing-cap' tag + """ + MISSING_CAP_BOUND = 5 + timeout_retry_locations = ["org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile", + "org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile", + "org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState", + "org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run", + "org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance", + "org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize", + "org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom", + "org.apache.hadoop.hbase.util.FSUtils.setClusterId", + "org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks"] + + when_missing_cap_timeout = set() + + for test_name, operations in execution_trace.items(): + for op in operations: + if op.type == "injection" and op.retry_attempt >= MISSING_CAP_BOUND: + test_class = test_name + if len(test_name.split(".")) > 1: + test_class = test_name.split(".")[0] + if test_class in test_timeouts and op.retry_caller in timeout_retry_locations: + when_missing_cap_timeout.add(("when-missing-cap", op)) + + return when_missing_cap_timeout + +def main(): + parser = argparse.ArgumentParser(description="Parse and process log files for retry bug analysis.") + parser.add_argument("logs_root_dir", type=str, help="The root directory where build/test logs are saved") + parser.add_argument("--benchmark", choices=["hadoop", "hbase", "hive", "cassandra", "elasticsearch", "all-maven"], required=True, help="The benchmark to run") + args = parser.parse_args() + root_path = args.logs_root_dir + + test_timeouts = dict() + test_failures = dict() + all_bugs = set() + coverage = set() + + for root, _, files in os.walk(os.path.join(root_path, "build-reports/")): + for fname in files: + if "build-" in fname and fname.endswith('.log'): + build_log_messages, build_log_timeout_messages = parse_build_log(os.path.join(root, fname)) + + for msg in build_log_messages: + test_failures[msg.test_name] = msg + + test_class = fname.split(".")[-2] + test_timeouts[test_class] = build_log_timeout_messages + + for root, _, files in os.walk(os.path.join(root_path, "test-reports/")): + for fname in files: + if fname.endswith('-output.txt'): + test_log = parse_test_log(os.path.join(root, fname)) + execution_trace = defaultdict(list) + + for msg in test_log: + if msg.type in ["injection", "sleep", "failure"]: + execution_trace[msg.test_name].append(msg) + if msg.type == "pointcut": + coverage.update([f"test-injected,{msg.test_name}"]) + + all_bugs.update(check_when_missing_backoff_bugs(execution_trace)) + all_bugs.update(check_when_missing_cap_bugs(execution_trace)) + all_bugs.update(check_how_bugs(test_failures, execution_trace)) + all_bugs.update(check_when_missing_cap_timeouts(execution_trace, test_timeouts)) + + print("// ----------------------------- //") + print(f" Retry bugs for {args.benchmark}") + print("// ----------------------------- //") + for bug_no, bug in enumerate(all_bugs, 1): + bug_type, op = bug + print(f"bug-{bug_no},{bug_type},{op.retry_caller},{op.test_name}") + + bug_file = os.path.join(root_path, f"{args.benchmark}-bugs-per-test.csv") + with open(bug_file, "w") as f: + for bug_no, bug in enumerate(all_bugs, 1): + bug_type, op = bug + f.write(f"bug-{bug_no},{bug_type},{op.retry_caller},{op.test_name}\n") + + cov_file = os.path.join(root_path, f"{args.benchmark}-cov.csv") + with open(cov_file, "w") as f: + for cov_msg in coverage: + f.write(f"{cov_msg}\n") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/display_bug_results.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/display_bug_results.py new file mode 100644 index 00000000..e4cda370 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/display_bug_results.py @@ -0,0 +1,199 @@ +from collections import defaultdict +import os +import sys + +def get_benchmark_name(loc): + """ + Classifies the location based on its prefix. + + Parameters: + location (str): The bug location string to classify. + + Returns: + str: The classification group (hdfs, yarn, mapreduce, hadoop, hbase, hive, cassandra, elasticsearch). + """ + if loc.startswith("org.apache.hadoop.hdfs") and "SecondaryNameNode.doWork" not in loc: + return "hdfs" + elif loc.startswith("org.apache.hadoop.yarn"): + return "yarn" + elif loc.startswith("org.apache.hadoop.mapreduce") or loc.startswith("org.apache.hadoop.mapred"): + return "mapreduce" + elif loc.startswith("org.apache.hadoop.hbase"): + return "hbase" + elif loc.startswith("org.apache.hadoop.hive"): + return "hive" + elif loc.startswith("org.apache.cassandra"): + return "cassandra" + elif loc.startswith("org.apache.hadoop") or "SecondaryNameNode.doWork" in loc: # initialy found in hadoop-common, added here to match Table 3 + return "hadoop" + elif loc.startswith("org.elasticsearch"): + return "elasticsearch" + else: + return "unknown" + +def aggregate_bugs(root_dir): + """ + Searches for bug report files and aggregates bugs based on their type and + which application have been found in. + + Parameters: + root_dir (str): The root directory to search for the bug report files. + + Returns: + dict: A dictionary storing the benchmark, bug type, and retry location tuples. + """ + bugs = defaultdict(lambda: defaultdict(set)) + unique = dict() + + for dirpath, _, files in os.walk(root_dir): + for file in files: + if file.endswith(".csv"): + file_path = os.path.join(dirpath, file) + + with open(file_path, 'r') as f: + for line in f: + if "how-bug" in line or "when-missing-" in line: + tokens = line.strip().split(",") + + bug_type = tokens[1] + bug_loc = tokens[2] + + key = bug_type + bug_loc + if key in unique: + continue + unique[key] = "x" + + benchmark = get_benchmark_name(bug_loc) + bugs[bug_type][benchmark].add(bug_loc) + + return bugs + + +def get_ground_truth_bugs(file_path: str): + """ + Reads the ground truth bugs from a file and organizes them into a dictionary. + + Parameters: + file_path (str): The path to the ground truth file. + + Returns: + dict: A dictionary similar to the bugs dictionary with bug_type, benchmark, and retry_location. + """ + ground_truth = defaultdict(lambda: defaultdict(set)) + + with open(file_path, 'r') as f: + for line in f: + tokens = line.strip().split(",") + benchmark = tokens[0] + bug_type = tokens[1] + retry_location = tokens[2] + ground_truth[bug_type][benchmark].add(retry_location) + + return ground_truth + + +def print_bug_tables(bugs, ground_truth): + """ + Prints a table of bug types and the benchmark where they were found. + + Parameters: + bugs (dict): A dictionary that aggregates all bugs found by WASABI. + """ + benchmarks = ["hadoop", "hdfs", "mapreduce", "yarn", "hbase", "hive", "cassandra", "elasticsearch"] + ordered_bug_types = ["when-missing-cap", "when-missing-backoff", "how-bug"] + row_names = { + "how-bug": "HOW", + "when-missing-backoff": "WHEN-no-delay", + "when-missing-cap": "WHEN-no-cap" + } + + display_table_name("Table 3 (inverted, bugs found)") + header = ["Bug Type"] + benchmarks + ["TOTAL"] + print(f"{header[0]:<20}", end="") + for b in benchmarks: + print(f"{b:<15}", end="") + print(f"{'TOTAL':<15}") + + unmatched_ground_truth = {} + for bug_type in ordered_bug_types: + display_name = row_names.get(bug_type, bug_type) + print(f"{display_name:<20}", end="") + total_count = 0 + + for benchmark in benchmarks: + ground_truth_locations = ground_truth.get(bug_type, {}).get(benchmark, set()) + bug_locations = bugs.get(bug_type, {}).get(benchmark, set()) + unmatched_ground_truth.setdefault(bug_type, set()) + + matching_locations = set() + for bug in bug_locations: + if bug in ground_truth_locations: + matching_locations.add(bug) + + count = len(matching_locations) + total_count += count + + non_matching = ground_truth_locations - matching_locations + unmatched_ground_truth[bug_type].update(non_matching) + + print(f"{count:<15}", end="") + + print(f"{total_count:<15}") + + display_table_name("Table 3 (original)") + print(f"{header[0]:<20}", end="") + for b in benchmarks: + print(f"{b:<15}", end="") + print(f"{'TOTAL':<15}") + + for bug_type in ordered_bug_types: + display_name = row_names.get(bug_type, bug_type) + print(f"{display_name:<20}", end="") + total_count = 0 + + for benchmark in benchmarks: + bug_locations = bugs.get(bug_type, {}).get(benchmark, set()) + count = len(bug_locations) + total_count += count + print(f"{count:<15}", end="") + + print(f"{total_count:<15}") + + print("\nUnmatched ground truth locations (not found in bugs):") + for bug_type, unmatched_set in unmatched_ground_truth.items(): + if unmatched_set: + print(f"Bug Type: {bug_type}") + for location in unmatched_set: + print(f" - {location}") + + +def display_table_name(msg: str): + """ + Prints a "stylized" message indicating the table printed. + + Arguments: + msg (str): The name of the table. + """ + border_line = "*" * (len(msg) + 4) + inner_line = "*" + " " * (len(msg) + 2) + "*" + print(f"\n{border_line}") + print(f"{inner_line}") + print(f"*{msg.center(len(border_line) - 2)}*") + print(f"{inner_line}") + print(f"{border_line}\n") + + +def main(): + wasabi_root_dir = os.getenv("WASABI_ROOT_DIR") + if not wasabi_root_dir: + print("[WASABI-HELPER]: [ERROR]: The WASABI_ROOT_DIR environment variable is not set.") + sys.exit(1) + results_root_dir = os.path.join(wasabi_root_dir, "..", "results") + ground_truth_file = os.path.join(wasabi_root_dir, "wasabi-testing", "bugs_ground_truth.txt") + + bugs = aggregate_bugs(results_root_dir) + ground_truth = get_ground_truth_bugs(ground_truth_file) + print_bug_tables(bugs, ground_truth) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/generate_aspect.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/generate_aspect.py new file mode 100644 index 00000000..d872af6d --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/generate_aspect.py @@ -0,0 +1,264 @@ +import argparse + +def read_spec_file_to_dict(csv_file_path): + with open(csv_file_path, 'r') as f: + lines = f.readlines() + lines = lines[1:] + + exception_map = {} + for line in lines: + tokens = line.strip().split("!!!") + enclosing_method = tokens[1] + retried_method = tokens[2] + exception = tokens[4].strip().split(".")[-1] + + if exception not in exception_map: + exception_map[exception] = [] + exception_map[exception].append((enclosing_method, retried_method)) + + return exception_map + +def generate_aspectj_code(exception_map): + pointcut_code = "" + for exception, method_pairs in exception_map.items(): + patterns = [] + + patterns = [ + f"(withincode(* {enclosing}(..)) && call(* {retried}(..) throws *Exception*))" + for enclosing, retried in method_pairs + ] + pointcut_body = " ||\n ".join(patterns) + + pointcut_template = f""" + /* Inject {exception} */ + + pointcut inject{exception}(): + ({pointcut_body}) && + !within(edu.uchicago.cs.systems.wasabi.*); + + after() throws {exception} : inject{exception}() {{ + StackSnapshot stackSnapshot = new StackSnapshot(); + String retryCallerFunction = stackSnapshot.getSize() > 0 ? stackSnapshot.getFrame(0) : "???"; + String injectionSite = thisJoinPoint.toString(); + String retryException = "{exception}"; + String injectionSourceLocation = String.format("%s:%d", + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + if (this.wasabiCtx == null) {{ + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] [Non-Test-Method] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + return; + }} + + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[Pointcut] Test ---%s--- | Injection site ---%s--- | Injection location ---%s--- | Retry caller ---%s---\\n", + this.testMethodName, + injectionSite, + injectionSourceLocation, + retryCallerFunction) + ); + + InjectionPoint ipt = this.wasabiCtx.getInjectionPoint(this.testMethodName, + injectionSite, + injectionSourceLocation, + retryException, + retryCallerFunction, + stackSnapshot); + if (ipt != null && this.wasabiCtx.shouldInject(ipt)) {{ + this.activeInjectionLocations.add(retryCallerFunction); + + long threadId = Thread.currentThread().getId(); + throw new {exception}( + String.format("[wasabi] [thread=%d] [Injection] Test ---%s--- | ---%s--- thrown after calling ---%s--- | Retry location ---%s--- | Retry attempt ---%d---", + threadId, + this.testMethodName, + ipt.retryException, + ipt.injectionSite, + ipt.retrySourceLocation, + ipt.injectionCount) + ); + }} + }} +""" + pointcut_code += pointcut_template + + pointcut_code = pointcut_code.replace("( (within", "((within") + pointcut_code = pointcut_code.replace(") ||\n) &&", ")) &&") + + code_template = f"""package edu.uchicago.cs.systems.wasabi; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +/* Add imports specific to the exceptions thrown by the Aspect program */ + +import java.util.concurrent.ConcurrentHashMap; +import java.util.Set; + +import edu.uchicago.cs.systems.wasabi.ConfigParser; +import edu.uchicago.cs.systems.wasabi.WasabiLogger; +import edu.uchicago.cs.systems.wasabi.WasabiContext; +import edu.uchicago.cs.systems.wasabi.InjectionPolicy; +import edu.uchicago.cs.systems.wasabi.StackSnapshot; +import edu.uchicago.cs.systems.wasabi.InjectionPoint; +import edu.uchicago.cs.systems.wasabi.ExecutionTrace; + +public aspect Interceptor {{ + private WasabiContext wasabiCtx = null; + + private static final String UNKNOWN = "UNKNOWN"; + + private static final WasabiLogger LOG = new WasabiLogger(); + private static final String configFile = (System.getProperty("configFile") != null) ? System.getProperty("configFile") : "default.conf"; + private static final ConfigParser configParser = new ConfigParser(LOG, configFile); + + private Set activeInjectionLocations = ConcurrentHashMap.newKeySet(); + private String testMethodName = UNKNOWN; + + pointcut testMethod(): + (@annotation(org.junit.Test) || + @annotation(org.junit.jupiter.api.Test)) && + !within(org.apache.hadoop.*.TestDFSClientFailover.*) && + !within(org.apache.hadoop.hdfs.*.TestOfflineImageViewer.*) && + !within(org.apache.hadoop.example.ITUseHadoopCodec.*); + + + before() : testMethod() {{ + this.wasabiCtx = new WasabiContext(LOG, configParser); + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-BEFORE]: Test ---%s--- started", thisJoinPoint.toString()) + ); + + if (this.testMethodName != this.UNKNOWN) {{ + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-BEFORE]: [ALERT]: Test method ---%s--- executes concurrentlly with test method ---%s---", + this.testMethodName, thisJoinPoint.toString()) + ); + }} + + this.testMethodName = thisJoinPoint.toString(); + }} + + after() returning: testMethod() {{ + if (this.wasabiCtx == null) {{ // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + }} + + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-AFTER]: [SUCCESS]: Test ---%s--- done", thisJoinPoint.toString()) + ); + + this.wasabiCtx.printExecTrace(this.LOG, String.format(" Test: %s", this.testMethodName)); + + this.testMethodName = this.UNKNOWN; + this.wasabiCtx = null; + this.activeInjectionLocations.clear(); + }} + + after() throwing (Throwable t): testMethod() {{ + if (this.wasabiCtx == null) {{ // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + }} + + this.wasabiCtx.printExecTrace(this.LOG, String.format(" Test: %s", this.testMethodName)); + + StringBuilder exception = new StringBuilder(); + for (Throwable e = t; e != null; e = e.getCause()) {{ + exception.append(e); + exception.append(" :-: "); + }} + + StackSnapshot stackSnapshot = new StackSnapshot(); + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[TEST-AFTER] [FAILURE] Test ---%s--- | Failure message :-: %s| Stack trace:\\n%s\\n:-:-:\\n\\n", + thisJoinPoint.toString(), exception.toString(), stackSnapshot.toString()) + ); + + this.testMethodName = this.UNKNOWN; + this.activeInjectionLocations.clear(); + }} + + /* + * Callback before calling Thread.sleep(...) + */ + + pointcut recordThreadSleep(): + (call(* java.lang.Object.wait(..)) || + call(* java.lang.Thread.sleep(..)) || + call(* java.util.concurrent.locks.LockSupport.parkNanos(..)) || + call(* java.util.concurrent.locks.LockSupport.parkUntil(..)) || + call(* java.util.concurrent.ScheduledExecutorService.schedule(..)) || + call(* java.util.concurrent.TimeUnit.*scheduledExecutionTime(..)) || + call(* java.util.concurrent.TimeUnit.*sleep(..)) || + call(* java.util.concurrent.TimeUnit.*timedWait(..)) || + call(* java.util.Timer.schedule*(..)) || + call(* java.util.TimerTask.wait(..)) || + call(* org.apache.hadoop.hbase.*.Procedure.suspend(..))) && + !within(edu.uchicago.cs.systems.wasabi.*); + + before() : recordThreadSleep() {{ + try {{ + if (this.wasabiCtx == null) {{ // This happens for non-test methods (e.g. config) inside test code + return; // Ignore retry in "before" and "after" annotated methods + }} + + StackSnapshot stackSnapshot = new StackSnapshot(); + for (String retryCallerFunction : this.activeInjectionLocations) {{ + if (stackSnapshot.hasFrame(retryCallerFunction.split("\\\\(", 2)[0])) {{ + String sleepLocation = String.format("%s(%s:%d)", + retryCallerFunction.split("\\\\(", 2)[0], + thisJoinPoint.getSourceLocation().getFileName(), + thisJoinPoint.getSourceLocation().getLine()); + + this.wasabiCtx.addToExecTrace(sleepLocation, OpEntry.THREAD_SLEEP_OP, stackSnapshot); + LOG.printMessage( + WasabiLogger.LOG_LEVEL_WARN, + String.format("[THREAD-SLEEP] Test ---%s--- | Sleep location ---%s--- | Retry location ---%s---\\n", + this.testMethodName, + sleepLocation, + retryCallerFunction.split("\\\\(", 2)[0]) + ); + }} + }} + }} catch (Exception e) {{ + this.LOG.printMessage( + WasabiLogger.LOG_LEVEL_ERROR, + String.format("Exception occurred in recordThreadSleep(): %s", e.getMessage()) + ); + e.printStackTrace(); + }} + }} + + {pointcut_code} +}}""" + + return code_template + +def main(): + parser = argparse.ArgumentParser(description="Generate AspectJ code following a particular specification.") + parser.add_argument("--spec-file", help="Path to the input specification file") + parser.add_argument("--aspect-file", help="Path to the output AspectJ file") + + args = parser.parse_args() + + exception_map = read_spec_file_to_dict(args.spec_file) + code = generate_aspectj_code(exception_map) + + with open(args.aspect_file, "w") as f: + f.write(code) + +if __name__ == "__main__": + main() diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/gpt_cost_compute.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/gpt_cost_compute.py new file mode 100644 index 00000000..45d35eb8 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/gpt_cost_compute.py @@ -0,0 +1,39 @@ +import os +import sys +import tiktoken + +if len(sys.argv) != 2: + print("Usage: python script.py ") + sys.exit(1) + +project_path = sys.argv[1] +token_price = 0.01 / 1000 # $0.01 per 1k prompt tokens per OpenaAI documentation +number_of_rounds = 5 # number of questions/interactions with GPT per source file + +def count_tokens_in_file(file_path): + encoder = tiktoken.encoding_for_model("gpt-4") + with open(file_path, 'r', encoding='utf-8') as file: + content = file.read() + tokens = encoder.encode(content) + return len(tokens) + +def should_include_file(file_path): + return not ('/test/' in file_path or file_path.split('/')[-1].startswith('Test')) + +def calculate_project_cost(root_dir): + total_tokens = 0 + for subdir, dirs, files in os.walk(root_dir): + for file in files: + if file.endswith('.java'): + file_path = os.path.join(subdir, file) + if should_include_file(file_path): + file_tokens = count_tokens_in_file(file_path) + total_tokens += file_tokens + print(f"Processed {file}: {file_tokens} tokens") + total_cost = total_tokens * token_price * (0.98 + 0.02 * number_of_rounds) + return total_tokens, total_cost + +total_tokens, total_cost = calculate_project_cost(project_path) + +print(f"Total tokens: {total_tokens}") +print(f"Total cost at ${token_price*1000} per 1k tokens: ${total_cost:.4f}") \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/maven_tests_count.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/maven_tests_count.py new file mode 100644 index 00000000..d8c4bfb3 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/maven_tests_count.py @@ -0,0 +1,35 @@ +import sys + +def calculate_test_outcomes_from_file(filename): + total_tests_passed = 0 + total_tests_executed = 0 + results = False + + with open(filename, 'r') as file: + for line in file: + if line.startswith("[INFO] Results:"): + results = True + if results == True and "Tests run" in line and "Failures" in line and "Errors" in line: + tests_run = int(line.split("Tests run: ")[1].split(",")[0]) + failures = int(line.split("Failures: ")[1].split(",")[0]) + errors = int(line.split("Errors: ")[1].split(",")[0]) + + total_tests_passed += (tests_run - failures - errors) + total_tests_executed += tests_run + + results = False + + return total_tests_passed, total_tests_executed + +def main(): + if len(sys.argv) != 2: + print("Usage: python script.py ") + sys.exit(1) + + filename = sys.argv[1] + total_tests_passed, total_tests_executed = calculate_test_outcomes_from_file(filename) + print("Total tests passed:", total_tests_passed) + print("Total tests executed:", total_tests_executed) + +if __name__ == "__main__": + main() diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/prereqs.sh b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/prereqs.sh new file mode 100755 index 00000000..2a4e0735 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/prereqs.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +sudo apt-get update +sudo apt-get upgrade -y + +sudo apt-get install openjdk-8-jdk -y +sudo apt-get install openjdk-11-jdk -y + +sudo apt-get install python3 -y +sudo apt-get install maven -y +sudo apt-get install gradle -y +sudo apt-get install ant -y +sudo apt-get install ant-junit -y diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run.bak b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run.bak new file mode 100644 index 00000000..eeb77017 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run.bak @@ -0,0 +1,247 @@ +import argparse +import datetime +import os +import shutil +import subprocess +import sys + + +""" Evaluation phases +""" +def clone_repositories(root_dir: str, benchmark: str): + """ + Clone the necessary repositories and checkout specific versions for the specified benchmarks. + + Arguments: + root_dir (str): The root directory of the repository. + benchmark_list (list): A list of target applications to clone. + """ + repos = { + "hadoop": ("https://github.com/apache/hadoop.git", "60867de"), + "hbase": ("https://github.com/apache/hbase.git", "89ca7f4"), + "hive": ("https://github.com/apache/hive.git", "e08a600"), + "cassandra": ("https://github.com/apache/cassandra.git", "f0ad7ea"), + "elasticsearch": ("https://github.com/elastic/elasticsearch.git", "5ce03f2"), + } + benchmarks_dir = os.path.join(root_dir, "benchmarks") + os.makedirs(benchmarks_dir, exist_ok=True) + + if benchmark in repos: + url, version = repos[benchmark] + repo_dir = os.path.join(benchmarks_dir, benchmark) + + if os.path.exists(repo_dir): + result = run_command(["rm", "-rf", repo_dir], os.getcwd()) + print(f"[WASABI-HELPER]: [INFO]: Cloning {benchmark} repository from {url}...") + result = run_command(["git", "clone", url, repo_dir], os.getcwd()) + if result is None or result.returncode != 0: + print(f"[WASABI-HELPER]: [ERROR]: Error cloning {benchmark}:\n\t{result.stdout}\n\t{result.stderr}") + sys.exit(1) + print(f"[WASABI-HELPER]: [INFO]: Successfully cloned {benchmark}.") + + print(f"Checking out version {version} for {benchmark}...") + result = run_command(["git", "checkout", version], repo_dir) + if result is None or result.returncode != 0: + print(f"[WASABI-HELPER]: [ERROR]: Error checking out version {version} for {benchmark}:\n\t{result.stdout}\n\t{result.stderr}") + sys.exit(1) + print(f"[WASABI-HELPER]: [INFO]: Successfully checked out version {version} for {benchmark}.") + else: + print(f"[WASABI-HELPER]: [WARNING]: Benchmark {benchmark} is not recognized and will be skipped.") + +def replace_config_files(root_dir: str, benchmark: str): + """ + Replaces the original build (Maven pom.xml) file with a customized version + for each application in the benchmark list. + + Arguments: + root_dir (str): The root directory of the repository. + benchmark (list): The target applications for which to replace the config/build files. + """ + benchmark_dir = os.path.join(root_dir, "benchmarks", benchmark) + original_pom_path = os.path.join(benchmark_dir, "pom.xml") + backup_pom_path = os.path.join(benchmark_dir, "pom-original.xml") + if "hive/standalone-metastore" in benchmark: + custom_pom_path = os.path.join(root_dir, "wasabi", "wasabi-testing", "config", "hive", "pom-hive-standalone-metastore.xml") + else: + custom_pom_path = os.path.join(root_dir, "wasabi", "wasabi-testing", "config", benchmark, f"pom-{benchmark}.xml") + new_pom_path = os.path.join(benchmark_dir, "pom.xml") + + if os.path.exists(backup_pom_path): + print(f"[WASABI-HELPER]: [INFO]: Backup pom-original.xml already exists for {benchmark}. Skipping renaming.") + else: + if os.path.exists(original_pom_path): + shutil.move(original_pom_path, backup_pom_path) + print(f"[WASABI-HELPER]: [INFO]: Renamed {original_pom_path} to {backup_pom_path}.") + else: + print(f"[WASABI-HELPER]: [INFO]: Original pom.xml not found for {benchmark}. Skipping renaming.") + + if os.path.exists(custom_pom_path): + shutil.copy(custom_pom_path, new_pom_path) + print(f"[WASABI-HELPER]: [INFO]: Copied {custom_pom_path} to {new_pom_path}.") + else: + print(f"[WASABI-HELPER]: [ERROR]: Customized {custom_pom_path} not found for {benchmark}. Skipping copy.") + +def rewrite_source_code(root_dir: str, benchmark: str, mode: str): + """ + Rewrites retry related bounds -- either retry thresholds or test timeouts. + + Arguments: + root_dir (str): The root directory of the repository. + benchmark (list): The target applications for which to replace the pom.xml. + mode (str): The type of source rewriting -- retry bounds or timeout values. + """ + benchmark_dir = os.path.join(root_dir, "benchmarks", benchmark) + if mode == "bounds-rewriting": + config_file = os.path.join(root_dir, "wasabi", "wasabi-testing", "config", benchmark, f"{benchmark}_retry_bounds.data") + elif mode == "timeout-rewriting": + config_file = os.path.join(root_dir, "wasabi", "wasabi-testing", "config", benchmark, f"{benchmark}_timeout_bounds.data") + else: + print(f"[WASABI-HELPER]: [ERROR]: Bad arguments provided to source_rewriter.py.") + return + + cmd = ["python3", "source_rewriter.py", "--mode", mode, config_file, benchmark_dir] + result = run_command(cmd, os.getcwd()) + + if result is None or result.returncode != 0: + print(f"[WASABI-HELPER]: [ERROR]: Rewriting retry-related bounds failed:\n\t{result.stdout}\n\t{result.stderr}") + else: + print(f"[WASABI-HELPER]: [INFO]: Successfully overwritten retry-related bounds. Status: {result.returncode}") + + +def run_fault_injection(target: str): + """ + Run the run_benchmark.py script for a specific application. + + Arguments: + root_dir (str): The root directory of the repository. + target (str): The name of the application. + """ + + cmd = ["python3", "run_benchmark.py", "--benchmark", target] + result = run_command(cmd, os.getcwd()) + if result is None or result.returncode != 0: + print(f"[WASABI-HELPER]: [ERROR]: Command to run run_benchmark.py on {target} failed with error message:\n\t{result.stdout}\n\t{result.stderr}") + else: + print(f"[WASABI-HELPER]: [INFO]: Finished running test suite for {target}. Status: {result.returncode}") + + +def run_bug_oracles(root_dir: str, target: str): + """ + Runs bug oracels over a set of test and build reports. + + Parameters: + root_dir (str): The root directory where the results for the target are located. + target (str): The name of the application. + """ + target_root_dir = os.path.join(root_dir, "results", target) + csv_file = os.path.join(target_root_dir, f"{target}-bugs-per-test.csv") + if os.path.exists(csv_file): + cmd = ["rm", "-f", csv_file] + result = run_command(cmd, os.getcwd()) + + if result is None or result.returncode != 0: + print(f"[WASABI-HELPER]: [ERROR]: Command to remove {csv_file} failed:\n\t{result.stdout}\n\t{result.stderr}") + else: + print(f"[WASABI-HELPER]: [INFO]: Removed {csv_file}. Status: {result.returncode}") + + for item in os.listdir(target_root_dir): + item_path = os.path.join(target_root_dir, item) + if os.path.isdir(item_path): + cmd = ["python3", "bug_oracles.py", item_path, "--benchmark", target] + result = run_command(cmd, os.getcwd()) + if result: + print(result.stdout) + + if result is None or result.returncode != 0: + print(f"[WASABI-HELPER]: [ERROR]: Command to run bug_oracles.py on {item_path} failed with error message:\n\t{result.stdout}\n\t{result.stderr}") + else: + print(f"[WASABI-HELPER]: [INFO]: Finished processing {item_path}. Status: {result.returncode}") + + +""" Helper functions +""" +def run_command(cmd: list[str], cwd: str): + """ + Run a command in a subprocess and display the output in real-time. + + Arguments: + cmd (list): The command to run. + cwd (str): The working directory. + + Returns: + CompletedProcess: The result of the command execution. + """ + process = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + + stdout_lines = [] + stderr_lines = [] + + try: + for stdout_line in iter(process.stdout.readline, ""): + stdout_lines.append(stdout_line) + print(stdout_line, end="") + + process.stdout.close() + process.wait() + + stderr_lines = process.stderr.readlines() + process.stderr.close() + + return subprocess.CompletedProcess(cmd, process.returncode, ''.join(stdout_lines), ''.join(stderr_lines)) + except Exception as e: + process.kill() + raise e + +def display_phase(phase: str, benchmark: str): + """ + Prints a "stylized" message indicating the current phase. + + Arguments: + phase (str): The name of the phase to display. + """ + phase_text = f" {benchmark}: {phase} " + border_line = "*" * (len(phase_text) + 4) + inner_line = "*" + " " * (len(phase_text) + 2) + "*" + print(f"\n{border_line}") + print(f"{inner_line}") + print(f"*{phase_text.center(len(border_line) - 2)}*") + print(f"{inner_line}") + print(f"{border_line}\n") + + +""" Main +""" +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--phase", choices=["setup", "prep", "bug-triggering", "bug-oracles", "all"], required=True, help="The pipeline phase to run") + parser.add_argument("--benchmark", choices=["hadoop", "hbase", "hive", "cassandra", "elasticsearch"], required=True, help="The benchmark to run") + args = parser.parse_args() + + wasabi_root_dir = os.getenv("WASABI_ROOT_DIR") + if not wasabi_root_dir: + print("[WASABI-HELPER]: [ERROR]: The WASABI_ROOT_DIR environment variable is not set.") + sys.exit(1) + repo_root_dir = os.path.join(wasabi_root_dir, "..") + + if args.phase == "setup" or args.phase == "all": + display_phase("setup", args.benchmark) + clone_repositories(repo_root_dir, args.benchmark) + + if args.phase == "prep" or args.phase == "all": + display_phase("code preparation", args.benchmark) + replace_config_files(repo_root_dir, args.benchmark) + if args.benchmark == "hive": + replace_config_files(repo_root_dir, os.path.join(args.benchmark, "standalone-metastore")) + rewrite_source_code(repo_root_dir, args.benchmark, "bounds-rewriting") + rewrite_source_code(repo_root_dir, args.benchmark, "timeout-rewriting") + + if args.phase == "bug-triggering" or args.phase == "all": + display_phase("bug triggering", args.benchmark) + run_fault_injection(args.benchmark) + + if args.phase == "bug-oracles" or args.phase == "all": + display_phase("Bug oracles", args.benchmark) + run_bug_oracles(repo_root_dir, args.benchmark) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run.py new file mode 100644 index 00000000..5cc2dd04 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run.py @@ -0,0 +1,255 @@ +import argparse +import datetime +import logging +import os +import shutil +import subprocess +import sys + + +logging.basicConfig( + level=logging.INFO, + format="%(asctime)s [%(levelname)s] %(message)s", +) + + +""" Evaluation phases +""" +def clone_repositories(root_dir: str, benchmark: str): + """ + Clone the necessary repositories and checkout specific versions for the specified benchmarks. + + Arguments: + root_dir (str): The root directory of the repository. + benchmark_list (list): A list of target applications to clone. + """ + repos = { + "hadoop": ("https://github.com/apache/hadoop.git", "60867de"), + "hbase": ("https://github.com/apache/hbase.git", "89ca7f4"), + "hive": ("https://github.com/apache/hive.git", "e08a600"), + "cassandra": ("https://github.com/apache/cassandra.git", "f0ad7ea"), + "elasticsearch": ("https://github.com/elastic/elasticsearch.git", "5ce03f2"), + } + benchmarks_dir = os.path.join(root_dir, "benchmarks") + os.makedirs(benchmarks_dir, exist_ok=True) + + if benchmark in repos: + url, version = repos[benchmark] + repo_dir = os.path.join(benchmarks_dir, benchmark) + + if os.path.exists(repo_dir): + result = run_command(["rm", "-rf", repo_dir], os.getcwd()) + logging.info(f"[WASABI-HELPER]: [INFO]: Cloning {benchmark} repository from {url}...") + result = run_command(["git", "clone", url, repo_dir], os.getcwd()) + if result is None or result.returncode != 0: + logging.info(f"[WASABI-HELPER]: [ERROR]: Error cloning {benchmark}:\n\t{result.stdout}\n\t{result.stderr}") + sys.exit(1) + logging.info(f"[WASABI-HELPER]: [INFO]: Successfully cloned {benchmark}.") + + logging.info(f"Checking out version {version} for {benchmark}...") + result = run_command(["git", "checkout", version], repo_dir) + if result is None or result.returncode != 0: + logging.info(f"[WASABI-HELPER]: [ERROR]: Error checking out version {version} for {benchmark}:\n\t{result.stdout}\n\t{result.stderr}") + sys.exit(1) + logging.info(f"[WASABI-HELPER]: [INFO]: Successfully checked out version {version} for {benchmark}.") + else: + logging.info(f"[WASABI-HELPER]: [WARNING]: Benchmark {benchmark} is not recognized and will be skipped.") + +def replace_config_files(root_dir: str, benchmark: str): + """ + Replaces the original build (Maven pom.xml) file with a customized version + for each application in the benchmark list. + + Arguments: + root_dir (str): The root directory of the repository. + benchmark (list): The target applications for which to replace the config/build files. + """ + benchmark_dir = os.path.join(root_dir, "benchmarks", benchmark) + original_pom_path = os.path.join(benchmark_dir, "pom.xml") + backup_pom_path = os.path.join(benchmark_dir, "pom-original.xml") + if "hive/standalone-metastore" in benchmark: + custom_pom_path = os.path.join(root_dir, "wasabi", "wasabi-testing", "config", "hive", "pom-hive-standalone-metastore.xml") + else: + custom_pom_path = os.path.join(root_dir, "wasabi", "wasabi-testing", "config", benchmark, f"pom-{benchmark}.xml") + new_pom_path = os.path.join(benchmark_dir, "pom.xml") + + if os.path.exists(backup_pom_path): + logging.info(f"[WASABI-HELPER]: [INFO]: Backup pom-original.xml already exists for {benchmark}. Skipping renaming.") + else: + if os.path.exists(original_pom_path): + shutil.move(original_pom_path, backup_pom_path) + logging.info(f"[WASABI-HELPER]: [INFO]: Renamed {original_pom_path} to {backup_pom_path}.") + else: + logging.info(f"[WASABI-HELPER]: [INFO]: Original pom.xml not found for {benchmark}. Skipping renaming.") + + if os.path.exists(custom_pom_path): + shutil.copy(custom_pom_path, new_pom_path) + logging.info(f"[WASABI-HELPER]: [INFO]: Copied {custom_pom_path} to {new_pom_path}.") + else: + logging.info(f"[WASABI-HELPER]: [ERROR]: Customized {custom_pom_path} not found for {benchmark}. Skipping copy.") + +def rewrite_source_code(root_dir: str, benchmark: str, mode: str): + """ + Rewrites retry related bounds -- either retry thresholds or test timeouts. + + Arguments: + root_dir (str): The root directory of the repository. + benchmark (list): The target applications for which to replace the pom.xml. + mode (str): The type of source rewriting -- retry bounds or timeout values. + """ + benchmark_dir = os.path.join(root_dir, "benchmarks", benchmark) + if mode == "bounds-rewriting": + config_file = os.path.join(root_dir, "wasabi", "wasabi-testing", "config", benchmark, f"{benchmark}_retry_bounds.data") + elif mode == "timeout-rewriting": + config_file = os.path.join(root_dir, "wasabi", "wasabi-testing", "config", benchmark, f"{benchmark}_timeout_bounds.data") + else: + logging.info(f"[WASABI-HELPER]: [ERROR]: Bad arguments provided to source_rewriter.py.") + return + + cmd = ["python3", "source_rewriter.py", "--mode", mode, config_file, benchmark_dir] + result = run_command(cmd, os.getcwd()) + + if result is None or result.returncode != 0: + logging.info(f"[WASABI-HELPER]: [ERROR]: Rewriting retry-related bounds failed:\n\t{result.stdout}\n\t{result.stderr}") + else: + logging.info(f"[WASABI-HELPER]: [INFO]: Successfully overwritten retry-related bounds. Status: {result.returncode}") + + +def run_fault_injection(target: str): + """ + Run the run_benchmark.py script for a specific application. + + Arguments: + root_dir (str): The root directory of the repository. + target (str): The name of the application. + """ + + cmd = ["python3", "run_benchmark.py", "--benchmark", target] + result = run_command(cmd, os.getcwd()) + if result is None or result.returncode != 0: + logging.info(f"[WASABI-HELPER]: [ERROR]: Command to run run_benchmark.py on {target} failed with error message:\n\t{result.stdout}\n\t{result.stderr}") + else: + logging.info(f"[WASABI-HELPER]: [INFO]: Finished running test suite for {target}. Status: {result.returncode}") + + +def run_bug_oracles(root_dir: str, target: str): + """ + Runs bug oracels over a set of test and build reports. + + Parameters: + root_dir (str): The root directory where the results for the target are located. + target (str): The name of the application. + """ + target_root_dir = os.path.join(root_dir, "results", target) + csv_file = os.path.join(target_root_dir, f"{target}-bugs-per-test.csv") + if os.path.exists(csv_file): + cmd = ["rm", "-f", csv_file] + result = run_command(cmd, os.getcwd()) + + if result is None or result.returncode != 0: + logging.info(f"[WASABI-HELPER]: [ERROR]: Command to remove {csv_file} failed:\n\t{result.stdout}\n\t{result.stderr}") + else: + logging.info(f"[WASABI-HELPER]: [INFO]: Removed {csv_file}. Status: {result.returncode}") + + for item in os.listdir(target_root_dir): + item_path = os.path.join(target_root_dir, item) + if os.path.isdir(item_path): + cmd = ["python3", "bug_oracles.py", item_path, "--benchmark", target] + result = run_command(cmd, os.getcwd()) + if result: + logging.info(result.stdout) + + if result is None or result.returncode != 0: + logging.info(f"[WASABI-HELPER]: [ERROR]: Command to run bug_oracles.py on {item_path} failed with error message:\n\t{result.stdout}\n\t{result.stderr}") + else: + logging.info(f"[WASABI-HELPER]: [INFO]: Finished processing {item_path}. Status: {result.returncode}") + + +""" Helper functions +""" +def run_command(cmd: list[str], cwd: str): + """ + Run a command in a subprocess and display the output in real-time. + + Arguments: + cmd (list): The command to run. + cwd (str): The working directory. + + Returns: + CompletedProcess: The result of the command execution. + """ + process = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + + stdout_lines = [] + stderr_lines = [] + + try: + for stdout_line in iter(process.stdout.readline, ""): + stdout_lines.append(stdout_line) + logging.info(stdout_line) + + process.stdout.close() + process.wait() + + stderr_lines = process.stderr.readlines() + process.stderr.close() + + return subprocess.CompletedProcess(cmd, process.returncode, ''.join(stdout_lines), ''.join(stderr_lines)) + except Exception as e: + process.kill() + raise e + +def display_phase(phase: str, benchmark: str): + """ + logging.infos a "stylized" message indicating the current phase. + + Arguments: + phase (str): The name of the phase to display. + """ + phase_text = f" {benchmark}: {phase} " + border_line = "*" * (len(phase_text) + 4) + inner_line = "*" + " " * (len(phase_text) + 2) + "*" + logging.info("\n") + logging.info(f"{border_line}") + logging.info(f"{inner_line}") + logging.info(f"*{phase_text.center(len(border_line) - 2)}*") + logging.info(f"{inner_line}") + logging.info(f"{border_line}\n") + + +""" Main +""" +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--phase", choices=["setup", "prep", "bug-triggering", "bug-oracles", "all"], required=True, help="The pipeline phase to run") + parser.add_argument("--benchmark", choices=["hadoop", "hbase", "hive", "cassandra", "elasticsearch"], required=True, help="The benchmark to run") + args = parser.parse_args() + + wasabi_root_dir = os.getenv("WASABI_ROOT_DIR") + if not wasabi_root_dir: + logging.info("[WASABI-HELPER]: [ERROR]: The WASABI_ROOT_DIR environment variable is not set.") + sys.exit(1) + repo_root_dir = os.path.join(wasabi_root_dir, "..") + + if args.phase == "setup" or args.phase == "all": + display_phase("setup", args.benchmark) + clone_repositories(repo_root_dir, args.benchmark) + + if args.phase == "prep" or args.phase == "all": + display_phase("code preparation", args.benchmark) + replace_config_files(repo_root_dir, args.benchmark) + if args.benchmark == "hive": + replace_config_files(repo_root_dir, os.path.join(args.benchmark, "standalone-metastore")) + rewrite_source_code(repo_root_dir, args.benchmark, "bounds-rewriting") + rewrite_source_code(repo_root_dir, args.benchmark, "timeout-rewriting") + + if args.phase == "bug-triggering" or args.phase == "all": + display_phase("bug triggering", args.benchmark) + run_fault_injection(args.benchmark) + + if args.phase == "bug-oracles" or args.phase == "all": + display_phase("Bug oracles", args.benchmark) + run_bug_oracles(repo_root_dir, args.benchmark) + +if __name__ == "__main__": + main() diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run_benchmark.bak b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run_benchmark.bak new file mode 100644 index 00000000..6e5b4d87 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run_benchmark.bak @@ -0,0 +1,268 @@ +import argparse +from collections import deque +import datetime +import glob +import os +import re +import shutil +import subprocess +import time +import sys + + +LOG_FILE_NAME = "wasabi-install.log" +TIMEOUT = 3600 + + +def run_command_with_timeout(cmd: list[str], dir_path: str): + """ + Run a command with a timeout of {TIMEOUT} seconds. + + Parameters: + cmd (list): The command to run as a list of arguments. + timeout (int): The timeout in seconds. + + Returns: + subprocess.CompletedProcess: The result of the command execution. + """ + try: + result = subprocess.run(cmd, cwd=dir_path, shell=False, capture_output=True, timeout=TIMEOUT) + return result + except subprocess.TimeoutExpired: + return None + + +def get_conf_files(config_dir: str): + """ + Find all config files (extension ".conf"). + + Parameters: + config_dir (str): The path of the config directory. + + Returns: + list: A list of strings containing the paths of the ".conf" files. + """ + return glob.glob(os.path.join(config_dir, "*.conf")) + + +def get_test_file_name(config_file: str): + """ + Extracts the test name from its corresponding config file. + + Parameters: + config_file (str): The path of the config file. + + Returns: + str: The path of the log file for the config file. + """ + test_name = re.search(r"retry_locations-(.+?)\.conf", config_file).group(1) + + return test_name + + +def get_log_file_name(target_root_dir: str, test_path: str): + """ + Constructs the log file name from the config file. + + Parameters: + target_root_dir (str): The path of the config directory. + config_file (str): The path of the config file. + + Returns: + str: The path of the log file for the config file. + """ + test_name = get_test_file_name(test_path) + log_file_name = f"build-{test_name}.log" + return os.path.join(target_root_dir, log_file_name) + + +def build_target(target: str, target_root_dir: str, wasabi_arg: str = None): + """ + Build a target application. + + Parameters: + target (str): The name of the target application. + target_root_dir (str): The path of the target root directory. + arg (str): The path of the log file. + """ + if target == "wasabi": + cmd = ["mvn", "clean", "install", "-fn", "-B", "-U", "-DskipTests", f"-Dinstrumentation.target={wasabi_arg}"] + elif target == "hive": + cmd = ["mvn", "clean", "install", "-Pdist", "-fn", "-Drat.numUnapprovedLicenses=20000", "-B", "-U", "-DskipTests"] + elif target == "cassandra": + cmd = ["ant"] + elif target == "elasticsearch": + cmd = ["./gradlew", "clean", "publishToMavenLocal", "-x", "test"] + else: + cmd = ["mvn", "clean", "install", "-fn", "-B", "-U", "-DskipTests"] + + print("// -------------------------------------------------------------------------- //") + print(f"Active directory: {target_root_dir}") + print(f"Command: {' '.join(cmd)}", flush=True) + + result = subprocess.run(cmd, cwd=target_root_dir, shell=False, capture_output=True) + + print(f"Status: {result.returncode}", flush=True) + print("// -------------------------------------------------------------------------- //\n") + + log_file_path = os.path.join(target_root_dir, LOG_FILE_NAME) + with open(log_file_path, "a", encoding="utf-8") as outfile: + outfile.write(result.stdout.decode('utf-8')) + outfile.write((result.stderr.decode('utf-8'))) + + +def run_test_suite(target: str, target_root_dir: str, args: str): + """ + Run test suite for a target application. + + Parameters: + target (str): The name of the target application. + conf_files (list): A list of strings containing the paths of the ".conf" files. + args (str): A set of arguments to be added to the command. + + Returns: + list: A list of tuples containing the outcome and duration of each thread. + """ + cmd_queue = deque() + for config_file, test_name in args: + cmd_queue.append((config_file, test_name)) + + total_cmds = len(cmd_queue) + counter = 0 + while cmd_queue: + counter += 1 + + config_file, test_name = cmd_queue.popleft() + log_file = get_log_file_name(target_root_dir, config_file) + + if target == "hive": + cmd = ["mvn", "surefire:test", "-B", "-Drat.numUnapprovedLicenses=20000", f"-DconfigFile={config_file}", f"-Dtest={test_name}", "-fn"] + elif target == "cassandra": + cmd = ["ant", f"-Dtest={test_name}", "test"] + elif target == "elasticsearch": + cmd = ["./gradlew", f"test --tests {test_name}", f"-DconfigFile={config_file}"] + else: + cmd = ["mvn", "surefire:test", "-B", f"-DconfigFile={config_file}", f"-Dtest={test_name}", "-fn"] + + print("// -------------------------------------------------------------------------- //") + print(f"Job count: {counter} / {total_cmds}") + print(f"Command: {' '.join(cmd)}") + print(f"Active directory: {target_root_dir}") + print(f"Config file: {config_file}") + print(f"Log file: {log_file}", flush=True) + + result = run_command_with_timeout(cmd, target_root_dir) + + if result is not None: + print(f"Status: {result.returncode}", flush=True) + print("// -------------------------------------------------------------------------- //\n") + + with open(log_file, "a", encoding="utf-8") as outfile: + outfile.write(result.stdout.decode('utf-8')) + outfile.write(result.stderr.decode('utf-8')) + + else: + print(f"Status: timeout -- TimeoutExpired exception", flush=True) + print("// -------------------------------------------------------------------------- //\n") + + +def cleanup(build_system: str): + """ + Clean up of local package directory. + """ + + if build_system == "maven" or build_system == "gradle": + package_dir = os.path.expanduser("~/.m2") + elif build_system == "ant": + package_dir = os.path.expanduser("~/.ivy2") + + cmd = ["rm", "-rf", package_dir] + + print("// -------------------------------------------------------------------------- //") + print(f"Command: {' '.join(cmd)}", flush=True) + + result = run_command_with_timeout(cmd, dir_path=os.path.expanduser("~")) + + if result is None: + print(f"Command timed out while trying to remove {package_dir}.", flush=True) + else: + print(f"Status: {result.returncode}", flush=True) + print("// -------------------------------------------------------------------------- //\n") + + +def save_log_files(target_app: str, wasabi_root_dir: str): + """ + Save test and build log files to a separate directory. + + Parameters: + wasabi_root_dir (str): The path of the Wasabi root directory. + target_app (str): The target application name for which logs will be saved. + """ + wasabi_results_dir = os.path.join(wasabi_root_dir, "..", "results", target_app) + target_root_dir = os.path.join(wasabi_root_dir, "..", "benchmarks", target_app) + + date = datetime.datetime.now().strftime("%Y%m%d%H%M") + + # Save test reports + test_reports_dir = os.path.join(wasabi_results_dir, date, "test-reports") + os.makedirs(test_reports_dir, exist_ok=True) + for dirpath, _, files in os.walk(target_root_dir): + for file in files: + if file.endswith("-output.txt"): + output_file = os.path.join(dirpath, file) + shutil.copy(output_file, os.path.join(test_reports_dir, f"{date}.{file}")) + + # Save build reports + build_reports_dir = os.path.join(wasabi_results_dir, date, "build-reports") + os.makedirs(build_reports_dir, exist_ok=True) + for file in os.listdir(target_root_dir): + if file.startswith("build-") and file.endswith(".log"): + output_file = os.path.join(target_root_dir, file) + shutil.copy(output_file, os.path.join(build_reports_dir, f"{date}.{file}")) + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--benchmark", choices=["hadoop", "hbase", "hive", "cassandra", "elasticsearch"], required=True, help="The benchmark to run") + args = parser.parse_args() + + wasabi_root_dir = os.getenv("WASABI_ROOT_DIR") + if not wasabi_root_dir: + print("[WASABI-HELPER]: [ERROR]: The WASABI_ROOT_DIR environment variable is not set.") + sys.exit(1) + + target_root_dir = os.path.join(wasabi_root_dir, "..", "benchmarks", args.benchmark) + config_dir = os.path.join(wasabi_root_dir, "wasabi-testing", "config", args.benchmark, "test-plan") + + conf_files = get_conf_files(config_dir) + test_names = [get_test_file_name(config_file) for config_file in conf_files] + configs = [(conf_file, test_name) for conf_file, test_name in zip(conf_files, test_names)] + + # Cleanup old packages + if args.benchmark == "cassandra": + cleanup("ant") + elif args.benchmark == "elasticsearch": + cleanup("gradle") + else: + cleanup("maven") + + # Build and install WASABI + build_target("wasabi", os.path.join(wasabi_root_dir, "wasabi-testing"), args.benchmark) + + # Build and install the target application + build_target(args.benchmark, target_root_dir) + + start_time = time.perf_counter() + + # Run the test suite of the target application + run_test_suite(args.benchmark, target_root_dir, configs) + + end_time = time.perf_counter() + print(f"\n\n// -------------------------------------------------------------------------- //") + print(f"End-to-end running time: {end_time - start_time} secs") + + # Save logs to a separate directory + save_log_files(args.benchmark, wasabi_root_dir) + +if __name__ == "__main__": + main() diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run_benchmark.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run_benchmark.py new file mode 100644 index 00000000..00d24eb8 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/run_benchmark.py @@ -0,0 +1,275 @@ +import argparse +from collections import deque +import datetime +import glob +import logging +import os +import re +import shutil +import subprocess +import time +import sys + + +logging.basicConfig( + level=logging.INFO, + format="%(asctime)s [%(levelname)s] %(message)s", +) + + +LOG_FILE_NAME = "wasabi-install.log" +TIMEOUT = 3600 + + +def run_command_with_timeout(cmd: list[str], dir_path: str): + """ + Run a command with a timeout of {TIMEOUT} seconds. + + Parameters: + cmd (list): The command to run as a list of arguments. + timeout (int): The timeout in seconds. + + Returns: + subprocess.CompletedProcess: The result of the command execution. + """ + try: + result = subprocess.run(cmd, cwd=dir_path, shell=False, capture_output=True, timeout=TIMEOUT) + return result + except subprocess.TimeoutExpired: + return None + + +def get_conf_files(config_dir: str): + """ + Find all config files (extension ".conf"). + + Parameters: + config_dir (str): The path of the config directory. + + Returns: + list: A list of strings containing the paths of the ".conf" files. + """ + return glob.glob(os.path.join(config_dir, "*.conf")) + + +def get_test_file_name(config_file: str): + """ + Extracts the test name from its corresponding config file. + + Parameters: + config_file (str): The path of the config file. + + Returns: + str: The path of the log file for the config file. + """ + test_name = re.search(r"retry_locations-(.+?)\.conf", config_file).group(1) + + return test_name + + +def get_log_file_name(target_root_dir: str, test_path: str): + """ + Constructs the log file name from the config file. + + Parameters: + target_root_dir (str): The path of the config directory. + config_file (str): The path of the config file. + + Returns: + str: The path of the log file for the config file. + """ + test_name = get_test_file_name(test_path) + log_file_name = f"build-{test_name}.log" + return os.path.join(target_root_dir, log_file_name) + + +def build_target(target: str, target_root_dir: str, wasabi_arg: str = None): + """ + Build a target application. + + Parameters: + target (str): The name of the target application. + target_root_dir (str): The path of the target root directory. + arg (str): The path of the log file. + """ + if target == "wasabi": + cmd = ["mvn", "clean", "install", "-fn", "-B", "-U", "-DskipTests", f"-Dinstrumentation.target={wasabi_arg}"] + elif target == "hive": + cmd = ["mvn", "clean", "install", "-Pdist", "-fn", "-Drat.numUnapprovedLicenses=20000", "-B", "-U", "-DskipTests"] + elif target == "cassandra": + cmd = ["ant"] + elif target == "elasticsearch": + cmd = ["./gradlew", "clean", "publishToMavenLocal", "-x", "test"] + else: + cmd = ["mvn", "clean", "install", "-fn", "-B", "-U", "-DskipTests"] + + logging.info("// -------------------------------------------------------------------------- //") + logging.info(f"Active directory: {target_root_dir}") + logging.info(f"Command: {' '.join(cmd)}") + + result = subprocess.run(cmd, cwd=target_root_dir, shell=False, capture_output=True) + + logging.info(f"Status: {result.returncode}") + logging.info("// -------------------------------------------------------------------------- //\n") + + log_file_path = os.path.join(target_root_dir, LOG_FILE_NAME) + with open(log_file_path, "a", encoding="utf-8") as outfile: + outfile.write(result.stdout.decode('utf-8')) + outfile.write((result.stderr.decode('utf-8'))) + + +def run_test_suite(target: str, target_root_dir: str, args: str): + """ + Run test suite for a target application. + + Parameters: + target (str): The name of the target application. + conf_files (list): A list of strings containing the paths of the ".conf" files. + args (str): A set of arguments to be added to the command. + + Returns: + list: A list of tuples containing the outcome and duration of each thread. + """ + cmd_queue = deque() + for config_file, test_name in args: + cmd_queue.append((config_file, test_name)) + + total_cmds = len(cmd_queue) + counter = 0 + while cmd_queue: + counter += 1 + + config_file, test_name = cmd_queue.popleft() + log_file = get_log_file_name(target_root_dir, config_file) + + if target == "hive": + cmd = ["mvn", "surefire:test", "-B", "-Drat.numUnapprovedLicenses=20000", f"-DconfigFile={config_file}", f"-Dtest={test_name}", "-fn"] + elif target == "cassandra": + cmd = ["ant", f"-Dtest={test_name}", "test"] + elif target == "elasticsearch": + cmd = ["./gradlew", f"test --tests {test_name}", f"-DconfigFile={config_file}"] + else: + cmd = ["mvn", "surefire:test", "-B", f"-DconfigFile={config_file}", f"-Dtest={test_name}", "-fn"] + + logging.info("// -------------------------------------------------------------------------- //") + logging.info(f"Job count: {counter} / {total_cmds}") + logging.info(f"Command: {' '.join(cmd)}") + logging.info(f"Active directory: {target_root_dir}") + logging.info(f"Config file: {config_file}") + logging.info(f"Log file: {log_file}") + + result = run_command_with_timeout(cmd, target_root_dir) + + if result is not None: + logging.info(f"Status: {result.returncode}") + logging.info("// -------------------------------------------------------------------------- //\n") + + with open(log_file, "a", encoding="utf-8") as outfile: + outfile.write(result.stdout.decode('utf-8')) + outfile.write(result.stderr.decode('utf-8')) + + else: + logging.info(f"Status: timeout -- TimeoutExpired exception") + logging.info("// -------------------------------------------------------------------------- //\n") + + +def cleanup(build_system: str): + """ + Clean up of local package directory. + """ + + if build_system == "maven" or build_system == "gradle": + package_dir = os.path.expanduser("~/.m2") + elif build_system == "ant": + package_dir = os.path.expanduser("~/.ivy2") + + cmd = ["rm", "-rf", package_dir] + + logging.info("// -------------------------------------------------------------------------- //") + logging.info(f"Command: {' '.join(cmd)}") + + result = run_command_with_timeout(cmd, dir_path=os.path.expanduser("~")) + + if result is None: + logging.info(f"Command timed out while trying to remove {package_dir}.") + else: + logging.info(f"Status: {result.returncode}") + logging.info("// -------------------------------------------------------------------------- //\n") + + +def save_log_files(target_app: str, wasabi_root_dir: str): + """ + Save test and build log files to a separate directory. + + Parameters: + wasabi_root_dir (str): The path of the Wasabi root directory. + target_app (str): The target application name for which logs will be saved. + """ + wasabi_results_dir = os.path.join(wasabi_root_dir, "..", "results", target_app) + target_root_dir = os.path.join(wasabi_root_dir, "..", "benchmarks", target_app) + + date = datetime.datetime.now().strftime("%Y%m%d%H%M") + + # Save test reports + test_reports_dir = os.path.join(wasabi_results_dir, date, "test-reports") + os.makedirs(test_reports_dir, exist_ok=True) + for dirpath, _, files in os.walk(target_root_dir): + for file in files: + if file.endswith("-output.txt"): + output_file = os.path.join(dirpath, file) + shutil.copy(output_file, os.path.join(test_reports_dir, f"{date}.{file}")) + + # Save build reports + build_reports_dir = os.path.join(wasabi_results_dir, date, "build-reports") + os.makedirs(build_reports_dir, exist_ok=True) + for file in os.listdir(target_root_dir): + if file.startswith("build-") and file.endswith(".log"): + output_file = os.path.join(target_root_dir, file) + shutil.copy(output_file, os.path.join(build_reports_dir, f"{date}.{file}")) + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--benchmark", choices=["hadoop", "hbase", "hive", "cassandra", "elasticsearch"], required=True, help="The benchmark to run") + args = parser.parse_args() + + wasabi_root_dir = os.getenv("WASABI_ROOT_DIR") + if not wasabi_root_dir: + logging.info("[WASABI-HELPER]: [ERROR]: The WASABI_ROOT_DIR environment variable is not set.") + sys.exit(1) + + target_root_dir = os.path.join(wasabi_root_dir, "..", "benchmarks", args.benchmark) + config_dir = os.path.join(wasabi_root_dir, "wasabi-testing", "config", args.benchmark, "test-plan") + + conf_files = get_conf_files(config_dir) + test_names = [get_test_file_name(config_file) for config_file in conf_files] + configs = [(conf_file, test_name) for conf_file, test_name in zip(conf_files, test_names)] + + # Cleanup old packages + if args.benchmark == "cassandra": + cleanup("ant") + elif args.benchmark == "elasticsearch": + cleanup("gradle") + else: + cleanup("maven") + + # Build and install WASABI + build_target("wasabi", os.path.join(wasabi_root_dir, "wasabi-testing"), args.benchmark) + + # Build and install the target application + build_target(args.benchmark, target_root_dir) + + start_time = time.perf_counter() + + # Run the test suite of the target application + run_test_suite(args.benchmark, target_root_dir, configs) + + end_time = time.perf_counter() + logging.info(f"\n\n// -------------------------------------------------------------------------- //") + logging.info(f"End-to-end running time: {end_time - start_time} secs") + + # Save logs to a separate directory + save_log_files(args.benchmark, wasabi_root_dir) + +if __name__ == "__main__": + main() diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/source_rewriter.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/source_rewriter.py new file mode 100644 index 00000000..6d090294 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/source_rewriter.py @@ -0,0 +1,201 @@ +import os +import re +import shutil +import argparse + +RETRY_BOUND = 997 +TIMEOUT_BOUND = 303303 + +""" Retry bounds rewriting +""" +class RetryBoundsRewriter: + def find_java_file(self, test_class, test_directory_path): + for root, _, files in os.walk(test_directory_path): + for file in files: + if file.endswith(".java") and file.split(".")[0] == test_class: + return os.path.join(root, file) + return None + + def find_and_modify_assignment(self, test_class, assign_method, var_name, new_value, test_directory_path): + java_file = self.find_java_file(test_class, test_directory_path) + if java_file is None: + print(f">>> Not found: {test_class}") + return False + + java_file_copy = f"{os.path.splitext(os.path.join(os.path.dirname(java_file), os.path.basename(java_file)))[0]}.original" + if os.path.isfile(java_file_copy): + return False + + shutil.copy2(java_file, java_file_copy) + + with open(java_file, 'r') as file: + lines = file.readlines() + + modified_lines = [] + index = 0 + while index < len(lines): + if f"{assign_method}(" in lines[index] and var_name in lines[index]: + to_change = lines[index].rstrip("\n") + index += 1 + while index < len(lines) and ");" not in lines[index - 1]: + to_change += lines[index].strip() + index += 1 + to_change = re.sub(r"\d+\);", lambda m: f"{new_value});" if int(m.group().strip("\);")) < new_value else m.group(), to_change) + modified_lines.append(to_change + "\n") + else: + modified_lines.append(lines[index]) + index += 1 + + with open(java_file, 'w') as file: + file.writelines(modified_lines) + + return True + + def process_input(self, input_file, test_directory_path): + with open(input_file, 'r') as file: + next(file) + for line in file: + line = line.strip() + var_name, assigned_value, assign_method, test_class = line.split("!!!") + try: + if int(assigned_value.strip('"')) < int(RETRY_BOUND): + assign_method = assign_method.strip().split('.')[-1] + new_value = int(RETRY_BOUND) + + self.find_and_modify_assignment(test_class, assign_method, var_name, new_value, test_directory_path) + except: + print(f">>> ERROR: {test_class}") + + def run(self, input_file, test_directory_path): + self.process_input(input_file, test_directory_path) + + +""" Timeout bounds rewriting +""" +class TimeoutBoundsRewriter: + def __init__(self): + self.tests_to_rewrite = dict() + self.test_targets = dict() + + def read_test_targets(self, input_file): + with open(input_file, "r") as target: + lines = target.read().splitlines() + + for line in lines: + test_file, test_name = line.strip().split(".") + test_file = test_file.strip() + test_name = test_name.strip() + + if test_file not in self.tests_to_rewrite: + self.tests_to_rewrite[test_file] = [] + self.tests_to_rewrite[test_file].append(test_name) + + if test_file not in self.test_targets: + self.test_targets[test_file] = True + + def to_modify(self, line, test_class): + if "test" not in line: + return False + + for test_name in self.tests_to_rewrite.get(test_class, []): + if test_name in line: + return True + + return False + + def is_target_test(self, lines, index, test_class): + while index > 0: + if "test" in lines[index] and "public" in lines[index] and "@Test" in lines[index - 1]: + return self.to_modify(lines[index], test_class) + index -= 1 + + return False + + def modify_timeout_annotations(self, file_path, test_class): + with open(file_path, "r") as test_file: + lines = test_file.readlines() + + modified_lines = [] + for index in range(len(lines)): + modified_line = lines[index] + + line_without_spaces = re.sub(r"\s", "", lines[index]) + + if "@Test" in line_without_spaces and "timeout" in line_without_spaces: + if index + 1 < len(lines) and self.to_modify(lines[index + 1], test_class): + if re.search(r"@Test\(timeout=(\d+)\)", line_without_spaces): + current_timeout = int(re.search(r"@Test\(timeout=(\d+)\)", line_without_spaces).group(1)) + if current_timeout < TIMEOUT_BOUND: + modified_timeout = str(TIMEOUT_BOUND) + modified_line = re.sub( + r"@Test\(timeout=\d+\)", + r"\t@Test (timeout = {0})\n".format(modified_timeout), + line_without_spaces, + ) + + modified_lines.append(modified_line) + + with open(file_path, "w") as test_file: + test_file.writelines(modified_lines) + + def modify_wait_for_calls(self, file_path, test_class): + with open(file_path, 'r') as file: + lines = file.readlines() + + modified_lines = [] + index = 0 + while index < len(lines): + if "GenericTestUtils.waitFor(" in lines[index] and self.is_target_test(lines, index, test_class): + to_change = lines[index] + opened_count = to_change.count('(') + closed_count = to_change.count(')') + index += 1 + while index < len(lines) and opened_count != closed_count: + modified_lines.append(to_change) + to_change = lines[index] + opened_count += to_change.count('(') + closed_count += to_change.count(')') + index += 1 + to_change = re.sub(r"\d+\);", lambda m: f"{TIMEOUT_BOUND});" if int(m.group().strip("\);")) < TIMEOUT_BOUND else m.group(), to_change) + modified_lines.append(to_change + "\n") + else: + modified_lines.append(lines[index]) + index += 1 + + with open(file_path, "w") as test_file: + test_file.writelines(modified_lines) + + def run(self, input_file, test_directory_path): + self.read_test_targets(input_file) + for root, _, files in os.walk(test_directory_path): + for file_name in files: + if file_name.endswith(".java") and file_name.startswith("Test"): + file_path = os.path.join(root, file_name) + file_base_name = os.path.splitext(file_name)[0] + + if file_base_name in self.test_targets: + original_file_path = f"{os.path.splitext(os.path.join(os.path.dirname(file_path), os.path.basename(file_path)))[0]}.original" + if not os.path.isfile(original_file_path): + shutil.copy2(file_path, original_file_path) + + self.modify_timeout_annotations(file_path, file_base_name) + self.modify_wait_for_calls(file_path, file_base_name) + + +def main(): + parser = argparse.ArgumentParser(description='Modify Java test files based on specified criteria.') + parser.add_argument('--mode', choices=['bounds-rewriting', 'timeout-rewriting'], help='Mode of operation: "bounds-rewriting" or "timeout-rewriting".') + parser.add_argument('config_file', help='Path to the config file describing the list of changes.') + parser.add_argument('target_root_dir', help='Directory path to start the search for Java test files.') + args = parser.parse_args() + + if args.mode == 'bounds-rewriting': + rewriter = RetryBoundsRewriter() + elif args.mode == 'timeout-rewriting': + rewriter = TimeoutBoundsRewriter() + + rewriter.run(args.config_file, args.target_root_dir) + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/test_plan_generator.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/test_plan_generator.py new file mode 100644 index 00000000..923bb550 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/test_plan_generator.py @@ -0,0 +1,149 @@ +import argparse +import random +import re +import os +import sys + + +def injection_locations_graph(filename): + """ + Builds a graph representing retry locations and their associated tests from the input file. + + Args: + filename (str): Path to the input file containing retry locations and associated tests. + + Returns: + dict: A dictionary representing the graph, where keys are retry locations and values are sets of tests. + """ + graph = {} + + with open(filename, 'r', encoding='utf-8') as file: + for line in file: + test_name = line.split(",")[0].strip() + injection_location = line.split(",")[1].strip() + graph.setdefault(injection_location, set()).add(test_name) + + return graph + + +def find_matching(graph): + """ + Performs a best-effort matching of tests to retry locations. + + Args: + graph (dict): The retry locations graph where keys are retry locations and values are sets of tests. + + Returns: + dict: A dictionary representing the matching, where keys are retry locations and values are sets of tests. + """ + matching = {} + already_matched = set() + + tests = list(set().union(*graph.values())) + random.shuffle(tests) + + for test in tests: + injection_locations = [location for location, tests_set in graph.items() if test in tests_set + and all(test not in matching_tests for matching_tests in matching.values())] + if injection_locations: + injection_location = min(injection_locations, key=lambda x: len(matching.get(x, set()))) + matching.setdefault(injection_location, set()).add(test) + already_matched.add(test) + + return matching + + +def find_unmatched(matching, graph): + """ + Finds and returns unmatched tests and retry locations. + + Args: + matching (dict): The matching dictionary where keys are tests and values are matched retry locations. + graph (dict): The retry locations graph where keys are retry locations and values are sets of tests. + + Returns: + tuple: A tuple containing three sets - the first set contains unmatched tests, the second set contains + retry locations that are not matched with any tests, and the third set contains tests that are + matched to multiple retry locations in the matching dictionary. + """ + + # Get the set of all tests and retry locations from the graph + all_tests = set().union(*graph.values()) + all_injection_locations = set(graph.keys()) + + # Get the set of matched tests and retry locations from the matching + matched_tests = set().union(*matching.values()) + matched_injection_locations = set(matching.keys()) + + # Get the set of unmatched tests and retry locations by taking the difference + unmatched_tests = all_tests - matched_tests + unmatched_injection_locations = all_injection_locations - matched_injection_locations + + # Get the set of tests that are matched to multiple retry locations by taking the intersection + multi_matched_tests = {test for test in matched_tests if len([met for met, t in matching.items() if t == test]) > 1} + + return matched_injection_locations, unmatched_injection_locations, unmatched_tests, multi_matched_tests + + +def append_to_config_file(input_config, dir_path, matching): + with open(input_config, "r") as file: + lines = file.readlines() + + header = "Retry location!!!Retry caller!!!Injection site!!!Injection location!!!Exception\n" + + partitions_dir = os.path.join(dir_path, "partitions") + os.makedirs(partitions_dir, exist_ok=True) + + for line in lines: + injection_location = line.strip().split("!!!")[3] + # Get the tests that are matched to this retry location + if injection_location in matching: + for test in matching[injection_location]: + # Create a data file for each test + output_filename = os.path.join(partitions_dir, f"{os.path.splitext(os.path.basename(input_config))[0]}-{test}.data") + with open(output_filename, "a") as output_file: + if output_file.tell() == 0: + output_file.write(header) + output_file.write(line) + + # Create a configuration file for each test + config_filename = os.path.join(partitions_dir, f"{os.path.splitext(os.path.basename(input_config))[0]}-{test}.conf") + with open(config_filename, "w") as config_file: + config_file.write(f"retry_data_file: {output_filename}\n") + config_file.write("injection_policy: max-count\n") + config_file.write("max_injection_count: 311\n") + + +def main(): + parser = argparse.ArgumentParser(description='Matcher') + parser.add_argument('--retry_locations_input', help='Retry locations input file') + parser.add_argument('--test_retry_pairs_input', help='Tests-to-retry pairings input file') + parser.add_argument('--path_to_configs', help='Path to configuration files') + args = parser.parse_args() + + if not (args.retry_locations_input and args.test_retry_pairs_input and args.path_to_configs): + print("[wasabi] matcher.py takes three arguments") + sys.exit(1) + + # Step 1: Construct the "retry locations to tests" graph + graph = injection_locations_graph(args.test_retry_pairs_input) + + # Step 2: Find a matching where each test is matched to a unique retry location. + matching = find_matching(graph) + + # Step 3: Check if matching is complete + matched_injection_locations, unmatched_injection_locations, unmatched_tests, multi_matched_tests = find_unmatched(matching, graph) + print("================= Statistics ================") + print("Total matched retried methods:", len(matched_injection_locations)) + print("Unmatched retried method:\n\t", "\n\t".join(unmatched_injection_locations)) + print("Unmatched tests:\n\t", '\n\t'.join(unmatched_tests)) + print("Tests matched multiple times:\n\t", "\n\t".join(multi_matched_tests)) + print("================= ||| =================") + + # Step 4: Split the larger config file based on the retry locations to tests matching. + append_to_config_file(args.retry_locations_input, args.path_to_configs, matching) + + +if __name__ == "__main__": + main() + diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/wasabi-full-eval.log b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/wasabi-full-eval.log new file mode 100644 index 00000000..9a11635b --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/wasabi-full-eval.log @@ -0,0 +1,3923 @@ +2025-10-02 22:51:04,111 [INFO] + +2025-10-02 22:51:04,111 [INFO] ******************* +2025-10-02 22:51:04,111 [INFO] * * +2025-10-02 22:51:04,111 [INFO] * hadoop: setup * +2025-10-02 22:51:04,111 [INFO] * * +2025-10-02 22:51:04,111 [INFO] ******************* + +2025-10-02 22:51:04,111 [INFO] [WASABI-HELPER]: [INFO]: Cloning hadoop repository from https://github.com/apache/hadoop.git... +2025-10-02 22:52:06,188 [INFO] [WASABI-HELPER]: [INFO]: Successfully cloned hadoop. +2025-10-02 22:52:06,188 [INFO] Checking out version 60867de for hadoop... +2025-10-02 22:52:07,072 [INFO] [WASABI-HELPER]: [INFO]: Successfully checked out version 60867de for hadoop. +2025-10-02 22:52:07,073 [INFO] + +2025-10-02 22:52:07,073 [INFO] ****************************** +2025-10-02 22:52:07,073 [INFO] * * +2025-10-02 22:52:07,073 [INFO] * hadoop: code preparation * +2025-10-02 22:52:07,073 [INFO] * * +2025-10-02 22:52:07,073 [INFO] ****************************** + +2025-10-02 22:52:07,073 [INFO] [WASABI-HELPER]: [INFO]: Renamed /home/cc/sosp24-ae/wasabi/../benchmarks/hadoop/pom.xml to /home/cc/sosp24-ae/wasabi/../benchmarks/hadoop/pom-original.xml. +2025-10-02 22:52:07,074 [INFO] [WASABI-HELPER]: [INFO]: Copied /home/cc/sosp24-ae/wasabi/../wasabi/wasabi-testing/config/hadoop/pom-hadoop.xml to /home/cc/sosp24-ae/wasabi/../benchmarks/hadoop/pom.xml. +2025-10-02 22:52:12,153 [INFO] >>> ERROR: TestRuntimeEstimators + +2025-10-02 22:52:12,153 [INFO] >>> ERROR: TestRuntimeEstimators + +2025-10-02 22:52:12,153 [INFO] >>> ERROR: TestSpeculativeExecutionWithMRApp + +2025-10-02 22:52:12,158 [INFO] [WASABI-HELPER]: [INFO]: Successfully overwritten retry-related bounds. Status: 0 +2025-10-02 22:52:12,335 [INFO] [WASABI-HELPER]: [INFO]: Successfully overwritten retry-related bounds. Status: 0 +2025-10-02 22:52:12,335 [INFO] + +2025-10-02 22:52:12,335 [INFO] **************************** +2025-10-02 22:52:12,335 [INFO] * * +2025-10-02 22:52:12,335 [INFO] * hadoop: bug triggering * +2025-10-02 22:52:12,335 [INFO] * * +2025-10-02 22:52:12,336 [INFO] **************************** + +2025-10-03 00:22:21,623 [INFO] [WASABI-HELPER]: [INFO]: Finished running test suite for hadoop. Status: 0 +2025-10-03 00:22:21,624 [INFO] + +2025-10-03 00:22:21,624 [INFO] ************************* +2025-10-03 00:22:21,624 [INFO] * * +2025-10-03 00:22:21,624 [INFO] * hadoop: Bug oracles * +2025-10-03 00:22:21,624 [INFO] * * +2025-10-03 00:22:21,624 [INFO] ************************* + +2025-10-03 00:22:31,154 [INFO] // ----------------------------- // + +2025-10-03 00:22:31,154 [INFO] Retry bugs for hadoop + +2025-10-03 00:22:31,154 [INFO] // ----------------------------- // + +2025-10-03 00:22:31,154 [INFO] bug-1,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestLineRecordReaderJobs.testCustomRecordDelimiters + +2025-10-03 00:22:31,154 [INFO] bug-2,when-missing-backoff,org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob,TestFileOutputCommitter.testCommitterWithFailureV2 + +2025-10-03 00:22:31,154 [INFO] bug-3,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hFlush_02 + +2025-10-03 00:22:31,154 [INFO] bug-4,when-missing-backoff,org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run,TestHadoopArchives.testReadFileContent + +2025-10-03 00:22:31,155 [INFO] bug-5,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll + +2025-10-03 00:22:31,155 [INFO] bug-6,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,155 [INFO] bug-7,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestCopyToLocal.testCopyWithThreads + +2025-10-03 00:22:31,155 [INFO] bug-8,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks + +2025-10-03 00:22:31,155 [INFO] bug-9,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestComparators.testAllUserComparators + +2025-10-03 00:22:31,155 [INFO] bug-10,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,155 [INFO] bug-11,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestCopyToLocal.testCopyWithThreadWrong + +2025-10-03 00:22:31,155 [INFO] bug-12,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestComparators.testUserMRComparator + +2025-10-03 00:22:31,155 [INFO] bug-13,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred + +2025-10-03 00:22:31,155 [INFO] bug-14,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll + +2025-10-03 00:22:31,155 [INFO] bug-15,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,155 [INFO] bug-16,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.testHFlushInterrupted + +2025-10-03 00:22:31,155 [INFO] bug-17,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testExcludeSlowDiskWhenChoosingVolume + +2025-10-03 00:22:31,155 [INFO] bug-18,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles + +2025-10-03 00:22:31,155 [INFO] bug-19,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll + +2025-10-03 00:22:31,155 [INFO] bug-20,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestMapRed.testBiggerInput + +2025-10-03 00:22:31,155 [INFO] bug-21,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,155 [INFO] bug-22,when-missing-backoff,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks + +2025-10-03 00:22:31,155 [INFO] bug-23,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,156 [INFO] bug-24,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode,TestDatanodeDeath.testSimple1 + +2025-10-03 00:22:31,156 [INFO] bug-25,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestRouterAllResolver.testRandomAll + +2025-10-03 00:22:31,156 [INFO] bug-26,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles + +2025-10-03 00:22:31,156 [INFO] bug-27,when-missing-backoff,org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run,UNKNOWN + +2025-10-03 00:22:31,156 [INFO] bug-28,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles + +2025-10-03 00:22:31,156 [INFO] bug-29,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest + +2025-10-03 00:22:31,156 [INFO] bug-30,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles + +2025-10-03 00:22:31,156 [INFO] bug-31,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap + +2025-10-03 00:22:31,156 [INFO] bug-32,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncUpdateLength_03 + +2025-10-03 00:22:31,156 [INFO] bug-33,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hFlush_01 + +2025-10-03 00:22:31,156 [INFO] bug-34,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr + +2025-10-03 00:22:31,156 [INFO] bug-35,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.transfer,TestReplaceDatanodeOnFailure.testReplaceDatanodeOnFailure + +2025-10-03 00:22:31,156 [INFO] bug-36,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncUpdateLength_01 + +2025-10-03 00:22:31,156 [INFO] bug-37,how-bug,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestRouterAllResolver.testHashAll + +2025-10-03 00:22:31,156 [INFO] bug-38,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hFlush_03 + +2025-10-03 00:22:31,156 [INFO] bug-39,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred + +2025-10-03 00:22:31,156 [INFO] bug-40,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap + +2025-10-03 00:22:31,156 [INFO] bug-41,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestKeyFieldBasedComparator.testBasicUnixComparator + +2025-10-03 00:22:31,156 [INFO] bug-42,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll + +2025-10-03 00:22:31,157 [INFO] bug-43,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles + +2025-10-03 00:22:31,157 [INFO] bug-44,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,157 [INFO] bug-45,when-missing-backoff,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testWhenOnlyFewTargetNodesAreAvailableToSatisfyStoragePolicy + +2025-10-03 00:22:31,157 [INFO] bug-46,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlock_01 + +2025-10-03 00:22:31,157 [INFO] bug-47,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr + +2025-10-03 00:22:31,157 [INFO] bug-48,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode,TestDatanodeDeath.testSimple2 + +2025-10-03 00:22:31,157 [INFO] bug-49,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles + +2025-10-03 00:22:31,157 [INFO] bug-50,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,157 [INFO] bug-51,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks + +2025-10-03 00:22:31,157 [INFO] bug-52,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest + +2025-10-03 00:22:31,157 [INFO] bug-53,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,157 [INFO] bug-54,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll + +2025-10-03 00:22:31,157 [INFO] bug-55,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll + +2025-10-03 00:22:31,157 [INFO] bug-56,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestRouterAllResolver.testSpaceAll + +2025-10-03 00:22:31,157 [INFO] bug-57,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred + +2025-10-03 00:22:31,157 [INFO] bug-58,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr + +2025-10-03 00:22:31,157 [INFO] bug-59,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlockAndUpdateLength + +2025-10-03 00:22:31,157 [INFO] bug-60,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlock_02 + +2025-10-03 00:22:31,157 [INFO] bug-61,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest + +2025-10-03 00:22:31,158 [INFO] bug-62,how-bug,org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader,TestFSEditLogLoader.testErasureCodingPolicyOperations + +2025-10-03 00:22:31,158 [INFO] bug-63,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlock_03 + +2025-10-03 00:22:31,158 [INFO] bug-64,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll + +2025-10-03 00:22:31,158 [INFO] bug-65,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,158 [INFO] bug-66,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest + +2025-10-03 00:22:31,158 [INFO] bug-67,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestCopyToLocal.testCopyWithThreadsAndQueueSize + +2025-10-03 00:22:31,158 [INFO] bug-68,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestMapRed.testCompression + +2025-10-03 00:22:31,158 [INFO] bug-69,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestComparators.testDefaultMRComparator + +2025-10-03 00:22:31,158 [INFO] bug-70,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles + +2025-10-03 00:22:31,158 [INFO] bug-71,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred + +2025-10-03 00:22:31,158 [INFO] bug-72,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,158 [INFO] bug-73,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hFlush_02 + +2025-10-03 00:22:31,158 [INFO] bug-74,when-missing-backoff,org.apache.hadoop.mapred.Task.statusUpdate,TestCompressionEmulationUtils.testRandomCompressedTextDataGenerator + +2025-10-03 00:22:31,158 [INFO] bug-75,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred + +2025-10-03 00:22:31,158 [INFO] bug-76,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles + +2025-10-03 00:22:31,158 [INFO] bug-77,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap + +2025-10-03 00:22:31,158 [INFO] bug-78,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll + +2025-10-03 00:22:31,158 [INFO] bug-79,how-bug,org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks,TestReencryption.testRestartDuringReencrypt + +2025-10-03 00:22:31,158 [INFO] bug-80,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr + +2025-10-03 00:22:31,159 [INFO] bug-81,when-missing-backoff,org.apache.hadoop.mapred.Task.done,TestMRKeyFieldBasedComparator.testBasicUnixComparator + +2025-10-03 00:22:31,159 [INFO] bug-82,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles + +2025-10-03 00:22:31,159 [INFO] bug-83,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode,TestDatanodeDeath.testSimple0 + +2025-10-03 00:22:31,159 [INFO] bug-84,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles + +2025-10-03 00:22:31,159 [INFO] bug-85,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr + +2025-10-03 00:22:31,159 [INFO] bug-86,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks + +2025-10-03 00:22:31,159 [INFO] bug-87,when-missing-backoff,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testMoverWithFullStripe + +2025-10-03 00:22:31,159 [INFO] bug-88,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr + +2025-10-03 00:22:31,159 [INFO] bug-89,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap + +2025-10-03 00:22:31,159 [INFO] bug-90,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks + +2025-10-03 00:22:31,159 [INFO] bug-91,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest + +2025-10-03 00:22:31,159 [INFO] bug-92,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles + +2025-10-03 00:22:31,159 [INFO] bug-93,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestDistCh.testDistCh + +2025-10-03 00:22:31,159 [INFO] bug-94,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks + +2025-10-03 00:22:31,159 [INFO] bug-95,how-bug,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestRouterAllResolver.testRandomAll + +2025-10-03 00:22:31,159 [INFO] bug-96,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles + +2025-10-03 00:22:31,159 [INFO] bug-97,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncUpdateLength_03 + +2025-10-03 00:22:31,159 [INFO] bug-98,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest + +2025-10-03 00:22:31,159 [INFO] bug-99,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles + +2025-10-03 00:22:31,160 [INFO] bug-100,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,160 [INFO] bug-101,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll + +2025-10-03 00:22:31,160 [INFO] bug-102,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestRouterAllResolver.testHashAll + +2025-10-03 00:22:31,160 [INFO] bug-103,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles + +2025-10-03 00:22:31,160 [INFO] bug-104,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred + +2025-10-03 00:22:31,160 [INFO] bug-105,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncUpdateLength_02 + +2025-10-03 00:22:31,160 [INFO] bug-106,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestLineRecordReaderJobs.testDefaultRecordDelimiters + +2025-10-03 00:22:31,160 [INFO] bug-107,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hFlush_01 + +2025-10-03 00:22:31,160 [INFO] bug-108,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap + +2025-10-03 00:22:31,160 [INFO] bug-109,how-bug,org.apache.hadoop.mapred.Task.sendDone,TestStreamAggregate.testCommandLine + +2025-10-03 00:22:31,160 [INFO] bug-110,when-missing-backoff,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred + +2025-10-03 00:22:31,160 [INFO] bug-111,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncUpdateLength_01 + +2025-10-03 00:22:31,160 [INFO] bug-112,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks,TestReencryption.testRestartDuringReencrypt + +2025-10-03 00:22:31,160 [INFO] bug-113,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hFlush_03 + +2025-10-03 00:22:31,160 [INFO] bug-114,when-missing-backoff,org.apache.hadoop.ipc.Client$Connection.setupConnection,TestNameserviceRPCMetrics.testProxyOpCompleteConcurrent + +2025-10-03 00:22:31,160 [INFO] bug-115,when-missing-backoff,org.apache.hadoop.mapred.Task.statusUpdate,TestCompressionEmulationUtils.testCompressionRatios + +2025-10-03 00:22:31,160 [INFO] bug-116,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestMapRed.testSmallInput + +2025-10-03 00:22:31,160 [INFO] bug-117,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlock_01 + +2025-10-03 00:22:31,160 [INFO] bug-118,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap + +2025-10-03 00:22:31,160 [INFO] bug-119,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestMapRed.testNullKeys + +2025-10-03 00:22:31,161 [INFO] bug-120,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.testHFlushInterrupted + +2025-10-03 00:22:31,161 [INFO] bug-121,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,161 [INFO] bug-122,when-missing-backoff,org.apache.hadoop.mapred.Task.statusUpdate,TestDataDrivenDBInputFormat.testDateSplits + +2025-10-03 00:22:31,161 [INFO] bug-123,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred + +2025-10-03 00:22:31,161 [INFO] bug-124,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks,TestReencryption.testRestartDuringReencrypt + +2025-10-03 00:22:31,161 [INFO] bug-125,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest + +2025-10-03 00:22:31,161 [INFO] bug-126,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks + +2025-10-03 00:22:31,161 [INFO] bug-127,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles + +2025-10-03 00:22:31,161 [INFO] bug-128,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles + +2025-10-03 00:22:31,161 [INFO] bug-129,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,161 [INFO] bug-130,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestMapRed.testMapred + +2025-10-03 00:22:31,161 [INFO] bug-131,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlockAndUpdateLength + +2025-10-03 00:22:31,161 [INFO] bug-132,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestStreamAggregate.testCommandLine + +2025-10-03 00:22:31,161 [INFO] bug-133,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,161 [INFO] bug-134,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap + +2025-10-03 00:22:31,161 [INFO] bug-135,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestComparators.testUserValueGroupingComparator + +2025-10-03 00:22:31,161 [INFO] bug-136,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestCopyToLocal.testCopyWithThreadsAndQueueSizeWrong + +2025-10-03 00:22:31,161 [INFO] bug-137,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode,TestDatanodeDeath.testComplex + +2025-10-03 00:22:31,161 [INFO] bug-138,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles + +2025-10-03 00:22:31,162 [INFO] bug-139,how-bug,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestRouterAllResolver.testSpaceAll + +2025-10-03 00:22:31,162 [INFO] bug-140,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap + +2025-10-03 00:22:31,162 [INFO] bug-141,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlock_03 + +2025-10-03 00:22:31,162 [INFO] bug-142,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,162 [INFO] bug-143,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles + +2025-10-03 00:22:31,162 [INFO] bug-144,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount + +2025-10-03 00:22:31,162 [INFO] bug-145,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred + +2025-10-03 00:22:31,162 [INFO] bug-146,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks + +2025-10-03 00:22:31,162 [INFO] bug-147,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr + +2025-10-03 00:22:31,162 [INFO] bug-148,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlock_02 + +2025-10-03 00:22:31,162 [INFO] bug-149,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest + +2025-10-03 00:22:31,162 [INFO] bug-150,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr + +2025-10-03 00:22:31,162 [INFO] bug-151,how-bug,org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader,TestFSEditLogLoader.testErasureCodingPolicyOperations + +2025-10-03 00:22:31,162 [INFO] bug-152,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncUpdateLength_02 + +2025-10-03 00:22:31,162 [INFO] bug-153,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks + +2025-10-03 00:22:31,162 [INFO] bug-154,when-missing-backoff,org.apache.hadoop.mapred.Task.done,TestStreaming.testCommandLine + +2025-10-03 00:22:31,162 [INFO] bug-155,when-missing-cap,org.apache.hadoop.hdfs.DFSOutputStream.addBlock,UNKNOWN + +2025-10-03 00:22:31,170 [INFO] // ----------------------------- // + Retry bugs for hadoop +// ----------------------------- // +bug-1,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestLineRecordReaderJobs.testCustomRecordDelimiters +bug-2,when-missing-backoff,org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob,TestFileOutputCommitter.testCommitterWithFailureV2 +bug-3,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hFlush_02 +bug-4,when-missing-backoff,org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run,TestHadoopArchives.testReadFileContent +bug-5,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll +bug-6,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-7,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestCopyToLocal.testCopyWithThreads +bug-8,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks +bug-9,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestComparators.testAllUserComparators +bug-10,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-11,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestCopyToLocal.testCopyWithThreadWrong +bug-12,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestComparators.testUserMRComparator +bug-13,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred +bug-14,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll +bug-15,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-16,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.testHFlushInterrupted +bug-17,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testExcludeSlowDiskWhenChoosingVolume +bug-18,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles +bug-19,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll +bug-20,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestMapRed.testBiggerInput +bug-21,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-22,when-missing-backoff,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks +bug-23,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-24,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode,TestDatanodeDeath.testSimple1 +bug-25,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestRouterAllResolver.testRandomAll +bug-26,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles +bug-27,when-missing-backoff,org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run,UNKNOWN +bug-28,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles +bug-29,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest +bug-30,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles +bug-31,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap +bug-32,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncUpdateLength_03 +bug-33,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hFlush_01 +bug-34,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr +bug-35,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.transfer,TestReplaceDatanodeOnFailure.testReplaceDatanodeOnFailure +bug-36,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncUpdateLength_01 +bug-37,how-bug,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestRouterAllResolver.testHashAll +bug-38,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hFlush_03 +bug-39,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred +bug-40,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap +bug-41,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestKeyFieldBasedComparator.testBasicUnixComparator +bug-42,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll +bug-43,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles +bug-44,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-45,when-missing-backoff,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testWhenOnlyFewTargetNodesAreAvailableToSatisfyStoragePolicy +bug-46,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlock_01 +bug-47,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr +bug-48,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode,TestDatanodeDeath.testSimple2 +bug-49,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles +bug-50,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-51,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks +bug-52,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest +bug-53,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-54,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll +bug-55,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll +bug-56,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestRouterAllResolver.testSpaceAll +bug-57,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred +bug-58,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr +bug-59,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlockAndUpdateLength +bug-60,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlock_02 +bug-61,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest +bug-62,how-bug,org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader,TestFSEditLogLoader.testErasureCodingPolicyOperations +bug-63,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlock_03 +bug-64,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll +bug-65,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-66,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest +bug-67,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestCopyToLocal.testCopyWithThreadsAndQueueSize +bug-68,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestMapRed.testCompression +bug-69,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestComparators.testDefaultMRComparator +bug-70,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles +bug-71,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred +bug-72,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-73,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hFlush_02 +bug-74,when-missing-backoff,org.apache.hadoop.mapred.Task.statusUpdate,TestCompressionEmulationUtils.testRandomCompressedTextDataGenerator +bug-75,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred +bug-76,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles +bug-77,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap +bug-78,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll +bug-79,how-bug,org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks,TestReencryption.testRestartDuringReencrypt +bug-80,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr +bug-81,when-missing-backoff,org.apache.hadoop.mapred.Task.done,TestMRKeyFieldBasedComparator.testBasicUnixComparator +bug-82,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles +bug-83,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode,TestDatanodeDeath.testSimple0 +bug-84,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles +bug-85,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr +bug-86,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks +bug-87,when-missing-backoff,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testMoverWithFullStripe +bug-88,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr +bug-89,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap +bug-90,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks +bug-91,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest +bug-92,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles +bug-93,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestDistCh.testDistCh +bug-94,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks +bug-95,how-bug,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestRouterAllResolver.testRandomAll +bug-96,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles +bug-97,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncUpdateLength_03 +bug-98,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest +bug-99,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles +bug-100,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-101,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestHDFSCLI.testAll +bug-102,when-missing-backoff,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestRouterAllResolver.testHashAll +bug-103,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles +bug-104,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred +bug-105,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncUpdateLength_02 +bug-106,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestLineRecordReaderJobs.testDefaultRecordDelimiters +bug-107,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hFlush_01 +bug-108,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap +bug-109,how-bug,org.apache.hadoop.mapred.Task.sendDone,TestStreamAggregate.testCommandLine +bug-110,when-missing-backoff,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred +bug-111,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncUpdateLength_01 +bug-112,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks,TestReencryption.testRestartDuringReencrypt +bug-113,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hFlush_03 +bug-114,when-missing-backoff,org.apache.hadoop.ipc.Client$Connection.setupConnection,TestNameserviceRPCMetrics.testProxyOpCompleteConcurrent +bug-115,when-missing-backoff,org.apache.hadoop.mapred.Task.statusUpdate,TestCompressionEmulationUtils.testCompressionRatios +bug-116,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestMapRed.testSmallInput +bug-117,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlock_01 +bug-118,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap +bug-119,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestMapRed.testNullKeys +bug-120,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.testHFlushInterrupted +bug-121,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-122,when-missing-backoff,org.apache.hadoop.mapred.Task.statusUpdate,TestDataDrivenDBInputFormat.testDateSplits +bug-123,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred +bug-124,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks,TestReencryption.testRestartDuringReencrypt +bug-125,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest +bug-126,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks +bug-127,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_040_abortFiles +bug-128,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles +bug-129,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-130,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestMapRed.testMapred +bug-131,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlockAndUpdateLength +bug-132,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestStreamAggregate.testCommandLine +bug-133,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-134,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap +bug-135,when-missing-backoff,org.apache.hadoop.mapred.Task.sendDone,TestComparators.testUserValueGroupingComparator +bug-136,when-missing-backoff,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestCopyToLocal.testCopyWithThreadsAndQueueSizeWrong +bug-137,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode,TestDatanodeDeath.testComplex +bug-138,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles +bug-139,how-bug,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestRouterAllResolver.testSpaceAll +bug-140,when-missing-cap,org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream,TestFsVolumeList.testAddRplicaProcessorForAddingReplicaInMap +bug-141,when-missing-backoff,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlock_03 +bug-142,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-143,when-missing-cap,org.apache.hadoop.fs.FSInputChecker.readChecksumChunk,TestDirectoryCommitterScale.test_030_commitFiles +bug-144,when-missing-cap,org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork,TestCheckpoint.testCheckpointTriggerOnTxnCount +bug-145,when-missing-cap,org.apache.hadoop.mapred.Task.statusUpdate,TestMapReduce.testMapred +bug-146,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks +bug-147,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr +bug-148,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncEndBlock_02 +bug-149,when-missing-cap,org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run,TestSpaceReservation.stressTest +bug-150,when-missing-cap,org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo,TestBatchIbr.testIbr +bug-151,how-bug,org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader,TestFSEditLogLoader.testErasureCodingPolicyOperations +bug-152,how-bug,org.apache.hadoop.hdfs.DFSInputStream.readBlockLength,TestHFlush.hSyncUpdateLength_02 +bug-153,when-missing-cap,org.apache.hadoop.hdfs.server.sps.ExternalSPSBlockMoveTaskHandler$BlockMovingTask.moveBlock,TestStoragePolicySatisfierWithStripedFile.testSPSWhenFileHasLowRedundancyBlocks +bug-154,when-missing-backoff,org.apache.hadoop.mapred.Task.done,TestStreaming.testCommandLine +bug-155,when-missing-cap,org.apache.hadoop.hdfs.DFSOutputStream.addBlock,UNKNOWN + +2025-10-03 00:22:31,170 [INFO] [WASABI-HELPER]: [INFO]: Finished processing /home/cc/sosp24-ae/wasabi/../results/hadoop/202510030022. Status: 0 +2025-10-03 00:22:31,245 [INFO] + +2025-10-03 00:22:31,245 [INFO] ****************** +2025-10-03 00:22:31,245 [INFO] * * +2025-10-03 00:22:31,245 [INFO] * hbase: setup * +2025-10-03 00:22:31,245 [INFO] * * +2025-10-03 00:22:31,245 [INFO] ****************** + +2025-10-03 00:22:31,245 [INFO] [WASABI-HELPER]: [INFO]: Cloning hbase repository from https://github.com/apache/hbase.git... +2025-10-03 00:23:15,656 [INFO] [WASABI-HELPER]: [INFO]: Successfully cloned hbase. +2025-10-03 00:23:15,656 [INFO] Checking out version 89ca7f4 for hbase... +2025-10-03 00:23:16,677 [INFO] [WASABI-HELPER]: [INFO]: Successfully checked out version 89ca7f4 for hbase. +2025-10-03 00:23:16,678 [INFO] + +2025-10-03 00:23:16,678 [INFO] ***************************** +2025-10-03 00:23:16,678 [INFO] * * +2025-10-03 00:23:16,678 [INFO] * hbase: code preparation * +2025-10-03 00:23:16,678 [INFO] * * +2025-10-03 00:23:16,678 [INFO] ***************************** + +2025-10-03 00:23:16,678 [INFO] [WASABI-HELPER]: [INFO]: Renamed /home/cc/sosp24-ae/wasabi/../benchmarks/hbase/pom.xml to /home/cc/sosp24-ae/wasabi/../benchmarks/hbase/pom-original.xml. +2025-10-03 00:23:16,679 [INFO] [WASABI-HELPER]: [INFO]: Copied /home/cc/sosp24-ae/wasabi/../wasabi/wasabi-testing/config/hbase/pom-hbase.xml to /home/cc/sosp24-ae/wasabi/../benchmarks/hbase/pom.xml. +2025-10-03 00:23:17,514 [INFO] [WASABI-HELPER]: [INFO]: Successfully overwritten retry-related bounds. Status: 0 +2025-10-03 00:23:17,625 [INFO] [WASABI-HELPER]: [INFO]: Successfully overwritten retry-related bounds. Status: 0 +2025-10-03 00:23:17,625 [INFO] + +2025-10-03 00:23:17,625 [INFO] *************************** +2025-10-03 00:23:17,626 [INFO] * * +2025-10-03 00:23:17,626 [INFO] * hbase: bug triggering * +2025-10-03 00:23:17,626 [INFO] * * +2025-10-03 00:23:17,626 [INFO] *************************** + +2025-10-03 02:16:06,476 [INFO] [WASABI-HELPER]: [INFO]: Finished running test suite for hbase. Status: 0 +2025-10-03 02:16:06,476 [INFO] + +2025-10-03 02:16:06,477 [INFO] ************************ +2025-10-03 02:16:06,477 [INFO] * * +2025-10-03 02:16:06,477 [INFO] * hbase: Bug oracles * +2025-10-03 02:16:06,477 [INFO] * * +2025-10-03 02:16:06,477 [INFO] ************************ + +2025-10-03 02:16:11,249 [INFO] // ----------------------------- // + +2025-10-03 02:16:11,249 [INFO] Retry bugs for hbase + +2025-10-03 02:16:11,249 [INFO] // ----------------------------- // + +2025-10-03 02:16:11,249 [INFO] bug-1,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,250 [INFO] bug-2,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestRegionAssignedToMultipleRegionServers.test + +2025-10-03 02:16:11,250 [INFO] bug-3,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush + +2025-10-03 02:16:11,250 [INFO] bug-4,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,250 [INFO] bug-5,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,250 [INFO] bug-6,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,250 [INFO] bug-7,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,250 [INFO] bug-8,when-missing-backoff,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,250 [INFO] bug-9,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,250 [INFO] bug-10,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,250 [INFO] bug-11,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,250 [INFO] bug-12,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,250 [INFO] bug-13,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,250 [INFO] bug-14,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,250 [INFO] bug-15,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards + +2025-10-03 02:16:11,250 [INFO] bug-16,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,250 [INFO] bug-17,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,250 [INFO] bug-18,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,250 [INFO] bug-19,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,251 [INFO] bug-20,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,251 [INFO] bug-21,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,251 [INFO] bug-22,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,251 [INFO] bug-23,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,251 [INFO] bug-24,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,251 [INFO] bug-25,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster2 + +2025-10-03 02:16:11,251 [INFO] bug-26,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,251 [INFO] bug-27,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,251 [INFO] bug-28,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,251 [INFO] bug-29,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,251 [INFO] bug-30,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestRegionAssignedToMultipleRegionServers.test + +2025-10-03 02:16:11,251 [INFO] bug-31,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,251 [INFO] bug-32,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal + +2025-10-03 02:16:11,251 [INFO] bug-33,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFailedToCreateWALIfParentRenamed + +2025-10-03 02:16:11,251 [INFO] bug-34,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,251 [INFO] bug-35,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,251 [INFO] bug-36,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,251 [INFO] bug-37,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore + +2025-10-03 02:16:11,251 [INFO] bug-38,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,252 [INFO] bug-39,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,252 [INFO] bug-40,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,252 [INFO] bug-41,when-missing-backoff,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable + +2025-10-03 02:16:11,252 [INFO] bug-42,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,252 [INFO] bug-43,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,252 [INFO] bug-44,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,252 [INFO] bug-45,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,252 [INFO] bug-46,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,252 [INFO] bug-47,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,252 [INFO] bug-48,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,252 [INFO] bug-49,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,252 [INFO] bug-50,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,252 [INFO] bug-51,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,252 [INFO] bug-52,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,252 [INFO] bug-53,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,252 [INFO] bug-54,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,252 [INFO] bug-55,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions + +2025-10-03 02:16:11,252 [INFO] bug-56,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster3 + +2025-10-03 02:16:11,252 [INFO] bug-57,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues + +2025-10-03 02:16:11,252 [INFO] bug-58,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,253 [INFO] bug-59,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS + +2025-10-03 02:16:11,253 [INFO] bug-60,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testRollWriterForClosedWAL + +2025-10-03 02:16:11,253 [INFO] bug-61,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,253 [INFO] bug-62,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,253 [INFO] bug-63,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,253 [INFO] bug-64,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,253 [INFO] bug-65,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion + +2025-10-03 02:16:11,253 [INFO] bug-66,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile + +2025-10-03 02:16:11,253 [INFO] bug-67,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,253 [INFO] bug-68,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestClassLoading.testClassLoadingFromRelativeLibDirInJar + +2025-10-03 02:16:11,253 [INFO] bug-69,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,253 [INFO] bug-70,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable + +2025-10-03 02:16:11,253 [INFO] bug-71,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions + +2025-10-03 02:16:11,253 [INFO] bug-72,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,253 [INFO] bug-73,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testSyncNoAppend + +2025-10-03 02:16:11,253 [INFO] bug-74,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,253 [INFO] bug-75,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS + +2025-10-03 02:16:11,253 [INFO] bug-76,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,253 [INFO] bug-77,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,254 [INFO] bug-78,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,254 [INFO] bug-79,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestRegionAssignedToMultipleRegionServers.test + +2025-10-03 02:16:11,254 [INFO] bug-80,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,254 [INFO] bug-81,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,254 [INFO] bug-82,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,254 [INFO] bug-83,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,254 [INFO] bug-84,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore + +2025-10-03 02:16:11,254 [INFO] bug-85,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,254 [INFO] bug-86,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,254 [INFO] bug-87,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,254 [INFO] bug-88,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,254 [INFO] bug-89,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,254 [INFO] bug-90,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,254 [INFO] bug-91,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,254 [INFO] bug-92,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,254 [INFO] bug-93,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,254 [INFO] bug-94,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,254 [INFO] bug-95,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState,TestDrainReplicationQueuesForStandBy.test + +2025-10-03 02:16:11,254 [INFO] bug-96,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,254 [INFO] bug-97,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,255 [INFO] bug-98,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,255 [INFO] bug-99,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,255 [INFO] bug-100,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,255 [INFO] bug-101,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,255 [INFO] bug-102,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings + +2025-10-03 02:16:11,255 [INFO] bug-103,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,255 [INFO] bug-104,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,255 [INFO] bug-105,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards + +2025-10-03 02:16:11,255 [INFO] bug-106,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,255 [INFO] bug-107,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,255 [INFO] bug-108,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,255 [INFO] bug-109,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,255 [INFO] bug-110,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestReplicator.testReplicatorBatching + +2025-10-03 02:16:11,255 [INFO] bug-111,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,255 [INFO] bug-112,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,255 [INFO] bug-113,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,255 [INFO] bug-114,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,255 [INFO] bug-115,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,255 [INFO] bug-116,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestReplicator.testReplicatorWithErrors + +2025-10-03 02:16:11,255 [INFO] bug-117,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush + +2025-10-03 02:16:11,256 [INFO] bug-118,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,256 [INFO] bug-119,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,256 [INFO] bug-120,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,256 [INFO] bug-121,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,256 [INFO] bug-122,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,256 [INFO] bug-123,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,256 [INFO] bug-124,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,256 [INFO] bug-125,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,256 [INFO] bug-126,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,256 [INFO] bug-127,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,256 [INFO] bug-128,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,256 [INFO] bug-129,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,256 [INFO] bug-130,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,256 [INFO] bug-131,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,256 [INFO] bug-132,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,256 [INFO] bug-133,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,256 [INFO] bug-134,when-missing-backoff,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,256 [INFO] bug-135,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,256 [INFO] bug-136,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues + +2025-10-03 02:16:11,256 [INFO] bug-137,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,257 [INFO] bug-138,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,257 [INFO] bug-139,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,257 [INFO] bug-140,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,257 [INFO] bug-141,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,257 [INFO] bug-142,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,257 [INFO] bug-143,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestClassLoading.testClassLoadingFromHDFS + +2025-10-03 02:16:11,257 [INFO] bug-144,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile + +2025-10-03 02:16:11,257 [INFO] bug-145,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,257 [INFO] bug-146,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,257 [INFO] bug-147,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,257 [INFO] bug-148,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,257 [INFO] bug-149,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues + +2025-10-03 02:16:11,257 [INFO] bug-150,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,257 [INFO] bug-151,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,257 [INFO] bug-152,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,257 [INFO] bug-153,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,257 [INFO] bug-154,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,257 [INFO] bug-155,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestBulkLoadReplicationHFileRefs.testWhenExcludeTable + +2025-10-03 02:16:11,257 [INFO] bug-156,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,257 [INFO] bug-157,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal + +2025-10-03 02:16:11,258 [INFO] bug-158,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,258 [INFO] bug-159,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,258 [INFO] bug-160,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable + +2025-10-03 02:16:11,258 [INFO] bug-161,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,258 [INFO] bug-162,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test + +2025-10-03 02:16:11,258 [INFO] bug-163,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,258 [INFO] bug-164,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,258 [INFO] bug-165,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,258 [INFO] bug-166,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,258 [INFO] bug-167,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,258 [INFO] bug-168,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,258 [INFO] bug-169,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,258 [INFO] bug-170,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,258 [INFO] bug-171,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,258 [INFO] bug-172,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,258 [INFO] bug-173,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,258 [INFO] bug-174,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster4 + +2025-10-03 02:16:11,258 [INFO] bug-175,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,258 [INFO] bug-176,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test + +2025-10-03 02:16:11,259 [INFO] bug-177,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,259 [INFO] bug-178,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,259 [INFO] bug-179,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,259 [INFO] bug-180,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush + +2025-10-03 02:16:11,259 [INFO] bug-181,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,259 [INFO] bug-182,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,259 [INFO] bug-183,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards + +2025-10-03 02:16:11,259 [INFO] bug-184,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal + +2025-10-03 02:16:11,259 [INFO] bug-185,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,259 [INFO] bug-186,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,259 [INFO] bug-187,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,259 [INFO] bug-188,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,259 [INFO] bug-189,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,259 [INFO] bug-190,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,259 [INFO] bug-191,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,259 [INFO] bug-192,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestBulkLoadReplicationHFileRefs.testWhenExcludeNamespace + +2025-10-03 02:16:11,259 [INFO] bug-193,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,259 [INFO] bug-194,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster4 + +2025-10-03 02:16:11,259 [INFO] bug-195,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush + +2025-10-03 02:16:11,259 [INFO] bug-196,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,260 [INFO] bug-197,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,260 [INFO] bug-198,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,260 [INFO] bug-199,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,260 [INFO] bug-200,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,260 [INFO] bug-201,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,260 [INFO] bug-202,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore + +2025-10-03 02:16:11,260 [INFO] bug-203,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,260 [INFO] bug-204,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,260 [INFO] bug-205,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,260 [INFO] bug-206,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,260 [INFO] bug-207,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,260 [INFO] bug-208,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestReplicator.testReplicatorWithErrors + +2025-10-03 02:16:11,260 [INFO] bug-209,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,260 [INFO] bug-210,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,260 [INFO] bug-211,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestMetaWithReplicasShutdownHandling.testShutdownHandling + +2025-10-03 02:16:11,260 [INFO] bug-212,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestReplicator.testReplicatorBatching + +2025-10-03 02:16:11,260 [INFO] bug-213,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,260 [INFO] bug-214,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,260 [INFO] bug-215,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions + +2025-10-03 02:16:11,260 [INFO] bug-216,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile + +2025-10-03 02:16:11,261 [INFO] bug-217,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,261 [INFO] bug-218,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings + +2025-10-03 02:16:11,261 [INFO] bug-219,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,261 [INFO] bug-220,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion + +2025-10-03 02:16:11,261 [INFO] bug-221,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions + +2025-10-03 02:16:11,261 [INFO] bug-222,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,261 [INFO] bug-223,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,261 [INFO] bug-224,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,261 [INFO] bug-225,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile + +2025-10-03 02:16:11,261 [INFO] bug-226,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,261 [INFO] bug-227,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,261 [INFO] bug-228,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable + +2025-10-03 02:16:11,261 [INFO] bug-229,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,261 [INFO] bug-230,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,261 [INFO] bug-231,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,261 [INFO] bug-232,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,261 [INFO] bug-233,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,261 [INFO] bug-234,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,261 [INFO] bug-235,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,261 [INFO] bug-236,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,262 [INFO] bug-237,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,262 [INFO] bug-238,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,262 [INFO] bug-239,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,262 [INFO] bug-240,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,262 [INFO] bug-241,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,262 [INFO] bug-242,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,262 [INFO] bug-243,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,262 [INFO] bug-244,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,262 [INFO] bug-245,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,262 [INFO] bug-246,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,262 [INFO] bug-247,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,262 [INFO] bug-248,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,262 [INFO] bug-249,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,262 [INFO] bug-250,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,262 [INFO] bug-251,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,262 [INFO] bug-252,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,262 [INFO] bug-253,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,262 [INFO] bug-254,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,262 [INFO] bug-255,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,262 [INFO] bug-256,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,263 [INFO] bug-257,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,263 [INFO] bug-258,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush + +2025-10-03 02:16:11,263 [INFO] bug-259,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,263 [INFO] bug-260,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState,TestDrainReplicationQueuesForStandBy.test + +2025-10-03 02:16:11,263 [INFO] bug-261,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,263 [INFO] bug-262,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,263 [INFO] bug-263,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards + +2025-10-03 02:16:11,263 [INFO] bug-264,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,263 [INFO] bug-265,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,263 [INFO] bug-266,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,263 [INFO] bug-267,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal + +2025-10-03 02:16:11,263 [INFO] bug-268,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,263 [INFO] bug-269,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,263 [INFO] bug-270,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,263 [INFO] bug-271,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,263 [INFO] bug-272,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,263 [INFO] bug-273,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,263 [INFO] bug-274,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,263 [INFO] bug-275,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,263 [INFO] bug-276,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,264 [INFO] bug-277,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,264 [INFO] bug-278,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,264 [INFO] bug-279,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,264 [INFO] bug-280,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,264 [INFO] bug-281,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,264 [INFO] bug-282,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush + +2025-10-03 02:16:11,264 [INFO] bug-283,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,264 [INFO] bug-284,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,264 [INFO] bug-285,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,264 [INFO] bug-286,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,264 [INFO] bug-287,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,264 [INFO] bug-288,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,264 [INFO] bug-289,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,264 [INFO] bug-290,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,264 [INFO] bug-291,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,264 [INFO] bug-292,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,264 [INFO] bug-293,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,264 [INFO] bug-294,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions + +2025-10-03 02:16:11,264 [INFO] bug-295,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,264 [INFO] bug-296,when-missing-backoff,org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection,TestClientTimeouts.testAdminTimeout + +2025-10-03 02:16:11,265 [INFO] bug-297,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,265 [INFO] bug-298,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,265 [INFO] bug-299,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,265 [INFO] bug-300,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,265 [INFO] bug-301,when-missing-backoff,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,265 [INFO] bug-302,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,265 [INFO] bug-303,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,265 [INFO] bug-304,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS + +2025-10-03 02:16:11,265 [INFO] bug-305,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,265 [INFO] bug-306,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,265 [INFO] bug-307,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,265 [INFO] bug-308,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,265 [INFO] bug-309,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,265 [INFO] bug-310,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion + +2025-10-03 02:16:11,265 [INFO] bug-311,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,265 [INFO] bug-312,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,265 [INFO] bug-313,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,265 [INFO] bug-314,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestClassLoading.testClassLoadingFromLibDirInJar + +2025-10-03 02:16:11,265 [INFO] bug-315,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,265 [INFO] bug-316,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,265 [INFO] bug-317,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,265 [INFO] bug-318,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS + +2025-10-03 02:16:11,265 [INFO] bug-319,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,265 [INFO] bug-320,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable + +2025-10-03 02:16:11,265 [INFO] bug-321,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,266 [INFO] bug-322,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test + +2025-10-03 02:16:11,266 [INFO] bug-323,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,266 [INFO] bug-324,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,266 [INFO] bug-325,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,266 [INFO] bug-326,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,266 [INFO] bug-327,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore + +2025-10-03 02:16:11,266 [INFO] bug-328,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS + +2025-10-03 02:16:11,266 [INFO] bug-329,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,266 [INFO] bug-330,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,266 [INFO] bug-331,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,266 [INFO] bug-332,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,266 [INFO] bug-333,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,266 [INFO] bug-334,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,266 [INFO] bug-335,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,266 [INFO] bug-336,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,266 [INFO] bug-337,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,266 [INFO] bug-338,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,266 [INFO] bug-339,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,266 [INFO] bug-340,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,266 [INFO] bug-341,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,266 [INFO] bug-342,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,266 [INFO] bug-343,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,266 [INFO] bug-344,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,266 [INFO] bug-345,when-missing-backoff,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testSimpleMultiple + +2025-10-03 02:16:11,266 [INFO] bug-346,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,266 [INFO] bug-347,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,266 [INFO] bug-348,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,266 [INFO] bug-349,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,266 [INFO] bug-350,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,266 [INFO] bug-351,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,266 [INFO] bug-352,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,267 [INFO] bug-353,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,267 [INFO] bug-354,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,267 [INFO] bug-355,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,267 [INFO] bug-356,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,267 [INFO] bug-357,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,267 [INFO] bug-358,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestRegionServerCrashDisableWAL.test + +2025-10-03 02:16:11,267 [INFO] bug-359,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,267 [INFO] bug-360,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,267 [INFO] bug-361,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,267 [INFO] bug-362,how-bug,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,267 [INFO] bug-363,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,267 [INFO] bug-364,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards + +2025-10-03 02:16:11,267 [INFO] bug-365,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal + +2025-10-03 02:16:11,267 [INFO] bug-366,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,267 [INFO] bug-367,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,267 [INFO] bug-368,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,267 [INFO] bug-369,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,267 [INFO] bug-370,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,267 [INFO] bug-371,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,267 [INFO] bug-372,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,267 [INFO] bug-373,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,267 [INFO] bug-374,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,267 [INFO] bug-375,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,267 [INFO] bug-376,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,267 [INFO] bug-377,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,267 [INFO] bug-378,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,267 [INFO] bug-379,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,267 [INFO] bug-380,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,267 [INFO] bug-381,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState,TestDrainReplicationQueuesForStandBy.test + +2025-10-03 02:16:11,267 [INFO] bug-382,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush + +2025-10-03 02:16:11,267 [INFO] bug-383,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,267 [INFO] bug-384,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,268 [INFO] bug-385,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,268 [INFO] bug-386,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,268 [INFO] bug-387,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,268 [INFO] bug-388,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,268 [INFO] bug-389,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,268 [INFO] bug-390,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,268 [INFO] bug-391,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,268 [INFO] bug-392,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues + +2025-10-03 02:16:11,268 [INFO] bug-393,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,268 [INFO] bug-394,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,268 [INFO] bug-395,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,268 [INFO] bug-396,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,268 [INFO] bug-397,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,268 [INFO] bug-398,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,268 [INFO] bug-399,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,268 [INFO] bug-400,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,268 [INFO] bug-401,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,268 [INFO] bug-402,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,268 [INFO] bug-403,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestRegionAssignedToMultipleRegionServers.test + +2025-10-03 02:16:11,268 [INFO] bug-404,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,268 [INFO] bug-405,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,268 [INFO] bug-406,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,268 [INFO] bug-407,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,268 [INFO] bug-408,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,268 [INFO] bug-409,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,268 [INFO] bug-410,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,268 [INFO] bug-411,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,268 [INFO] bug-412,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,268 [INFO] bug-413,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,268 [INFO] bug-414,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,268 [INFO] bug-415,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,268 [INFO] bug-416,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,268 [INFO] bug-417,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,268 [INFO] bug-418,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,269 [INFO] bug-419,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues + +2025-10-03 02:16:11,269 [INFO] bug-420,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,269 [INFO] bug-421,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,269 [INFO] bug-422,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,269 [INFO] bug-423,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,269 [INFO] bug-424,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,269 [INFO] bug-425,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,269 [INFO] bug-426,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,269 [INFO] bug-427,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster1 + +2025-10-03 02:16:11,269 [INFO] bug-428,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,269 [INFO] bug-429,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,269 [INFO] bug-430,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,269 [INFO] bug-431,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable + +2025-10-03 02:16:11,269 [INFO] bug-432,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,269 [INFO] bug-433,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,269 [INFO] bug-434,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test + +2025-10-03 02:16:11,269 [INFO] bug-435,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,269 [INFO] bug-436,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,269 [INFO] bug-437,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,269 [INFO] bug-438,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,269 [INFO] bug-439,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState,TestDrainReplicationQueuesForStandBy.test + +2025-10-03 02:16:11,269 [INFO] bug-440,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,269 [INFO] bug-441,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,269 [INFO] bug-442,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,269 [INFO] bug-443,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,269 [INFO] bug-444,when-missing-backoff,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore + +2025-10-03 02:16:11,269 [INFO] bug-445,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,269 [INFO] bug-446,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,269 [INFO] bug-447,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,269 [INFO] bug-448,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,269 [INFO] bug-449,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,269 [INFO] bug-450,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test + +2025-10-03 02:16:11,269 [INFO] bug-451,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,270 [INFO] bug-452,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,270 [INFO] bug-453,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,270 [INFO] bug-454,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,270 [INFO] bug-455,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,270 [INFO] bug-456,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,270 [INFO] bug-457,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,270 [INFO] bug-458,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,270 [INFO] bug-459,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,270 [INFO] bug-460,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,270 [INFO] bug-461,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,270 [INFO] bug-462,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,270 [INFO] bug-463,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,270 [INFO] bug-464,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,270 [INFO] bug-465,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestMetaWithReplicasShutdownHandling.testShutdownHandling + +2025-10-03 02:16:11,270 [INFO] bug-466,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings + +2025-10-03 02:16:11,270 [INFO] bug-467,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,270 [INFO] bug-468,when-missing-backoff,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,270 [INFO] bug-469,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards + +2025-10-03 02:16:11,270 [INFO] bug-470,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,270 [INFO] bug-471,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore + +2025-10-03 02:16:11,270 [INFO] bug-472,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal + +2025-10-03 02:16:11,270 [INFO] bug-473,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,270 [INFO] bug-474,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,270 [INFO] bug-475,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,270 [INFO] bug-476,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestMetaWithReplicasShutdownHandling.testShutdownHandling + +2025-10-03 02:16:11,270 [INFO] bug-477,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,270 [INFO] bug-478,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,270 [INFO] bug-479,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,270 [INFO] bug-480,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,270 [INFO] bug-481,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,270 [INFO] bug-482,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,270 [INFO] bug-483,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,270 [INFO] bug-484,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush + +2025-10-03 02:16:11,270 [INFO] bug-485,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,271 [INFO] bug-486,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,271 [INFO] bug-487,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,271 [INFO] bug-488,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,271 [INFO] bug-489,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster2 + +2025-10-03 02:16:11,271 [INFO] bug-490,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,271 [INFO] bug-491,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,271 [INFO] bug-492,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,271 [INFO] bug-493,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,271 [INFO] bug-494,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,271 [INFO] bug-495,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,271 [INFO] bug-496,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,271 [INFO] bug-497,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,271 [INFO] bug-498,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,271 [INFO] bug-499,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,271 [INFO] bug-500,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings + +2025-10-03 02:16:11,271 [INFO] bug-501,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,271 [INFO] bug-502,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,271 [INFO] bug-503,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion + +2025-10-03 02:16:11,271 [INFO] bug-504,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,271 [INFO] bug-505,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,271 [INFO] bug-506,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,271 [INFO] bug-507,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,271 [INFO] bug-508,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,271 [INFO] bug-509,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,271 [INFO] bug-510,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster3 + +2025-10-03 02:16:11,271 [INFO] bug-511,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,271 [INFO] bug-512,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,271 [INFO] bug-513,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,271 [INFO] bug-514,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,271 [INFO] bug-515,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable + +2025-10-03 02:16:11,271 [INFO] bug-516,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion + +2025-10-03 02:16:11,271 [INFO] bug-517,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,271 [INFO] bug-518,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,272 [INFO] bug-519,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,272 [INFO] bug-520,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,272 [INFO] bug-521,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,272 [INFO] bug-522,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,272 [INFO] bug-523,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,272 [INFO] bug-524,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,272 [INFO] bug-525,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,272 [INFO] bug-526,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,272 [INFO] bug-527,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,272 [INFO] bug-528,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,272 [INFO] bug-529,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,272 [INFO] bug-530,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestBulkLoadReplicationHFileRefs.testWhenExcludeCF + +2025-10-03 02:16:11,272 [INFO] bug-531,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,272 [INFO] bug-532,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,272 [INFO] bug-533,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,272 [INFO] bug-534,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings + +2025-10-03 02:16:11,272 [INFO] bug-535,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,272 [INFO] bug-536,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,272 [INFO] bug-537,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestMetaWithReplicasShutdownHandling.testShutdownHandling + +2025-10-03 02:16:11,272 [INFO] bug-538,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,272 [INFO] bug-539,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,272 [INFO] bug-540,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,272 [INFO] bug-541,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,272 [INFO] bug-542,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,272 [INFO] bug-543,how-bug,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testRollWriterForClosedWAL + +2025-10-03 02:16:11,272 [INFO] bug-544,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,272 [INFO] bug-545,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,272 [INFO] bug-546,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,272 [INFO] bug-547,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,272 [INFO] bug-548,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,272 [INFO] bug-549,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,272 [INFO] bug-550,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,272 [INFO] bug-551,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,273 [INFO] bug-552,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestMetaWithReplicasShutdownHandling.testShutdownHandling + +2025-10-03 02:16:11,273 [INFO] bug-553,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,273 [INFO] bug-554,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,273 [INFO] bug-555,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,273 [INFO] bug-556,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,273 [INFO] bug-557,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,273 [INFO] bug-558,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,273 [INFO] bug-559,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,273 [INFO] bug-560,when-missing-backoff,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS + +2025-10-03 02:16:11,273 [INFO] bug-561,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards + +2025-10-03 02:16:11,273 [INFO] bug-562,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,273 [INFO] bug-563,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal + +2025-10-03 02:16:11,273 [INFO] bug-564,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,273 [INFO] bug-565,how-bug,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,273 [INFO] bug-566,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,273 [INFO] bug-567,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,273 [INFO] bug-568,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,273 [INFO] bug-569,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,273 [INFO] bug-570,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,273 [INFO] bug-571,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,273 [INFO] bug-572,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,273 [INFO] bug-573,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,273 [INFO] bug-574,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,273 [INFO] bug-575,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,273 [INFO] bug-576,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,273 [INFO] bug-577,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,273 [INFO] bug-578,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestRegionServerCrashDisableWAL.test + +2025-10-03 02:16:11,273 [INFO] bug-579,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,273 [INFO] bug-580,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,273 [INFO] bug-581,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,273 [INFO] bug-582,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,273 [INFO] bug-583,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS + +2025-10-03 02:16:11,273 [INFO] bug-584,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,274 [INFO] bug-585,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,274 [INFO] bug-586,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile + +2025-10-03 02:16:11,274 [INFO] bug-587,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS + +2025-10-03 02:16:11,274 [INFO] bug-588,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,274 [INFO] bug-589,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,274 [INFO] bug-590,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,274 [INFO] bug-591,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion + +2025-10-03 02:16:11,274 [INFO] bug-592,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,274 [INFO] bug-593,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable + +2025-10-03 02:16:11,274 [INFO] bug-594,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,274 [INFO] bug-595,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,274 [INFO] bug-596,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings + +2025-10-03 02:16:11,274 [INFO] bug-597,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,274 [INFO] bug-598,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,274 [INFO] bug-599,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,274 [INFO] bug-600,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,274 [INFO] bug-601,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore + +2025-10-03 02:16:11,274 [INFO] bug-602,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS + +2025-10-03 02:16:11,274 [INFO] bug-603,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,274 [INFO] bug-604,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,274 [INFO] bug-605,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,274 [INFO] bug-606,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,274 [INFO] bug-607,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,274 [INFO] bug-608,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,274 [INFO] bug-609,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile + +2025-10-03 02:16:11,274 [INFO] bug-610,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,274 [INFO] bug-611,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,274 [INFO] bug-612,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,274 [INFO] bug-613,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,274 [INFO] bug-614,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,274 [INFO] bug-615,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,274 [INFO] bug-616,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,274 [INFO] bug-617,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-618,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-619,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,275 [INFO] bug-620,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-621,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-622,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,275 [INFO] bug-623,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,275 [INFO] bug-624,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-625,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,275 [INFO] bug-626,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,275 [INFO] bug-627,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion + +2025-10-03 02:16:11,275 [INFO] bug-628,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-629,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,275 [INFO] bug-630,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,275 [INFO] bug-631,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-632,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-633,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,275 [INFO] bug-634,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,275 [INFO] bug-635,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal + +2025-10-03 02:16:11,275 [INFO] bug-636,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,275 [INFO] bug-637,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,275 [INFO] bug-638,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore + +2025-10-03 02:16:11,275 [INFO] bug-639,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,275 [INFO] bug-640,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-641,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testWriteEntryCanBeNull + +2025-10-03 02:16:11,275 [INFO] bug-642,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-643,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,275 [INFO] bug-644,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,275 [INFO] bug-645,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,275 [INFO] bug-646,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-647,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,275 [INFO] bug-648,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,275 [INFO] bug-649,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-650,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,275 [INFO] bug-651,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,275 [INFO] bug-652,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,275 [INFO] bug-653,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion + +2025-10-03 02:16:11,275 [INFO] bug-654,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,275 [INFO] bug-655,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,275 [INFO] bug-656,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions + +2025-10-03 02:16:11,276 [INFO] bug-657,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,276 [INFO] bug-658,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,276 [INFO] bug-659,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,276 [INFO] bug-660,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,276 [INFO] bug-661,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,276 [INFO] bug-662,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,276 [INFO] bug-663,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,276 [INFO] bug-664,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions + +2025-10-03 02:16:11,276 [INFO] bug-665,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,276 [INFO] bug-666,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,276 [INFO] bug-667,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster1 + +2025-10-03 02:16:11,276 [INFO] bug-668,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,276 [INFO] bug-669,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,276 [INFO] bug-670,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,276 [INFO] bug-671,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,276 [INFO] bug-672,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues + +2025-10-03 02:16:11,276 [INFO] bug-673,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,276 [INFO] bug-674,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,276 [INFO] bug-675,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,276 [INFO] bug-676,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,276 [INFO] bug-677,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards + +2025-10-03 02:16:11,276 [INFO] bug-678,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,276 [INFO] bug-679,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,276 [INFO] bug-680,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,276 [INFO] bug-681,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test + +2025-10-03 02:16:11,276 [INFO] bug-682,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,276 [INFO] bug-683,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,276 [INFO] bug-684,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,276 [INFO] bug-685,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,276 [INFO] bug-686,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile + +2025-10-03 02:16:11,276 [INFO] bug-687,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,276 [INFO] bug-688,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,276 [INFO] bug-689,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,276 [INFO] bug-690,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable + +2025-10-03 02:16:11,276 [INFO] bug-691,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,276 [INFO] bug-692,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test + +2025-10-03 02:16:11,276 [INFO] bug-693,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,276 [INFO] bug-694,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,276 [INFO] bug-695,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,276 [INFO] bug-696,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,276 [INFO] bug-697,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,276 [INFO] bug-698,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,276 [INFO] bug-699,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,276 [INFO] bug-700,when-missing-backoff,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,276 [INFO] bug-701,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,276 [INFO] bug-702,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards + +2025-10-03 02:16:11,276 [INFO] bug-703,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,276 [INFO] bug-704,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,276 [INFO] bug-705,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,277 [INFO] bug-706,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestMetaWithReplicasShutdownHandling.testShutdownHandling + +2025-10-03 02:16:11,277 [INFO] bug-707,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,277 [INFO] bug-708,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,277 [INFO] bug-709,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testWALCoprocessorLoaded + +2025-10-03 02:16:11,277 [INFO] bug-710,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,277 [INFO] bug-711,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,277 [INFO] bug-712,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,277 [INFO] bug-713,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,277 [INFO] bug-714,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,277 [INFO] bug-715,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,277 [INFO] bug-716,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,277 [INFO] bug-717,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,277 [INFO] bug-718,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,277 [INFO] bug-719,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings + +2025-10-03 02:16:11,277 [INFO] bug-720,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,277 [INFO] bug-721,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts + +2025-10-03 02:16:11,277 [INFO] bug-722,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,277 [INFO] bug-723,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,277 [INFO] bug-724,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,277 [INFO] bug-725,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,277 [INFO] bug-726,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,277 [INFO] bug-727,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,277 [INFO] bug-728,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,277 [INFO] bug-729,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,277 [INFO] bug-730,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,277 [INFO] bug-731,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,277 [INFO] bug-732,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal + +2025-10-03 02:16:11,277 [INFO] bug-733,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,277 [INFO] bug-734,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,277 [INFO] bug-735,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,277 [INFO] bug-736,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,277 [INFO] bug-737,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,277 [INFO] bug-738,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions + +2025-10-03 02:16:11,277 [INFO] bug-739,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,277 [INFO] bug-740,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,277 [INFO] bug-741,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,277 [INFO] bug-742,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,277 [INFO] bug-743,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,277 [INFO] bug-744,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,277 [INFO] bug-745,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState,TestDrainReplicationQueuesForStandBy.test + +2025-10-03 02:16:11,277 [INFO] bug-746,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState,TestDrainReplicationQueuesForStandBy.test + +2025-10-03 02:16:11,277 [INFO] bug-747,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,277 [INFO] bug-748,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn + +2025-10-03 02:16:11,277 [INFO] bug-749,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,277 [INFO] bug-750,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,277 [INFO] bug-751,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,277 [INFO] bug-752,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,277 [INFO] bug-753,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,277 [INFO] bug-754,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,278 [INFO] bug-755,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment + +2025-10-03 02:16:11,278 [INFO] bug-756,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,278 [INFO] bug-757,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML + +2025-10-03 02:16:11,278 [INFO] bug-758,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot + +2025-10-03 02:16:11,278 [INFO] bug-759,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,278 [INFO] bug-760,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings + +2025-10-03 02:16:11,278 [INFO] bug-761,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,278 [INFO] bug-762,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues + +2025-10-03 02:16:11,278 [INFO] bug-763,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile + +2025-10-03 02:16:11,278 [INFO] bug-764,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN + +2025-10-03 02:16:11,278 [INFO] bug-765,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource + +2025-10-03 02:16:11,278 [INFO] bug-766,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,278 [INFO] bug-767,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,278 [INFO] bug-768,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore + +2025-10-03 02:16:11,278 [INFO] bug-769,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test + +2025-10-03 02:16:11,278 [INFO] bug-770,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,278 [INFO] bug-771,when-missing-backoff,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileVerifyingSnapshot + +2025-10-03 02:16:11,278 [INFO] bug-772,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush + +2025-10-03 02:16:11,278 [INFO] bug-773,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion + +2025-10-03 02:16:11,278 [INFO] bug-774,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,278 [INFO] bug-775,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking + +2025-10-03 02:16:11,278 [INFO] bug-776,when-missing-backoff,org.apache.hadoop.hbase.regionserver.snapshot.FlushSnapshotSubprocedure$RegionSnapshotTask.call,TestFlushSnapshotFromClient.testFlushTableSnapshotWithProcedure + +2025-10-03 02:16:11,278 [INFO] bug-777,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,278 [INFO] bug-778,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,278 [INFO] bug-779,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,278 [INFO] bug-780,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,278 [INFO] bug-781,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode + +2025-10-03 02:16:11,278 [INFO] bug-782,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel + +2025-10-03 02:16:11,278 [INFO] bug-783,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues + +2025-10-03 02:16:11,278 [INFO] bug-784,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile + +2025-10-03 02:16:11,278 [INFO] bug-785,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,278 [INFO] bug-786,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta + +2025-10-03 02:16:11,278 [INFO] bug-787,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,279 [INFO] // ----------------------------- // + Retry bugs for hbase +// ----------------------------- // +bug-1,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-2,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestRegionAssignedToMultipleRegionServers.test +bug-3,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush +bug-4,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-5,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-6,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-7,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-8,when-missing-backoff,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-9,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-10,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-11,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-12,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-13,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-14,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-15,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards +bug-16,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-17,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-18,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-19,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-20,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-21,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-22,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-23,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-24,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-25,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster2 +bug-26,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-27,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-28,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-29,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-30,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestRegionAssignedToMultipleRegionServers.test +bug-31,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-32,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal +bug-33,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFailedToCreateWALIfParentRenamed +bug-34,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-35,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-36,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-37,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore +bug-38,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-39,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-40,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-41,when-missing-backoff,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable +bug-42,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-43,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-44,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-45,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-46,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-47,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-48,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-49,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-50,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-51,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-52,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-53,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-54,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-55,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions +bug-56,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster3 +bug-57,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues +bug-58,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-59,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS +bug-60,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testRollWriterForClosedWAL +bug-61,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-62,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-63,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-64,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-65,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion +bug-66,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile +bug-67,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-68,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestClassLoading.testClassLoadingFromRelativeLibDirInJar +bug-69,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-70,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable +bug-71,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions +bug-72,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-73,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testSyncNoAppend +bug-74,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-75,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS +bug-76,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-77,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-78,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-79,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestRegionAssignedToMultipleRegionServers.test +bug-80,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-81,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-82,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-83,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-84,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore +bug-85,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-86,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-87,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-88,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-89,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-90,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-91,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-92,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-93,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-94,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-95,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState,TestDrainReplicationQueuesForStandBy.test +bug-96,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-97,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-98,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-99,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-100,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-101,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-102,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings +bug-103,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-104,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-105,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards +bug-106,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-107,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-108,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-109,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-110,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestReplicator.testReplicatorBatching +bug-111,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-112,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-113,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-114,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-115,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-116,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestReplicator.testReplicatorWithErrors +bug-117,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush +bug-118,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-119,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-120,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-121,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-122,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-123,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-124,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-125,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-126,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-127,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-128,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-129,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-130,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-131,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-132,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-133,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-134,when-missing-backoff,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-135,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-136,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues +bug-137,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-138,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-139,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-140,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-141,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-142,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-143,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestClassLoading.testClassLoadingFromHDFS +bug-144,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile +bug-145,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-146,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-147,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-148,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-149,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues +bug-150,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-151,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-152,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-153,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-154,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-155,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestBulkLoadReplicationHFileRefs.testWhenExcludeTable +bug-156,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-157,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal +bug-158,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-159,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-160,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable +bug-161,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-162,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test +bug-163,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-164,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-165,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-166,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-167,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-168,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-169,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-170,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-171,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-172,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-173,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-174,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster4 +bug-175,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-176,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test +bug-177,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-178,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-179,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-180,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush +bug-181,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-182,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-183,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards +bug-184,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal +bug-185,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-186,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-187,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-188,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-189,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-190,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-191,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-192,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestBulkLoadReplicationHFileRefs.testWhenExcludeNamespace +bug-193,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-194,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster4 +bug-195,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush +bug-196,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-197,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-198,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-199,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-200,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-201,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-202,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore +bug-203,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-204,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-205,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-206,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-207,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-208,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestReplicator.testReplicatorWithErrors +bug-209,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-210,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-211,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestMetaWithReplicasShutdownHandling.testShutdownHandling +bug-212,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestReplicator.testReplicatorBatching +bug-213,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-214,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-215,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions +bug-216,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile +bug-217,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-218,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings +bug-219,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-220,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion +bug-221,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions +bug-222,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-223,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-224,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-225,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile +bug-226,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-227,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-228,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable +bug-229,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-230,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-231,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-232,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-233,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-234,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-235,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-236,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-237,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-238,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-239,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-240,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-241,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-242,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-243,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-244,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-245,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-246,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-247,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-248,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-249,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-250,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-251,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-252,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-253,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-254,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-255,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-256,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-257,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-258,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush +bug-259,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-260,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState,TestDrainReplicationQueuesForStandBy.test +bug-261,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-262,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-263,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards +bug-264,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-265,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-266,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-267,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal +bug-268,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-269,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-270,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-271,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-272,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-273,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-274,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-275,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-276,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-277,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-278,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-279,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-280,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-281,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-282,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush +bug-283,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-284,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-285,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-286,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-287,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-288,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-289,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-290,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-291,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-292,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-293,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-294,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions +bug-295,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-296,when-missing-backoff,org.apache.hadoop.hbase.ipc.BlockingRpcConnection.setupConnection,TestClientTimeouts.testAdminTimeout +bug-297,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-298,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-299,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-300,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-301,when-missing-backoff,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-302,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-303,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-304,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS +bug-305,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-306,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-307,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-308,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-309,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-310,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion +bug-311,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-312,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-313,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-314,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestClassLoading.testClassLoadingFromLibDirInJar +bug-315,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-316,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-317,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-318,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS +bug-319,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-320,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable +bug-321,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-322,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test +bug-323,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-324,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-325,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-326,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-327,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore +bug-328,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS +bug-329,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-330,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-331,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-332,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-333,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-334,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-335,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-336,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-337,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-338,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-339,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-340,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-341,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-342,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-343,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-344,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-345,when-missing-backoff,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testSimpleMultiple +bug-346,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-347,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-348,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-349,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-350,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-351,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-352,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-353,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-354,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-355,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-356,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-357,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-358,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestRegionServerCrashDisableWAL.test +bug-359,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-360,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-361,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-362,how-bug,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-363,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-364,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards +bug-365,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal +bug-366,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-367,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-368,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-369,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-370,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-371,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-372,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-373,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-374,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-375,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-376,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-377,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-378,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-379,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-380,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-381,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState,TestDrainReplicationQueuesForStandBy.test +bug-382,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush +bug-383,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-384,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-385,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-386,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-387,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-388,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-389,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-390,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-391,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-392,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues +bug-393,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-394,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-395,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-396,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-397,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-398,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-399,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-400,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-401,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-402,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-403,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestRegionAssignedToMultipleRegionServers.test +bug-404,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-405,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-406,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-407,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-408,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-409,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-410,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-411,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-412,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-413,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-414,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-415,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-416,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-417,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-418,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-419,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues +bug-420,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-421,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-422,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-423,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-424,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-425,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-426,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-427,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster1 +bug-428,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-429,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-430,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-431,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable +bug-432,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-433,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-434,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test +bug-435,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-436,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-437,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-438,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-439,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState,TestDrainReplicationQueuesForStandBy.test +bug-440,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-441,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-442,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-443,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-444,when-missing-backoff,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore +bug-445,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-446,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-447,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-448,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-449,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-450,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test +bug-451,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-452,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-453,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-454,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-455,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-456,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-457,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-458,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-459,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-460,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-461,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-462,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-463,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-464,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-465,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestMetaWithReplicasShutdownHandling.testShutdownHandling +bug-466,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings +bug-467,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-468,when-missing-backoff,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-469,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards +bug-470,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-471,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore +bug-472,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal +bug-473,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-474,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-475,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-476,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestMetaWithReplicasShutdownHandling.testShutdownHandling +bug-477,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-478,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-479,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-480,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-481,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-482,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-483,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-484,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush +bug-485,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-486,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-487,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-488,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-489,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster2 +bug-490,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-491,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-492,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-493,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-494,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-495,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-496,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-497,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-498,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-499,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-500,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings +bug-501,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-502,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-503,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion +bug-504,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-505,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-506,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-507,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-508,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-509,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-510,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster3 +bug-511,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-512,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-513,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-514,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-515,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable +bug-516,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion +bug-517,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-518,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-519,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-520,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-521,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-522,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-523,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-524,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-525,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-526,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-527,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-528,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-529,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-530,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestBulkLoadReplicationHFileRefs.testWhenExcludeCF +bug-531,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-532,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-533,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-534,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings +bug-535,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-536,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-537,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestMetaWithReplicasShutdownHandling.testShutdownHandling +bug-538,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-539,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-540,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-541,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-542,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-543,how-bug,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testRollWriterForClosedWAL +bug-544,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-545,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-546,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-547,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-548,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-549,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-550,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-551,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-552,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestMetaWithReplicasShutdownHandling.testShutdownHandling +bug-553,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-554,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-555,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-556,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-557,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-558,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-559,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-560,when-missing-backoff,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS +bug-561,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards +bug-562,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-563,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal +bug-564,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-565,how-bug,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-566,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-567,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-568,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-569,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-570,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-571,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-572,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-573,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-574,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-575,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-576,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-577,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-578,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestRegionServerCrashDisableWAL.test +bug-579,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-580,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-581,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-582,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-583,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS +bug-584,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-585,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-586,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile +bug-587,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS +bug-588,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-589,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-590,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-591,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion +bug-592,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-593,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable +bug-594,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-595,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-596,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings +bug-597,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-598,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-599,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-600,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-601,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore +bug-602,when-missing-cap,org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState,TestSerialReplicationFailover.testKillRS +bug-603,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-604,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-605,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-606,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-607,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-608,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-609,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile +bug-610,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-611,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-612,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-613,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-614,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-615,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-616,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-617,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-618,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-619,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-620,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-621,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-622,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-623,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-624,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-625,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-626,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-627,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion +bug-628,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-629,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-630,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-631,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-632,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-633,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-634,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-635,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal +bug-636,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-637,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-638,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore +bug-639,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-640,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-641,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testWriteEntryCanBeNull +bug-642,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-643,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-644,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-645,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-646,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-647,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-648,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-649,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-650,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-651,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-652,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-653,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion +bug-654,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-655,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-656,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions +bug-657,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-658,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-659,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-660,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-661,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-662,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-663,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-664,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions +bug-665,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-666,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-667,when-missing-cap,org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub,TestTableMapReduceUtil.testInitCredentialsForCluster1 +bug-668,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-669,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-670,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-671,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-672,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues +bug-673,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-674,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-675,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-676,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-677,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards +bug-678,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-679,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-680,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-681,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test +bug-682,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-683,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-684,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-685,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-686,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile +bug-687,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-688,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-689,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-690,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestHelloHBase.testPutRowToTable +bug-691,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-692,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestZooKeeperScanPolicyObserver.test +bug-693,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-694,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-695,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-696,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-697,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-698,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-699,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-700,when-missing-backoff,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-701,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-702,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testMaxFlushedSequenceIdGoBackwards +bug-703,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-704,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-705,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-706,when-missing-cap,org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run,TestMetaWithReplicasShutdownHandling.testShutdownHandling +bug-707,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-708,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-709,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testWALCoprocessorLoaded +bug-710,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-711,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-712,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-713,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-714,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-715,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-716,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-717,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-718,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-719,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings +bug-720,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-721,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureMasterRestarts.testMasterRestarts +bug-722,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-723,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-724,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-725,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-726,when-missing-backoff,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-727,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-728,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-729,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-730,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-731,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-732,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testUnflushedSeqIdTrackingWithAsyncWal +bug-733,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-734,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-735,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-736,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-737,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-738,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestMultiVersions.testGetRowVersions +bug-739,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-740,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-741,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-742,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-743,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-744,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-745,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState,TestDrainReplicationQueuesForStandBy.test +bug-746,when-missing-cap,org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState,TestDrainReplicationQueuesForStandBy.test +bug-747,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-748,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteNonExistentColumn +bug-749,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-750,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-751,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-752,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-753,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-754,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-755,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testRegionReplicaSplitRegionAssignment +bug-756,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-757,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestDeleteRow.testDeleteXML +bug-758,when-missing-cap,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileTakingSnapshot +bug-759,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-760,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testHstsAndCspSettings +bug-761,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-762,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues +bug-763,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile +bug-764,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,UNKNOWN +bug-765,when-missing-cap,org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize,TestRefreshRecoveredReplication.testReplicationRefreshSource +bug-766,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-767,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-768,when-missing-cap,org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState,TestClientSideRegionScanner.testContinuesToScanIfHasMore +bug-769,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance,TestSyncReplicationWALProvider.test +bug-770,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-771,when-missing-backoff,org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall,TestSnapshotProcedureRSCrashes.testRegionServerCrashWhileVerifyingSnapshot +bug-772,when-missing-backoff,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFindMemStoresEligibleForFlush +bug-773,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestRegionReplicaSplit.testAssignFakeReplicaRegion +bug-774,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-775,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.setClusterId,TestRegionObserverScannerOpenHook.testRegionObserverCompactionTimeStacking +bug-776,when-missing-backoff,org.apache.hadoop.hbase.regionserver.snapshot.FlushSnapshotSubprocedure$RegionSnapshotTask.call,TestFlushSnapshotFromClient.testFlushTableSnapshotWithProcedure +bug-777,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-778,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-779,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-780,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-781,when-missing-cap,org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile,TestFanOutOneBlockAsyncDFSOutput.testExcludeFailedConnectToDatanode +bug-782,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestCompactionArchiveConcurrentClose.testStoreCloseAndDischargeRunningInParallel +bug-783,when-missing-cap,org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists,TestSecurityHeadersFilter.testDefaultValues +bug-784,when-missing-cap,org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive,AbstractTestFSWAL.testFlushSequenceIdIsGreaterThanAllEditsInHFile +bug-785,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement +bug-786,when-missing-cap,org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile,TestEnableTable.testDeleteForSureClearsAllTableRowsFromMeta +bug-787,when-missing-cap,org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos$ExceptionResponse$Builder.mergeFrom,TestAsyncTable.testIncrement + +2025-10-03 02:16:11,289 [INFO] [WASABI-HELPER]: [INFO]: Finished processing /home/cc/sosp24-ae/wasabi/../results/hbase/202510030216. Status: 0 +2025-10-03 02:16:11,361 [INFO] + +2025-10-03 02:16:11,362 [INFO] ***************** +2025-10-03 02:16:11,362 [INFO] * * +2025-10-03 02:16:11,362 [INFO] * hive: setup * +2025-10-03 02:16:11,362 [INFO] * * +2025-10-03 02:16:11,362 [INFO] ***************** + +2025-10-03 02:16:11,362 [INFO] [WASABI-HELPER]: [INFO]: Cloning hive repository from https://github.com/apache/hive.git... +2025-10-03 02:17:21,656 [INFO] [WASABI-HELPER]: [INFO]: Successfully cloned hive. +2025-10-03 02:17:21,656 [INFO] Checking out version e08a600 for hive... +2025-10-03 02:17:23,155 [INFO] [WASABI-HELPER]: [INFO]: Successfully checked out version e08a600 for hive. +2025-10-03 02:17:23,156 [INFO] + +2025-10-03 02:17:23,156 [INFO] **************************** +2025-10-03 02:17:23,156 [INFO] * * +2025-10-03 02:17:23,156 [INFO] * hive: code preparation * +2025-10-03 02:17:23,156 [INFO] * * +2025-10-03 02:17:23,156 [INFO] **************************** + +2025-10-03 02:17:23,156 [INFO] [WASABI-HELPER]: [INFO]: Renamed /home/cc/sosp24-ae/wasabi/../benchmarks/hive/pom.xml to /home/cc/sosp24-ae/wasabi/../benchmarks/hive/pom-original.xml. +2025-10-03 02:17:23,157 [INFO] [WASABI-HELPER]: [INFO]: Copied /home/cc/sosp24-ae/wasabi/../wasabi/wasabi-testing/config/hive/pom-hive.xml to /home/cc/sosp24-ae/wasabi/../benchmarks/hive/pom.xml. +2025-10-03 02:17:23,157 [INFO] [WASABI-HELPER]: [INFO]: Renamed /home/cc/sosp24-ae/wasabi/../benchmarks/hive/standalone-metastore/pom.xml to /home/cc/sosp24-ae/wasabi/../benchmarks/hive/standalone-metastore/pom-original.xml. +2025-10-03 02:17:23,157 [INFO] [WASABI-HELPER]: [INFO]: Copied /home/cc/sosp24-ae/wasabi/../wasabi/wasabi-testing/config/hive/pom-hive-standalone-metastore.xml to /home/cc/sosp24-ae/wasabi/../benchmarks/hive/standalone-metastore/pom.xml. +2025-10-03 02:17:23,794 [INFO] [WASABI-HELPER]: [INFO]: Successfully overwritten retry-related bounds. Status: 0 +2025-10-03 02:17:24,027 [INFO] [WASABI-HELPER]: [INFO]: Successfully overwritten retry-related bounds. Status: 0 +2025-10-03 02:17:24,027 [INFO] + +2025-10-03 02:17:24,027 [INFO] ************************** +2025-10-03 02:17:24,027 [INFO] * * +2025-10-03 02:17:24,027 [INFO] * hive: bug triggering * +2025-10-03 02:17:24,027 [INFO] * * +2025-10-03 02:17:24,027 [INFO] ************************** + +2025-10-03 03:06:13,717 [INFO] [WASABI-HELPER]: [INFO]: Finished running test suite for hive. Status: 0 +2025-10-03 03:06:13,718 [INFO] + +2025-10-03 03:06:13,718 [INFO] *********************** +2025-10-03 03:06:13,718 [INFO] * * +2025-10-03 03:06:13,718 [INFO] * hive: Bug oracles * +2025-10-03 03:06:13,718 [INFO] * * +2025-10-03 03:06:13,718 [INFO] *********************** + +2025-10-03 03:06:14,586 [INFO] // ----------------------------- // + +2025-10-03 03:06:14,587 [INFO] Retry bugs for hive + +2025-10-03 03:06:14,587 [INFO] // ----------------------------- // + +2025-10-03 03:06:14,587 [INFO] bug-1,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,587 [INFO] bug-2,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,587 [INFO] bug-3,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,587 [INFO] bug-4,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,587 [INFO] bug-5,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,587 [INFO] bug-6,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,587 [INFO] bug-7,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,587 [INFO] bug-8,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,587 [INFO] bug-9,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,587 [INFO] bug-10,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,587 [INFO] bug-11,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,587 [INFO] bug-12,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,587 [INFO] bug-13,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,587 [INFO] bug-14,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,588 [INFO] bug-15,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,588 [INFO] bug-16,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,588 [INFO] bug-17,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,588 [INFO] bug-18,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,588 [INFO] bug-19,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,588 [INFO] bug-20,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,588 [INFO] bug-21,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,588 [INFO] bug-22,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,588 [INFO] bug-23,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,588 [INFO] bug-24,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,588 [INFO] bug-25,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,588 [INFO] bug-26,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,588 [INFO] bug-27,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,588 [INFO] bug-28,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,588 [INFO] bug-29,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,588 [INFO] bug-30,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,588 [INFO] bug-31,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,588 [INFO] bug-32,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,588 [INFO] bug-33,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,589 [INFO] bug-34,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,589 [INFO] bug-35,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,589 [INFO] bug-36,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,589 [INFO] bug-37,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,589 [INFO] bug-38,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,589 [INFO] bug-39,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,589 [INFO] bug-40,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,589 [INFO] bug-41,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,589 [INFO] bug-42,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,589 [INFO] bug-43,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,589 [INFO] bug-44,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,589 [INFO] bug-45,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,589 [INFO] bug-46,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,589 [INFO] bug-47,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,589 [INFO] bug-48,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,589 [INFO] bug-49,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,589 [INFO] bug-50,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,589 [INFO] bug-51,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,589 [INFO] bug-52,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,589 [INFO] bug-53,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,590 [INFO] bug-54,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,590 [INFO] bug-55,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,590 [INFO] bug-56,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,590 [INFO] bug-57,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,590 [INFO] bug-58,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,590 [INFO] bug-59,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,590 [INFO] bug-60,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,590 [INFO] bug-61,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,590 [INFO] bug-62,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,590 [INFO] bug-63,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,590 [INFO] bug-64,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,590 [INFO] bug-65,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,590 [INFO] bug-66,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,590 [INFO] bug-67,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,590 [INFO] bug-68,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,590 [INFO] bug-69,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,590 [INFO] bug-70,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,590 [INFO] bug-71,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,590 [INFO] bug-72,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,590 [INFO] bug-73,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,591 [INFO] bug-74,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,591 [INFO] bug-75,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,591 [INFO] bug-76,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,591 [INFO] bug-77,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,591 [INFO] bug-78,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,591 [INFO] bug-79,when-missing-backoff,org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open,TestHCatMultiOutputFormat.testOutputFormat + +2025-10-03 03:06:14,591 [INFO] bug-80,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,591 [INFO] bug-81,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,591 [INFO] bug-82,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,591 [INFO] bug-83,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,591 [INFO] bug-84,how-bug,org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec,TestDruidStorageHandler.testCommitCreateTablePlusCommitDropTableWithPurge + +2025-10-03 03:06:14,591 [INFO] bug-85,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,591 [INFO] bug-86,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,591 [INFO] bug-87,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,591 [INFO] bug-88,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,591 [INFO] bug-89,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,591 [INFO] bug-90,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,591 [INFO] bug-91,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,591 [INFO] bug-92,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,592 [INFO] bug-93,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,592 [INFO] bug-94,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,592 [INFO] bug-95,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,592 [INFO] bug-96,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,592 [INFO] bug-97,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,592 [INFO] bug-98,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,592 [INFO] bug-99,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,592 [INFO] bug-100,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,592 [INFO] bug-101,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,592 [INFO] bug-102,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,592 [INFO] bug-103,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,592 [INFO] bug-104,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,592 [INFO] bug-105,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,592 [INFO] bug-106,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,592 [INFO] bug-107,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,592 [INFO] bug-108,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,592 [INFO] bug-109,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,592 [INFO] bug-110,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,592 [INFO] bug-111,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,592 [INFO] bug-112,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,593 [INFO] bug-113,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,593 [INFO] bug-114,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,593 [INFO] bug-115,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,593 [INFO] bug-116,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,593 [INFO] bug-117,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,593 [INFO] bug-118,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,593 [INFO] bug-119,how-bug,org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec,TestDruidStorageHandler.testCommitInsertTable + +2025-10-03 03:06:14,593 [INFO] bug-120,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,593 [INFO] bug-121,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,593 [INFO] bug-122,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,593 [INFO] bug-123,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,593 [INFO] bug-124,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,593 [INFO] bug-125,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,593 [INFO] bug-126,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,593 [INFO] bug-127,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,593 [INFO] bug-128,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,593 [INFO] bug-129,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,593 [INFO] bug-130,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,593 [INFO] bug-131,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,594 [INFO] bug-132,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,594 [INFO] bug-133,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,594 [INFO] bug-134,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,594 [INFO] bug-135,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,594 [INFO] bug-136,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,594 [INFO] bug-137,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,594 [INFO] bug-138,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,594 [INFO] bug-139,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,594 [INFO] bug-140,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,594 [INFO] bug-141,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,594 [INFO] bug-142,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,594 [INFO] bug-143,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,594 [INFO] bug-144,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,594 [INFO] bug-145,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,594 [INFO] bug-146,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,594 [INFO] bug-147,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,594 [INFO] bug-148,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,594 [INFO] bug-149,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,594 [INFO] bug-150,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,594 [INFO] bug-151,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,594 [INFO] bug-152,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,595 [INFO] bug-153,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,595 [INFO] bug-154,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,595 [INFO] bug-155,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,595 [INFO] bug-156,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,595 [INFO] bug-157,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,595 [INFO] bug-158,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,595 [INFO] bug-159,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,595 [INFO] bug-160,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,595 [INFO] bug-161,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,595 [INFO] bug-162,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReOptimizationCanSendBackStatsToCBO + +2025-10-03 03:06:14,595 [INFO] bug-163,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,595 [INFO] bug-164,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,595 [INFO] bug-165,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,595 [INFO] bug-166,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,595 [INFO] bug-167,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,595 [INFO] bug-168,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,595 [INFO] bug-169,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,595 [INFO] bug-170,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,595 [INFO] bug-171,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,596 [INFO] bug-172,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,596 [INFO] bug-173,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,596 [INFO] bug-174,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,596 [INFO] bug-175,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,596 [INFO] bug-176,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,596 [INFO] bug-177,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,596 [INFO] bug-178,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,596 [INFO] bug-179,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,596 [INFO] bug-180,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,596 [INFO] bug-181,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,596 [INFO] bug-182,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,596 [INFO] bug-183,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,596 [INFO] bug-184,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,596 [INFO] bug-185,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,596 [INFO] bug-186,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,596 [INFO] bug-187,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,596 [INFO] bug-188,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,596 [INFO] bug-189,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,596 [INFO] bug-190,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,596 [INFO] bug-191,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,597 [INFO] bug-192,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,597 [INFO] bug-193,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,597 [INFO] bug-194,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,597 [INFO] bug-195,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,597 [INFO] bug-196,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,597 [INFO] bug-197,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,597 [INFO] bug-198,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,597 [INFO] bug-199,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,597 [INFO] bug-200,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,597 [INFO] bug-201,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,597 [INFO] bug-202,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,597 [INFO] bug-203,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,597 [INFO] bug-204,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,597 [INFO] bug-205,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,597 [INFO] bug-206,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,597 [INFO] bug-207,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,597 [INFO] bug-208,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,597 [INFO] bug-209,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,597 [INFO] bug-210,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,597 [INFO] bug-211,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,598 [INFO] bug-212,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,598 [INFO] bug-213,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,598 [INFO] bug-214,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,598 [INFO] bug-215,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,598 [INFO] bug-216,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,598 [INFO] bug-217,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,598 [INFO] bug-218,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,598 [INFO] bug-219,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,598 [INFO] bug-220,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,598 [INFO] bug-221,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,598 [INFO] bug-222,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,598 [INFO] bug-223,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,598 [INFO] bug-224,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,598 [INFO] bug-225,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,598 [INFO] bug-226,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,598 [INFO] bug-227,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,598 [INFO] bug-228,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,598 [INFO] bug-229,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,598 [INFO] bug-230,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,598 [INFO] bug-231,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,598 [INFO] bug-232,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,598 [INFO] bug-233,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,598 [INFO] bug-234,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,598 [INFO] bug-235,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,598 [INFO] bug-236,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,598 [INFO] bug-237,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,599 [INFO] bug-238,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,599 [INFO] bug-239,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,599 [INFO] bug-240,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,599 [INFO] bug-241,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,599 [INFO] bug-242,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,599 [INFO] bug-243,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,599 [INFO] bug-244,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,599 [INFO] bug-245,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,599 [INFO] bug-246,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,599 [INFO] bug-247,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,599 [INFO] bug-248,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,599 [INFO] bug-249,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,599 [INFO] bug-250,how-bug,org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec,TestDruidStorageHandler.testCommitCreateTablePlusCommitDropTableWithoutPurge + +2025-10-03 03:06:14,599 [INFO] bug-251,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,599 [INFO] bug-252,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,599 [INFO] bug-253,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,599 [INFO] bug-254,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,599 [INFO] bug-255,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,599 [INFO] bug-256,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,599 [INFO] bug-257,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,599 [INFO] bug-258,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,599 [INFO] bug-259,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,599 [INFO] bug-260,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError + +2025-10-03 03:06:14,599 [INFO] bug-261,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,599 [INFO] bug-262,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,599 [INFO] bug-263,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,599 [INFO] bug-264,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched + +2025-10-03 03:06:14,599 [INFO] bug-265,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 + +2025-10-03 03:06:14,599 [INFO] bug-266,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,599 [INFO] bug-267,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,599 [INFO] bug-268,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,599 [INFO] bug-269,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,600 [INFO] bug-270,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,600 [INFO] bug-271,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,600 [INFO] bug-272,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,600 [INFO] bug-273,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,600 [INFO] bug-274,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,600 [INFO] bug-275,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport + +2025-10-03 03:06:14,600 [INFO] bug-276,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched + +2025-10-03 03:06:14,600 [INFO] bug-277,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,600 [INFO] bug-278,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,600 [INFO] bug-279,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,600 [INFO] bug-280,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,600 [INFO] bug-281,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,600 [INFO] bug-282,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,600 [INFO] bug-283,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,600 [INFO] bug-284,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 + +2025-10-03 03:06:14,600 [INFO] bug-285,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,600 [INFO] bug-286,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo + +2025-10-03 03:06:14,600 [INFO] bug-287,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,600 [INFO] bug-288,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,600 [INFO] bug-289,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery + +2025-10-03 03:06:14,600 [INFO] bug-290,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,600 [INFO] bug-291,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,600 [INFO] bug-292,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,600 [INFO] bug-293,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,600 [INFO] bug-294,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,600 [INFO] bug-295,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,600 [INFO] bug-296,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution + +2025-10-03 03:06:14,600 [INFO] bug-297,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,600 [INFO] bug-298,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,600 [INFO] bug-299,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery + +2025-10-03 03:06:14,600 [INFO] bug-300,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,600 [INFO] bug-301,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,601 [INFO] bug-302,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask + +2025-10-03 03:06:14,601 [INFO] bug-303,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,601 [INFO] bug-304,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError + +2025-10-03 03:06:14,601 [INFO] bug-305,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,601 [INFO] bug-306,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob + +2025-10-03 03:06:14,601 [INFO] bug-307,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob + +2025-10-03 03:06:14,601 [INFO] bug-308,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 + +2025-10-03 03:06:14,601 [INFO] bug-309,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore + +2025-10-03 03:06:14,601 [INFO] bug-310,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt + +2025-10-03 03:06:14,601 [INFO] bug-311,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,601 [INFO] // ----------------------------- // + Retry bugs for hive +// ----------------------------- // +bug-1,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-2,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-3,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-4,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-5,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-6,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-7,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-8,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-9,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-10,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-11,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-12,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-13,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-14,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-15,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-16,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-17,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-18,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-19,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-20,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-21,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-22,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-23,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-24,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-25,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-26,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-27,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-28,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-29,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-30,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-31,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-32,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-33,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-34,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-35,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-36,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-37,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-38,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-39,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-40,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-41,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-42,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-43,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-44,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-45,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-46,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-47,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-48,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-49,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-50,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-51,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-52,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-53,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-54,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-55,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-56,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-57,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-58,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-59,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-60,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-61,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-62,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-63,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-64,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-65,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-66,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-67,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-68,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-69,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-70,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-71,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-72,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-73,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-74,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-75,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-76,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-77,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-78,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-79,when-missing-backoff,org.apache.hadoop.hive.metastore.HiveMetaStoreClient.open,TestHCatMultiOutputFormat.testOutputFormat +bug-80,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-81,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-82,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-83,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-84,how-bug,org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec,TestDruidStorageHandler.testCommitCreateTablePlusCommitDropTableWithPurge +bug-85,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-86,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-87,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-88,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-89,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-90,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-91,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-92,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-93,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-94,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-95,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-96,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-97,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-98,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-99,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-100,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-101,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-102,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-103,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-104,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-105,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-106,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-107,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-108,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-109,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-110,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-111,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-112,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-113,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-114,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-115,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-116,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-117,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-118,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-119,how-bug,org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec,TestDruidStorageHandler.testCommitInsertTable +bug-120,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-121,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-122,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-123,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-124,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-125,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-126,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-127,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-128,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-129,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-130,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-131,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-132,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-133,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-134,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-135,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-136,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-137,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-138,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-139,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-140,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-141,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-142,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-143,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-144,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-145,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-146,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-147,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-148,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-149,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-150,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-151,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-152,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-153,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-154,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-155,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-156,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-157,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-158,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-159,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-160,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-161,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-162,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReOptimizationCanSendBackStatsToCBO +bug-163,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-164,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-165,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-166,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-167,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-168,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-169,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-170,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-171,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-172,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-173,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-174,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-175,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-176,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-177,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-178,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-179,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-180,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-181,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-182,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-183,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-184,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-185,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-186,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-187,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-188,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-189,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-190,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-191,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-192,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-193,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-194,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-195,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-196,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-197,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-198,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-199,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-200,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-201,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-202,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-203,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-204,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-205,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-206,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-207,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-208,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-209,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-210,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-211,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-212,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-213,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-214,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-215,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-216,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-217,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-218,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-219,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-220,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-221,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-222,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-223,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-224,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-225,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-226,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-227,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-228,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-229,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-230,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-231,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-232,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-233,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-234,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-235,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-236,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-237,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-238,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-239,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-240,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-241,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-242,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-243,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-244,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-245,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched +bug-246,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-247,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-248,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-249,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-250,how-bug,org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec,TestDruidStorageHandler.testCommitCreateTablePlusCommitDropTableWithoutPurge +bug-251,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-252,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-253,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-254,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-255,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-256,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-257,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-258,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-259,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-260,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testReExecutedIfMapJoinError +bug-261,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-262,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-263,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-264,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testDifferentFiltersAreNotMatched +bug-265,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched0 +bug-266,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-267,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-268,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-269,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-270,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-271,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-272,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-273,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-274,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-275,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testExplainSupport +bug-276,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameFiltersMatched +bug-277,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-278,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-279,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-280,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-281,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-282,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-283,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-284,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testUnrelatedFiltersAreNotMatched1 +bug-285,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-286,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestCounterMapping.testUsageOfRuntimeInfo +bug-287,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-288,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-289,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestHiveTestEnvSetup.testMappingSameQuery +bug-290,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-291,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-292,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-293,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-294,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-295,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-296,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestScheduledQueryService.testScheduledQueryExecution +bug-297,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-298,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-299,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingQuery +bug-300,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-301,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-302,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortTask +bug-303,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-304,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testNotReExecutedIfAssertionError +bug-305,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-306,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testSuccessfulJob +bug-307,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestTezOutputCommitter.testAbortJob +bug-308,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingHS2 +bug-309,when-missing-backoff,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatCachingMetaStore +bug-310,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestReOptimization.testStatsAreSetInReopt +bug-311,when-missing-cap,org.apache.hadoop.hive.ql.exec.tez.monitoring.TezJobMonitor.monitorExecution,TestOperatorCmp.testSameJoinMatched + +2025-10-03 03:06:14,601 [INFO] [WASABI-HELPER]: [INFO]: Finished processing /home/cc/sosp24-ae/wasabi/../results/hive/202510030306. Status: 0 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/wasabi_coverage.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/wasabi_coverage.py new file mode 100644 index 00000000..07e5ef14 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/utils/wasabi_coverage.py @@ -0,0 +1,97 @@ +import re +import os +from typing import Tuple, Optional + +def get_pointcut_coverage_breakdown(log_msg: str) -> Optional[Tuple[str, str, str, str]]: + """Extract coverage information from a given log message. + + Args: + log_msg (str): A log message in the file. + + Returns: + Tuple[str, str, str]: returns a tuple containing the relevant coverage strings. + """ + segments = log_msg.split(" | ") + + test_name = next(s.split("---")[1] for s in segments if "Test " in s) + injection_site = re.search( + r'\w+\(.*\s+(.*\(.*?\))\)', + next(s.split("---")[1] for s in segments if "Injection site " in s) + ).group(1) + injection_location = next(s.split("---")[1] for s in segments if "Injection location " in s) + retry_caller = next(s.split("---")[1] for s in segments if "Retry caller " in s) + + if test_name is not None and injection_site is not None and injection_location is not None and retry_caller is not None: + return test_name, retry_caller, injection_site, injection_location + return None + +def get_injection_coverage_breakdown(log_msg: str) -> Optional[Tuple[str, str, str, str]]: + """Extract coverage information from a given log message. + + Args: + log_msg (str): A log message in the file. + + Returns: + Tuple[str, str, str]: returns a tuple containing the relevant coverage strings. + """ + segments = log_msg.split(" | ") + + test_name = next(s.split("---")[1] for s in segments if "Test " in s) + injection_site = re.search( + r'\w+\(.*\s+(.*\(.*?\))\)', + next(s.split("---")[3] for s in segments if "thrown after calling " in s) + ).group(1) + retry_location = next(s.split("---")[1] for s in segments if "Retry location " in s) + retry_attempt = next(s.split("---")[1] for s in segments if "Retry attempt " in s) + + if test_name is not None and injection_site is not None and retry_location is not None: + return test_name, injection_site, retry_location + return None + +def main(): + pointcut_cov_methods = set() + pointcut_cov_breakdown = set() + injection_cov_methods = set() + injection_cov_breakdown = set() + + for root, _, files in os.walk('.'): + for fname in files: + if fname.endswith('-output.txt'): + with open(os.path.join(root, fname), 'r') as file: + for line in file: + if '[wasabi]' in line and '[Pointcut]' in line and "Test ---" in line: + coverage_info = get_pointcut_coverage_breakdown(line) + if coverage_info: + pointcut_cov_breakdown.add(coverage_info) + pointcut_cov_methods.add(coverage_info[2]) + else: + print("[wasabi-utils]: Malformed log line: " + line) + elif '[wasabi]' in line and '[Injection]' in line: + coverage_info = get_injection_coverage_breakdown(line) + if coverage_info: + injection_cov_breakdown.add(coverage_info) + injection_cov_methods.add(coverage_info[1]) + else: + print("[wasabi-utils]: Malformed log line: " + line) + else: + continue + + print("=== Coverage stats ===") + print("Pointcut coverage: " + str(len(pointcut_cov_methods))) + print("Injection coverage: " + str(len(injection_cov_methods))) + + print("\n\n=== Injection sites not covered ===") + for method in pointcut_cov_methods: + if method not in injection_cov_methods: + print(method) + + print("\n\n=== Pointcut covered breakdown ===") + for (_, retry_caller, injection_site, injection_location) in pointcut_cov_breakdown: + print(retry_caller + " " + injection_site + " " + injection_location) + + print("\n\n=== Injection covered breakdown ===") + for (_, injection_site, retry_location) in injection_cov_breakdown: + print(injection_site + " " + retry_location) + +if __name__ == "__main__": + main() diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/wasabi-install.log b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/wasabi-install.log new file mode 100644 index 00000000..9f154f62 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/wasabi-install.log @@ -0,0 +1,14328 @@ +[INFO] Scanning for projects... +[INFO] +[INFO] -------------------< edu.uchicago.cs.systems:wasabi >------------------- +[INFO] Building Wasabi Library 1.0.0 +[INFO] --------------------------------[ jar ]--------------------------------- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom (21 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom (31 kB at 793 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar (64 kB at 1.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (3.9 kB at 178 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 kB at 483 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 976 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 kB at 617 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 kB at 912 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 325 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom (9.2 kB at 383 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom (15 kB at 449 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 984 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom (9.8 kB at 378 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 337 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom (48 kB at 1.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom (21 kB at 863 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar (66 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom (10 kB at 455 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom (14 kB at 552 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar (30 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom (5.8 kB at 216 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar (34 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom (6.4 kB at 255 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar (27 kB at 998 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom (2.0 kB at 93 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom (1.1 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom (17 kB at 613 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom (1.6 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 932 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom (16 kB at 695 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 2.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 282 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom (26 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom (24 kB at 898 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 232 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom (3.2 kB at 145 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom (5.6 kB at 256 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom (1.7 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom (2.8 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom (1.5 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.pom (43 kB at 1.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.5/hadoop-project-dist-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.5/hadoop-project-dist-3.3.5.pom (18 kB at 745 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.5/hadoop-project-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.5/hadoop-project-3.3.5.pom (95 kB at 2.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.5/hadoop-main-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.5/hadoop-main-3.3.5.pom (29 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom (3.0 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom (16 kB at 668 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 744 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.pom (2.6 kB at 113 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom (3.0 kB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom (8.1 kB at 369 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom (10 kB at 495 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 313 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom (1.7 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 463 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 114 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 204 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 241 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom (2.5 kB at 113 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (2.8 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom (2.6 kB at 112 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom (8.6 kB at 331 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (34 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8.0 kB at 399 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 986 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 204 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom (14 kB at 609 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom (47 kB at 1.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 659 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 315 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 683 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 1.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 261 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 598 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 960 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 2.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 735 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 635 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 2.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 783 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 735 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 2.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 837 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 727 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.pom (24 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom (82 kB at 2.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom (20 kB at 970 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 282 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 539 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 2.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 700 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 644 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 239 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom (4.6 kB at 199 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom (18 kB at 787 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 kB at 527 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.pom (3.4 kB at 163 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.48.v20220622/jetty-project-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.48.v20220622/jetty-project-9.4.48.v20220622.pom (72 kB at 2.6 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom (7.2 kB at 344 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom (19 kB at 818 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom (13 kB at 634 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom (66 kB at 2.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.pom (4.0 kB at 224 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.pom (4.0 kB at 202 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.pom (1.2 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.pom (2.3 kB at 114 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.pom (2.1 kB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.pom (1.3 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.pom (3.2 kB at 144 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.pom (1.7 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom (157 B at 8.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.pom (9.7 kB at 461 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19.4/jersey-project-1.19.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19.4/jersey-project-1.19.4.pom (28 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom (7.8 kB at 369 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom (5.5 kB at 273 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.pom (9.6 kB at 457 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.pom (11 kB at 460 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.pom (13 kB at 606 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom (3.4 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom (5.3 kB at 277 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom (5.6 kB at 278 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom (962 B at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom (1.1 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 798 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 2.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.pom (16 kB at 560 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 857 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 3.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 774 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.pom (31 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/53/commons-parent-53.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/53/commons-parent-53.pom (82 kB at 2.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom (20 kB at 938 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom (17 kB at 803 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom (78 kB at 2.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 1.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 283 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom (21 kB at 905 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 144 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 641 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.pom (1.2 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.19/reload4j-1.2.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.19/reload4j-1.2.19.pom (16 kB at 770 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom (5.6 kB at 268 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom (19 kB at 827 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom (9.6 kB at 481 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom (1.3 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom (1.5 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom (1.6 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom (11 kB at 536 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom (3.4 kB at 172 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom (13 kB at 579 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom (11 kB at 489 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom (1.9 kB at 95 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom (2.7 kB at 142 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom (12 kB at 581 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom (3.6 kB at 182 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom (8.4 kB at 399 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom (8.1 kB at 384 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom (4.5 kB at 238 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.pom (8.6 kB at 409 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom (11 kB at 532 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom (5.4 kB at 271 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom (8.2 kB at 431 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom (9.9 kB at 496 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom (2.4 kB at 125 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 591 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom (9.2 kB at 416 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom (28 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom (5.7 kB at 297 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom (1.9 kB at 93 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom (6.8 kB at 338 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 kB at 803 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom (3.5 kB at 176 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom (36 kB at 1.6 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom (4.6 kB at 245 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom (1.5 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom (1.7 kB at 79 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom (15 kB at 736 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom (2.2 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom (1.5 kB at 79 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom (1.3 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 192 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 643 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom (1.3 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom (2.0 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom (1.1 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom (1.2 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom (1.7 kB at 86 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom (1.5 kB at 79 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 578 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom (1.8 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom (1.5 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom (1.2 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom (14 kB at 683 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom (491 B at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom (2.0 kB at 106 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom (8.5 kB at 236 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom (1.2 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 kB at 508 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 kB at 2.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom (1.7 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom (1.7 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom (1.5 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom (1.1 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom (3.2 kB at 154 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom (4.8 kB at 254 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom (3.5 kB at 161 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom (3.4 kB at 161 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom (60 kB at 2.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom (10 kB at 503 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom (1.6 kB at 83 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom (1.9 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom (1.6 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom (3.6 kB at 189 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom (16 kB at 797 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom (16 kB at 809 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom (1.1 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 186 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 984 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.pom (15 kB at 772 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom (9.3 kB at 464 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom (17 kB at 861 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom (7.5 kB at 376 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom (23 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom (6.0 kB at 302 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom (5.5 kB at 277 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 331 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.pom (9.7 kB at 460 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom (23 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom (6.3 kB at 314 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 kB at 950 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom (7.2 kB at 326 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom (3.5 kB at 185 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar (123 kB at 3.6 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 938 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar (63 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar (361 kB at 4.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar (15 kB at 195 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar (194 kB at 2.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar (7.7 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar (6.8 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 3.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar (100 kB at 761 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.jar (25 kB at 158 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar (1.5 MB at 9.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar (3.7 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar (4.9 MB at 27 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (2.2 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar (193 kB at 925 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (8.8 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar (3.4 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar (41 kB at 171 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar (3.4 MB at 13 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar (2.7 MB at 10 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.jar (4.5 MB at 16 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar (1.6 MB at 5.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 2.6 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar (329 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.jar (285 kB at 898 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar (44 kB at 139 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.jar (316 kB at 983 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 1.8 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (96 kB at 291 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar (183 kB at 524 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar (146 kB at 411 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar (583 kB at 1.6 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar (235 kB at 634 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar (119 kB at 317 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar (732 kB at 1.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar (68 kB at 174 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar (140 kB at 356 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar (67 kB at 169 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar (101 kB at 253 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar (46 kB at 112 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.jar (159 kB at 377 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar (68 kB at 161 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.jar (129 kB at 295 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar (437 kB at 995 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar (23 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar (105 kB at 232 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar (62 kB at 134 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar (890 kB at 1.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar (63 kB at 132 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar (332 kB at 681 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.jar (705 kB at 1.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 496 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar (9.8 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar (238 kB at 461 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar (587 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar (436 kB at 816 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.jar (633 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar (232 kB at 429 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar (30 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar (128 kB at 230 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.jar (106 kB at 188 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar (781 kB at 1.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar (533 kB at 912 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar (249 kB at 425 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar (4.7 kB at 8.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar (444 kB at 745 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar (119 kB at 200 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar (122 kB at 200 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar (20 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar (113 kB at 182 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar (29 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar (31 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar (65 kB at 102 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar (37 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar (324 kB at 503 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar (116 kB at 180 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar (19 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar (20 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar (83 kB at 124 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar (29 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar (81 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar (283 kB at 410 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar (296 kB at 424 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar (20 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.jar (250 kB at 347 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar (437 kB at 591 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.jar (985 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar (3.0 MB at 4.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar (277 kB at 364 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar (33 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar (604 kB at 784 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar (473 kB at 604 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar (318 kB at 405 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar (12 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar (124 kB at 156 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar (33 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar (490 kB at 596 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar (205 kB at 249 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar (227 kB at 272 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar (102 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar (41 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar (1.0 MB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar (196 kB at 225 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar (366 kB at 419 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar (76 kB at 87 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar (1.5 MB at 1.7 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar (308 kB at 341 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.jar (523 kB at 576 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.jar (2.0 MB at 2.1 MB/s) +[INFO] +[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 274 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 448 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 104 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom (4.1 kB at 116 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 232 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 239 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 kB at 367 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar (226 kB at 4.7 MB/s) +[INFO] +[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (2.6 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2.0 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3.0 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 249 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 86 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 159 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 196 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2.0 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (2.6 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (1.9 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (1.9 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (6.7 kB at 192 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom (1.9 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (1.8 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (1.4 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (3.9 kB at 115 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (1.7 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (2.1 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom (2.0 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 203 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom (1.3 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 92 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 95 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 479 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom (5.8 kB at 161 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 249 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 190 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 322 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom (889 B at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 167 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (2.9 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3.0 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5.0 kB at 144 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 230 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom (890 B at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom (2.8 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 429 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar (29 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar (152 kB at 6.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar (57 kB at 2.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar (116 kB at 3.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar (35 kB at 1.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar (9.9 kB at 255 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar (21 kB at 519 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar (5.9 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar (24 kB at 462 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 kB at 528 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar (37 kB at 559 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar (14 kB at 206 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 197 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 526 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar (10 kB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar (86 kB at 1.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar (49 kB at 522 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar (87 kB at 920 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 2.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (6.8 kB at 60 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar (223 kB at 1.9 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar (61 kB at 505 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar (43 kB at 353 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 984 kB/s) +[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! +[INFO] Copying 220 resources +[INFO] Copying 9 resources +[INFO] +[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 182 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 419 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 139 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 187 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 958 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 121 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 509 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom (5.0 kB at 138 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom (4.1 kB at 112 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 706 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom (2.4 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 342 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 492 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom (1.1 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom (8.4 kB at 239 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom (2.7 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 236 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom (1.1 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 172 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 714 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom (1.2 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom (1.3 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 677 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar (55 kB at 2.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 150 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 6.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 3.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar (27 kB at 587 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 6.1 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar (122 kB at 2.0 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar (267 kB at 4.5 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar (23 kB at 340 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar (4.7 kB at 58 kB/s) +[INFO] Changes detected - recompiling the module! :dependency +[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! +[INFO] Compiling 9 source files with javac [debug target 1.8] to target/classes +[INFO] +[INFO] --- aspectj-maven-plugin:1.13:compile (default) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom (2.3 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 148 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 662 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 267 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 646 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 401 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 276 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 879 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom (3.0 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom (26 kB at 714 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom (4.1 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom (5.3 kB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom (2.4 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 775 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom (4.2 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom (14 kB at 361 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 214 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 559 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom (2.6 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom (14 kB at 351 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 203 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 568 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 193 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 366 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 97 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 220 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom (4.6 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom (3.4 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom (1.4 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom (1.9 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom (2.5 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 200 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 240 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 143 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom (8.8 kB at 252 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom (1.9 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 591 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 667 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 284 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 114 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 95 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 149 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 222 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 299 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 121 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 482 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 102 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 156 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 291 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom (4.3 kB at 124 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom (2.6 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom (19 kB at 501 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom (2.7 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom (2.8 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom (4.2 kB at 124 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 113 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 406 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom (3.8 kB at 110 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom (14 kB at 394 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 161 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 135 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom (11 kB at 313 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom (16 kB at 329 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom (7.8 kB at 229 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom (10 kB at 291 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom (4.2 kB at 127 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom (1.8 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom (5.1 kB at 134 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (2.5 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (4.4 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 676 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 142 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 130 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom (1.9 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom (21 kB at 578 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom (1.6 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom (18 kB at 462 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom (1.6 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom (3.0 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5.1 kB at 149 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 307 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 429 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 157 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 495 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (18 kB at 512 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom (7.7 kB at 220 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom (14 kB at 340 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom (4.5 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 407 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 1.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 765 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 138 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 376 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom (3.4 kB at 95 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 137 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom (3.0 kB at 84 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom (2.0 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom (2.7 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom (2.0 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 86 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 236 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 83 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 169 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 302 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 357 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 645 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 411 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 467 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 206 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 177 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 4.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 4.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 4.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 172 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 4.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 93 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 315 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 4.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 4.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 295 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom (7.6 kB at 217 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 184 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 153 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 90 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 221 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (4.9 kB at 140 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom (1.5 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom (15 kB at 424 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (41 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom (1.5 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom (3.4 kB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom (14 kB at 414 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom (748 B at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom (3.8 kB at 102 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom (22 kB at 615 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (3.8 kB at 109 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom (4.1 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom (4.9 kB at 140 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom (9.4 kB at 246 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom (13 kB at 364 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom (3.0 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom (6.7 kB at 84 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom (3.0 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom (1.6 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom (2.6 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (156 B at 3.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom (9.0 kB at 251 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom (5.3 kB at 155 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom (653 B at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom (4.3 kB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom (9.8 kB at 281 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom (12 kB at 338 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom (3.4 kB at 97 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom (145 B at 4.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom (3.1 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom (2.9 kB at 83 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 121 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar (11 kB at 456 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar (47 kB at 1.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 7.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar (215 kB at 5.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar (58 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 864 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar (205 kB at 3.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 90 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 724 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar (379 kB at 4.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar (192 kB at 2.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar (288 kB at 2.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar (14 kB at 143 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar (42 kB at 379 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 237 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar (44 kB at 375 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar (38 kB at 280 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar (634 kB at 4.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar (521 kB at 3.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar (32 kB at 184 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar (14 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar (66 kB at 345 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (3.5 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar (41 kB at 207 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar (2.6 MB at 12 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar (149 kB at 672 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar (169 kB at 747 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar (27 kB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar (180 kB at 768 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 351 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar (55 kB at 222 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar (12 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar (4.2 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar (65 kB at 235 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar (12 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar (218 kB at 787 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar (183 kB at 622 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar (15 MB at 48 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar (60 kB at 193 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar (17 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar (18 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar (16 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar (237 kB at 682 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 723 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 929 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar (53 kB at 138 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 372 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 233 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 166 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 1.1 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar (165 kB at 394 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar (18 kB at 43 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 491 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 1.2 MB/s) +[INFO] Showing AJC message detail for messages of types: [error, warning, fail] +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.Balancer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:175 +(withincode(* org.apache.hadoop.hdfs.server.balancer.Balancer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.Balancer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:176 +call(* org.apache.hadoop.hdfs.server.balancer.Balancer.doBalance(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:178 +call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:180 +call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:182 +call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.removeSPSHint(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:183 +(withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:184 +call(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.getInternal(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.tools.CLI [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:185 +(withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.Cluster [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:186 +call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.tools.CLI [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:187 +(withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.Cluster [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:188 +call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:191 +(withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:192 +call(* org.apache.hadoop.mapred.ClientServiceDelegate.getProxy(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:193 +(withincode(* org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter.refreshToken(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:194 +call(* org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee.getAccessToken(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:195 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.transfer(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:197 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:199 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:201 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.Sender [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:202 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.writeBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:203 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:205 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:206 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:207 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:208 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil.checkBlockOpStatus(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiverServer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:209 +(withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiver [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:210 +call(* org.apache.hadoop.hdfs.server.datanode.DataXceiver.create(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DistributedFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:212 +call(* org.apache.hadoop.hdfs.DistributedFileSystem.recoverLease(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:213 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:214 +call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:215 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:217 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:218 +call(* org.apache.hadoop.hdfs.DFSInputStream.getLastBlockLength(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:219 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSUtilClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:220 +call(* org.apache.hadoop.hdfs.DFSUtilClient.createClientDatanodeProtocolProxy(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:221 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:222 +call(* org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol.getReplicaVisibleLength(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:223 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:224 +call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockAt(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:225 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:226 +call(* org.apache.hadoop.hdfs.DFSInputStream.chooseDataNode(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:227 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:228 +call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:229 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.ReaderStrategy [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:230 +call(* org.apache.hadoop.hdfs.ReaderStrategy.readFromBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:231 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:232 +call(* org.apache.hadoop.hdfs.DFSInputStream.seekToBlockSource(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:233 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:234 +call(* org.apache.hadoop.hdfs.DFSInputStream.seekToNewSource(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:235 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:236 +call(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:237 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:238 +call(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:239 +(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.addBlock(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:240 +call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:241 +(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.newStreamForCreate(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:242 +call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.create(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:243 +(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.completeFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:244 +call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.complete(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:245 +(withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:246 +call(* org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:247 +(withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:248 +call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.EventFetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:249 +(withincode(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.EventFetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:250 +call(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.getMapCompletionEvents(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.KeyManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:252 +call(* org.apache.hadoop.hdfs.server.balancer.KeyManager.getAccessToken(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:254 +call(* org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher.moveBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:255 +(withincode(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.runWithRetries(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:256 +call(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.run(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:257 +(withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyFromHost(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:258 +call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyMapOutput(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:263 +(withincode(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:264 +call(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJobInternal(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.JobClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:271 +(withincode(* org.apache.hadoop.mapred.JobClient.getJob(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.JobClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:272 +call(* org.apache.hadoop.mapred.JobClient.getJobInner(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.JobEndNotifier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:273 +(withincode(* org.apache.hadoop.mapred.JobEndNotifier.localRunnerNotification(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.JobEndNotifier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:274 +call(* org.apache.hadoop.mapred.JobEndNotifier.httpNotification(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.client.impl.LeaseRenewer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:275 +(withincode(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.client.impl.LeaseRenewer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:276 +call(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNativeFileSystemStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:281 +(withincode(* org.apache.hadoop.fs.cosn.CosNativeFileSystemStore.callCOSClientWithRetry(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:283 +(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:285 +(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.NativeFileSystemStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:286 +call(* org.apache.hadoop.fs.cosn.NativeFileSystemStore.retrieveBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:287 +(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:289 +(withincode(* org.apache.hadoop.fs.obs.OBSFileSystem.getFileStatus(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:290 +call(* org.apache.hadoop.fs.obs.OBSFileSystem.innerGetFileStatus(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:291 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:292 +call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:293 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:294 +call(* org.apache.hadoop.fs.obs.OBSInputStream.seekInStream(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:295 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:297 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.onReadFailure(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:298 +call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:299 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:300 +call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:301 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:302 +call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:303 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.randomReadWithNewInputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:304 +call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:305 +(withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.createEmptyObject(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:306 +call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCreateEmptyObject(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:307 +(withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.copyFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:308 +call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCopyFile(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:309 +(withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:310 +call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:311 +(withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.BufferPool [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:312 +call(* org.apache.hadoop.fs.impl.prefetch.BufferPool.acquire(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:345 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:346 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage.getRecoveryStage(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:347 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:348 +call(* org.apache.hadoop.hdfs.DFSInputStream.fetchAndCheckLocatedBlocks(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:349 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:350 +call(* org.apache.hadoop.hdfs.DFSInputStream.waitFor(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:351 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:356 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:361 +(withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:363 +(withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:365 +(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:367 +(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.YarnChild [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:369 +(withincode(* org.apache.hadoop.mapred.YarnChild.main(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:370 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.getTask(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:371 +(withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:373 +(withincode(* org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.s3a.Invoker [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:375 +(withincode(* org.apache.hadoop.fs.s3a.Invoker.retryUntranslated(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:377 +(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:379 +(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:381 +(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockListRequestInternal(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:383 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:385 +(withincode(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenCall(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:386 +call(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenSingleCall(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:389 +(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:391 +(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:393 +(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:395 +(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForNameNodeJMXValue(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:396 +call(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.fetchNameNodeJMXValue(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:417 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:419 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:421 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:423 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:425 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:426 +call(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.deleteFileWithRetries(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:429 +(withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.submitReservation(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:430 +call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.submitReservation(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:431 +(withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.getNewReservation(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:432 +call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.getNewReservation(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:433 +(withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.utils.BuilderUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:434 +call(* org.apache.hadoop.yarn.server.utils.BuilderUtils.newContainerTokenIdentifier(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:435 +(withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:439 +(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:440 +call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.shouldCheckpointBasedOnCount(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:441 +(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:442 +call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doCheckpoint(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.util.DistCpUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:444 +call(* org.apache.hadoop.tools.util.DistCpUtils.toCopyListingFileStatus(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.SimpleCopyListing [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:446 +call(* org.apache.hadoop.tools.SimpleCopyListing.addToFileListing(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.SimpleCopyListing [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:448 +call(* org.apache.hadoop.tools.SimpleCopyListing.writeToFileListing(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:449 +(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:450 +call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.getFileInfo(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:451 +(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:452 +call(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.analyseBlocksStorageMovementsAndAssignToDN(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:453 +(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:454 +call(* org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded.removeItemTrackInfo(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:455 +(withincode(* org.apache.hadoop.mapred.Task.done(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:456 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:457 +(withincode(* org.apache.hadoop.mapred.Task.statusUpdate(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:458 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:459 +(withincode(* org.apache.hadoop.mapred.Task.sendDone(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:460 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.done(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:461 +(withincode(* org.apache.hadoop.mapred.Task.commit(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:462 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.canCommit(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:464 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:466 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:467 +(withincode(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:468 +call(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:469 +(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:470 +call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:471 +(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:472 +call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:473 +(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationBaseProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:474 +call(* org.apache.hadoop.yarn.api.ApplicationBaseProtocol.getApplicationAttemptReport(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:483 +(withincode(* org.apache.hadoop.hdfs.DFSClient.renewLease(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:487 +(withincode(* org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier.getNameNodeConnector(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:489 +(withincode(* org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator.makeRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:491 +(withincode(* org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator.heartbeat(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:493 +(withincode(* org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.AMRMClientRelayer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:495 +(withincode(* org.apache.hadoop.yarn.server.AMRMClientRelayer.allocate(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: CreateOutputDirectoriesStage [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:497 +(withincode(* CreateOutputDirectoriesStage.maybeCreateOneDirectory(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.BPServiceActor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:559 +((withincode(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.BPServiceActor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:560 +call(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.connectToNNAndHandshake(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:583 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:584 +call(* org.apache.hadoop.hdfs.DataStreamer.createSocketForPipeline(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:585 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:586 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient.socketSend(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: java.io [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:589 +(withincode(* java.io.IOException(..)) && + ^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:590 +call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.openConnection(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:591 +(withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.connect(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.Sender [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:600 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.releaseShortCircuitFds(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:603 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:604 +call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:605 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:606 +call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:607 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:609 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.util.RetriableCommand [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:611 +(withincode(* org.apache.hadoop.tools.util.RetriableCommand.execute(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.util.RetriableCommand [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:612 +call(* org.apache.hadoop.tools.util.RetriableCommand.doExecute(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiverServer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:743 +((withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.net.PeerServer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:744 +call(* org.apache.hadoop.hdfs.net.PeerServer.accept(..) throws *Exception*))) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSCommonUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:803 +((withincode(* org.apache.hadoop.fs.obs.OBSCommonUtils.isFolderEmpty(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSCommonUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:804 +call(* org.apache.hadoop.fs.obs.OBSCommonUtils.innerIsFolderEmpty(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:805 +(withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:806 +call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:807 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:867 +((withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:868 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:870 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:929 +((withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:930 +call(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.processTask(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:932 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:935 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:873 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:811 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:747 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:687 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:625 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:503 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:136 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:94 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:77 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:59 + +[INFO] +[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ wasabi --- +[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! +[INFO] skip non existing resourceDirectory /home/cc/sosp24-ae/wasabi/wasabi-testing/src/test/resources +[INFO] +[INFO] --- aspectj-maven-plugin:1.13:test-compile (default) @ wasabi --- +[WARNING] No sources found skipping aspectJ compile +[INFO] +[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (1.5 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 kB at 525 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 kB at 652 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom (3.0 kB at 84 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom (2.5 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom (5.5 kB at 154 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom (1.6 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom (16 kB at 450 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (1.6 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 92 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 536 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (2.7 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (2.1 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (3.1 kB at 90 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (2.0 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (2.7 kB at 79 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (1.9 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2.0 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (7.8 kB at 229 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2.0 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (1.8 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (1.5 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (1.7 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (2.1 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (1.3 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom (3.5 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom (17 kB at 464 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom (42 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom (3.7 kB at 109 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 267 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 647 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar (35 kB at 1.6 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar (263 kB at 8.8 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar (118 kB at 3.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 348 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar (31 kB at 776 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar (316 kB at 7.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar (232 kB at 4.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 2.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 847 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 1.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 465 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 383 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 741 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 1.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar (10 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 238 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 133 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar (38 kB at 306 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 287 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar (14 kB at 101 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 1.0 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 108 kB/s) +[INFO] Tests are skipped. +[INFO] +[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom (4.5 kB at 133 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom (2.8 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom (1.7 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom (2.7 kB at 79 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 kB at 532 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom (1.0 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 284 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar (22 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar (60 kB at 2.7 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar (58 kB at 2.8 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (38 kB at 1.3 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar (184 kB at 4.2 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar (208 kB at 3.2 MB/s) +[INFO] Building jar: /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar +[INFO] +[INFO] --- maven-install-plugin:2.4:install (default-install) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom (2.5 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom (19 kB at 548 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom (1.1 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom (5.0 kB at 151 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 226 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom (7.3 kB at 220 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar (12 kB at 359 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar (230 kB at 5.1 MB/s) +[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.jar +[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/pom.xml to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.pom +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 26.355 s +[INFO] Finished at: 2025-09-20T02:08:25Z +[INFO] ------------------------------------------------------------------------ +[INFO] Scanning for projects... +[INFO] +[INFO] -------------------< edu.uchicago.cs.systems:wasabi >------------------- +[INFO] Building Wasabi Library 1.0.0 +[INFO] --------------------------------[ jar ]--------------------------------- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom (21 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom (31 kB at 297 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar (64 kB at 104 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (3.9 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 kB at 124 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 183 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 kB at 145 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 kB at 228 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom (9.2 kB at 103 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 297 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom (15 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 347 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom (9.8 kB at 104 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom (48 kB at 578 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom (21 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar (66 kB at 543 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom (10 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom (14 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar (30 kB at 260 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom (5.8 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar (34 kB at 272 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom (6.4 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar (27 kB at 245 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom (2.0 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom (1.1 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom (17 kB at 176 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom (1.6 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 243 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 8.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom (16 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 656 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom (26 kB at 373 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom (24 kB at 245 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom (3.2 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom (5.6 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom (1.7 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom (2.8 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom (1.5 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.pom (43 kB at 326 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.5/hadoop-project-dist-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.5/hadoop-project-dist-3.3.5.pom (18 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.5/hadoop-project-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.5/hadoop-project-3.3.5.pom (95 kB at 914 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.5/hadoop-main-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.5/hadoop-main-3.3.5.pom (29 kB at 265 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom (3.0 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom (16 kB at 151 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 201 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.pom (2.6 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom (3.0 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom (8.1 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom (10 kB at 91 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom (1.7 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 86 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom (2.5 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (2.8 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom (2.6 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom (8.6 kB at 96 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (34 kB at 382 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8.0 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 301 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom (14 kB at 157 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom (47 kB at 487 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 180 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 164 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 265 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 178 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 221 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 643 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 189 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 179 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 708 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 165 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 138 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 624 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 209 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 163 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.pom (24 kB at 307 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom (82 kB at 751 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom (20 kB at 234 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 674 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 121 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom (4.6 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom (18 kB at 176 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 kB at 130 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.pom (3.4 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.48.v20220622/jetty-project-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.48.v20220622/jetty-project-9.4.48.v20220622.pom (72 kB at 735 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom (7.2 kB at 79 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom (19 kB at 202 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom (13 kB at 128 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom (66 kB at 609 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.pom (4.0 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.pom (4.0 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.pom (1.2 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.pom (2.3 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.pom (2.1 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.pom (1.3 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.pom (3.2 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.pom (1.7 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom (157 B at 1.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.pom (9.7 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19.4/jersey-project-1.19.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19.4/jersey-project-1.19.4.pom (28 kB at 233 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom (7.8 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom (5.5 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.pom (9.6 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.pom (11 kB at 79 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.pom (13 kB at 127 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom (3.4 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom (5.3 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom (5.6 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom (962 B at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom (1.1 kB at 10.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 206 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 473 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.pom (16 kB at 113 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 168 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 686 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 130 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.pom (31 kB at 297 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/53/commons-parent-53.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/53/commons-parent-53.pom (82 kB at 798 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom (20 kB at 168 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom (17 kB at 192 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom (78 kB at 820 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 251 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom (21 kB at 251 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 193 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.pom (1.2 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.19/reload4j-1.2.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.19/reload4j-1.2.19.pom (16 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom (5.6 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom (19 kB at 226 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom (9.6 kB at 102 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom (1.3 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom (1.5 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom (1.6 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom (11 kB at 128 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom (3.4 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom (13 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom (11 kB at 102 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom (1.9 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom (2.7 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom (12 kB at 154 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom (3.6 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom (8.4 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom (8.1 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom (4.5 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.pom (8.6 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom (11 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom (5.4 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom (8.2 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom (9.9 kB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom (2.4 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 110 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom (9.2 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom (28 kB at 363 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom (5.7 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom (1.9 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom (6.8 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 kB at 189 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom (3.5 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom (36 kB at 133 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom (4.6 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom (1.5 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom (1.7 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom (15 kB at 196 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom (2.2 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom (1.3 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 135 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom (1.3 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom (2.0 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom (1.1 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom (1.2 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom (1.7 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom (1.5 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 153 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom (1.8 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom (1.5 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom (1.2 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom (14 kB at 163 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom (491 B at 5.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom (2.0 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom (8.5 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom (1.2 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 kB at 562 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom (1.7 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom (1.7 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom (1.1 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom (3.2 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom (4.8 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom (3.5 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom (3.4 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom (60 kB at 524 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom (10 kB at 106 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom (1.6 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom (1.9 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom (1.6 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom (3.6 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom (16 kB at 194 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom (16 kB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom (1.1 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 184 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.pom (15 kB at 163 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom (9.3 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom (17 kB at 148 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom (7.5 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom (23 kB at 251 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom (6.0 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom (5.5 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 251 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.pom (9.7 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom (23 kB at 260 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom (6.3 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 kB at 226 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom (7.2 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom (3.5 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar (63 kB at 601 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 266 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 2.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar (15 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar (361 kB at 1.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar (194 kB at 714 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar (7.7 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar (100 kB at 305 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar (6.8 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar (4.9 MB at 12 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.jar (25 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar (1.5 MB at 3.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar (3.7 kB at 6.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.jar (4.5 MB at 7.8 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar (3.4 MB at 5.6 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar (2.7 MB at 4.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (2.2 kB at 3.2 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar (193 kB at 284 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (8.8 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar (3.4 kB at 4.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar (123 kB at 156 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar (41 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar (1.6 MB at 1.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar (329 kB at 395 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 922 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.jar (285 kB at 306 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 630 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar (44 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.jar (316 kB at 328 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (96 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar (235 kB at 226 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar (183 kB at 172 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar (732 kB at 684 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar (583 kB at 539 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar (146 kB at 131 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar (119 kB at 102 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar (140 kB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar (67 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar (68 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar (437 kB at 348 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.jar (129 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar (101 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar (68 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.jar (159 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar (46 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar (890 kB at 621 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar (105 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar (23 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.jar (705 kB at 472 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar (332 kB at 216 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar (63 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar (62 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 153 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.jar (633 kB at 386 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar (587 kB at 348 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar (238 kB at 137 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar (9.8 kB at 5.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar (232 kB at 131 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar (436 kB at 245 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar (128 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar (781 kB at 423 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar (533 kB at 282 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar (30 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar (444 kB at 227 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar (249 kB at 127 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.jar (106 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar (4.7 kB at 2.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar (122 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar (119 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar (29 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar (20 kB at 9.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar (324 kB at 149 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar (31 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar (113 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar (65 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar (116 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar (37 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar (19 kB at 8.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar (81 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar (83 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar (20 kB at 8.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar (29 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar (283 kB at 116 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar (296 kB at 121 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar (3.0 MB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 8.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.jar (985 kB at 387 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar (20 kB at 8.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.jar (250 kB at 97 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar (437 kB at 169 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar (604 kB at 232 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar (473 kB at 178 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar (33 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar (318 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar (277 kB at 102 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar (33 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar (124 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar (490 kB at 176 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar (12 kB at 4.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar (102 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar (1.0 MB at 353 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar (205 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar (227 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar (41 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar (76 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar (196 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar (366 kB at 121 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar (1.5 MB at 502 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.jar (523 kB at 168 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar (308 kB at 98 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.jar (2.0 MB at 616 kB/s) +[INFO] +[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 167 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom (4.1 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 91 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 kB at 120 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar (226 kB at 1.6 MB/s) +[INFO] Deleting /home/cc/sosp24-ae/wasabi/wasabi-testing/target +[INFO] +[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (2.6 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2.0 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3.0 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 93 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 6.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2.0 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (2.6 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (1.9 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (1.9 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (6.7 kB at 92 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom (1.9 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (1.8 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (1.4 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 5.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (3.9 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (1.7 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (2.1 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom (2.0 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom (1.3 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 158 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom (5.8 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 91 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 104 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom (889 B at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (2.9 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3.0 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5.0 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom (890 B at 9.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom (2.8 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar (152 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar (116 kB at 985 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar (35 kB at 230 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar (57 kB at 329 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar (29 kB at 158 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar (9.9 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar (5.9 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar (14 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar (24 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar (21 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar (37 kB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar (87 kB at 200 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar (10 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar (49 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar (86 kB at 185 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 409 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar (223 kB at 403 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (6.8 kB at 12 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar (43 kB at 77 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar (61 kB at 106 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 206 kB/s) +[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! +[INFO] Copying 220 resources +[INFO] Copying 9 resources +[INFO] +[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 363 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 305 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 5.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 125 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom (5.0 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom (4.1 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 219 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom (2.4 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 124 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 142 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom (1.1 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom (8.4 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom (2.7 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom (1.1 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 7.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 289 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom (1.2 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom (1.3 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 140 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar (55 kB at 525 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 2.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar (27 kB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar (267 kB at 1.2 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar (122 kB at 557 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar (4.7 kB at 19 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar (23 kB at 79 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 1.1 MB/s) +[INFO] Changes detected - recompiling the module! :dependency +[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! +[INFO] Compiling 9 source files with javac [debug target 1.8] to target/classes +[INFO] +[INFO] --- aspectj-maven-plugin:1.13:compile (default) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom (2.3 kB at 6.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 300 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 284 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 149 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 323 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom (3.0 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom (26 kB at 300 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 446 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom (4.1 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom (5.3 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom (2.4 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 288 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom (4.2 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom (14 kB at 151 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 203 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 9.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 5.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom (2.6 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom (14 kB at 133 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 202 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 133 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom (4.6 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom (3.4 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom (1.4 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom (1.9 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom (2.5 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom (8.8 kB at 104 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom (1.9 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 240 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 235 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 6.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 212 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 110 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom (4.3 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom (2.6 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom (19 kB at 207 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom (2.7 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom (2.8 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom (4.2 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom (3.8 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom (14 kB at 168 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 369 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom (11 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom (16 kB at 128 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 3.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom (7.8 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom (10 kB at 97 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom (4.2 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom (1.8 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom (5.1 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (2.5 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (4.4 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 221 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 8.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom (1.9 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom (21 kB at 225 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom (1.6 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom (18 kB at 177 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom (1.6 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom (3.0 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5.1 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 303 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 159 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 223 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (18 kB at 174 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom (7.7 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom (14 kB at 142 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom (4.5 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 804 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 349 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 121 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom (3.4 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 9.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom (3.0 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom (2.0 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom (2.7 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom (2.0 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 93 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 164 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 159 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 194 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 2.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 1.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 1.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 2.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 9.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 130 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 1.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 795 B/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 103 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom (7.6 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 8.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (4.9 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom (15 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (41 kB at 373 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom (3.4 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom (14 kB at 154 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom (748 B at 6.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom (3.8 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom (22 kB at 186 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (3.8 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom (4.1 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom (4.9 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom (9.4 kB at 105 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom (13 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom (3.0 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom (6.7 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom (3.0 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom (1.6 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom (2.6 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (156 B at 1.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom (9.0 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom (5.3 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom (653 B at 6.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom (4.3 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom (9.8 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom (12 kB at 115 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom (3.4 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom (145 B at 1.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom (3.1 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom (2.9 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar (47 kB at 547 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 2.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar (11 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar (215 kB at 1.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar (58 kB at 329 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 228 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar (205 kB at 938 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 173 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar (379 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar (192 kB at 588 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar (288 kB at 868 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 6.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar (14 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar (42 kB at 96 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar (44 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar (15 MB at 32 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar (634 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar (38 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar (521 kB at 838 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 7.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar (32 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar (14 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar (2.6 MB at 3.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (3.5 kB at 4.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar (41 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar (66 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar (27 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar (149 kB at 186 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar (180 kB at 212 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar (169 kB at 197 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar (4.2 kB at 4.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar (55 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar (12 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar (65 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar (183 kB at 186 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar (218 kB at 221 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar (12 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 320 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar (60 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar (16 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 304 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar (18 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar (237 kB at 203 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar (17 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 6.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 361 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 206 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 268 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar (53 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 330 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 100 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 344 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar (18 kB at 12 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar (165 kB at 111 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 138 kB/s) +[INFO] Showing AJC message detail for messages of types: [error, warning, fail] +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.Balancer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:175 +(withincode(* org.apache.hadoop.hdfs.server.balancer.Balancer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.Balancer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:176 +call(* org.apache.hadoop.hdfs.server.balancer.Balancer.doBalance(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:178 +call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:180 +call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:182 +call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.removeSPSHint(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:183 +(withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:184 +call(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.getInternal(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.tools.CLI [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:185 +(withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.Cluster [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:186 +call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.tools.CLI [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:187 +(withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.Cluster [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:188 +call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:191 +(withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:192 +call(* org.apache.hadoop.mapred.ClientServiceDelegate.getProxy(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:193 +(withincode(* org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter.refreshToken(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:194 +call(* org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee.getAccessToken(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:195 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.transfer(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:197 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:199 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:201 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.Sender [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:202 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.writeBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:203 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:205 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:206 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:207 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:208 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil.checkBlockOpStatus(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiverServer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:209 +(withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiver [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:210 +call(* org.apache.hadoop.hdfs.server.datanode.DataXceiver.create(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DistributedFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:212 +call(* org.apache.hadoop.hdfs.DistributedFileSystem.recoverLease(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:213 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:214 +call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:215 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:217 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:218 +call(* org.apache.hadoop.hdfs.DFSInputStream.getLastBlockLength(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:219 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSUtilClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:220 +call(* org.apache.hadoop.hdfs.DFSUtilClient.createClientDatanodeProtocolProxy(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:221 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:222 +call(* org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol.getReplicaVisibleLength(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:223 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:224 +call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockAt(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:225 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:226 +call(* org.apache.hadoop.hdfs.DFSInputStream.chooseDataNode(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:227 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:228 +call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:229 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.ReaderStrategy [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:230 +call(* org.apache.hadoop.hdfs.ReaderStrategy.readFromBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:231 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:232 +call(* org.apache.hadoop.hdfs.DFSInputStream.seekToBlockSource(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:233 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:234 +call(* org.apache.hadoop.hdfs.DFSInputStream.seekToNewSource(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:235 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:236 +call(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:237 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:238 +call(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:239 +(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.addBlock(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:240 +call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:241 +(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.newStreamForCreate(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:242 +call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.create(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:243 +(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.completeFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:244 +call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.complete(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:245 +(withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:246 +call(* org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:247 +(withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:248 +call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.EventFetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:249 +(withincode(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.EventFetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:250 +call(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.getMapCompletionEvents(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.KeyManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:252 +call(* org.apache.hadoop.hdfs.server.balancer.KeyManager.getAccessToken(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:254 +call(* org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher.moveBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:255 +(withincode(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.runWithRetries(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:256 +call(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.run(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:257 +(withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyFromHost(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:258 +call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyMapOutput(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:263 +(withincode(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:264 +call(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJobInternal(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.JobClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:271 +(withincode(* org.apache.hadoop.mapred.JobClient.getJob(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.JobClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:272 +call(* org.apache.hadoop.mapred.JobClient.getJobInner(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.JobEndNotifier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:273 +(withincode(* org.apache.hadoop.mapred.JobEndNotifier.localRunnerNotification(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.JobEndNotifier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:274 +call(* org.apache.hadoop.mapred.JobEndNotifier.httpNotification(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.client.impl.LeaseRenewer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:275 +(withincode(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.client.impl.LeaseRenewer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:276 +call(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNativeFileSystemStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:281 +(withincode(* org.apache.hadoop.fs.cosn.CosNativeFileSystemStore.callCOSClientWithRetry(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:283 +(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:285 +(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.NativeFileSystemStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:286 +call(* org.apache.hadoop.fs.cosn.NativeFileSystemStore.retrieveBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:287 +(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:289 +(withincode(* org.apache.hadoop.fs.obs.OBSFileSystem.getFileStatus(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:290 +call(* org.apache.hadoop.fs.obs.OBSFileSystem.innerGetFileStatus(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:291 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:292 +call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:293 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:294 +call(* org.apache.hadoop.fs.obs.OBSInputStream.seekInStream(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:295 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:297 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.onReadFailure(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:298 +call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:299 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:300 +call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:301 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:302 +call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:303 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.randomReadWithNewInputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:304 +call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:305 +(withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.createEmptyObject(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:306 +call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCreateEmptyObject(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:307 +(withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.copyFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:308 +call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCopyFile(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:309 +(withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:310 +call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:311 +(withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.BufferPool [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:312 +call(* org.apache.hadoop.fs.impl.prefetch.BufferPool.acquire(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:345 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:346 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage.getRecoveryStage(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:347 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:348 +call(* org.apache.hadoop.hdfs.DFSInputStream.fetchAndCheckLocatedBlocks(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:349 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:350 +call(* org.apache.hadoop.hdfs.DFSInputStream.waitFor(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:351 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:356 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:361 +(withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:363 +(withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:365 +(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:367 +(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.YarnChild [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:369 +(withincode(* org.apache.hadoop.mapred.YarnChild.main(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:370 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.getTask(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:371 +(withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:373 +(withincode(* org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.s3a.Invoker [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:375 +(withincode(* org.apache.hadoop.fs.s3a.Invoker.retryUntranslated(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:377 +(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:379 +(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:381 +(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockListRequestInternal(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:383 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:385 +(withincode(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenCall(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:386 +call(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenSingleCall(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:389 +(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:391 +(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:393 +(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:395 +(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForNameNodeJMXValue(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:396 +call(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.fetchNameNodeJMXValue(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:417 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:419 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:421 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:423 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:425 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:426 +call(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.deleteFileWithRetries(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:429 +(withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.submitReservation(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:430 +call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.submitReservation(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:431 +(withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.getNewReservation(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:432 +call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.getNewReservation(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:433 +(withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.utils.BuilderUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:434 +call(* org.apache.hadoop.yarn.server.utils.BuilderUtils.newContainerTokenIdentifier(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:435 +(withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:439 +(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:440 +call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.shouldCheckpointBasedOnCount(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:441 +(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:442 +call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doCheckpoint(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.util.DistCpUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:444 +call(* org.apache.hadoop.tools.util.DistCpUtils.toCopyListingFileStatus(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.SimpleCopyListing [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:446 +call(* org.apache.hadoop.tools.SimpleCopyListing.addToFileListing(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.SimpleCopyListing [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:448 +call(* org.apache.hadoop.tools.SimpleCopyListing.writeToFileListing(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:449 +(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:450 +call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.getFileInfo(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:451 +(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:452 +call(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.analyseBlocksStorageMovementsAndAssignToDN(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:453 +(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:454 +call(* org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded.removeItemTrackInfo(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:455 +(withincode(* org.apache.hadoop.mapred.Task.done(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:456 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:457 +(withincode(* org.apache.hadoop.mapred.Task.statusUpdate(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:458 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:459 +(withincode(* org.apache.hadoop.mapred.Task.sendDone(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:460 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.done(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:461 +(withincode(* org.apache.hadoop.mapred.Task.commit(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:462 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.canCommit(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:464 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:466 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:467 +(withincode(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:468 +call(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:469 +(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:470 +call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:471 +(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:472 +call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:473 +(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationBaseProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:474 +call(* org.apache.hadoop.yarn.api.ApplicationBaseProtocol.getApplicationAttemptReport(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:483 +(withincode(* org.apache.hadoop.hdfs.DFSClient.renewLease(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:487 +(withincode(* org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier.getNameNodeConnector(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:489 +(withincode(* org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator.makeRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:491 +(withincode(* org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator.heartbeat(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:493 +(withincode(* org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.AMRMClientRelayer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:495 +(withincode(* org.apache.hadoop.yarn.server.AMRMClientRelayer.allocate(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: CreateOutputDirectoriesStage [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:497 +(withincode(* CreateOutputDirectoriesStage.maybeCreateOneDirectory(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.BPServiceActor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:559 +((withincode(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.BPServiceActor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:560 +call(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.connectToNNAndHandshake(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:583 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:584 +call(* org.apache.hadoop.hdfs.DataStreamer.createSocketForPipeline(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:585 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:586 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient.socketSend(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: java.io [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:589 +(withincode(* java.io.IOException(..)) && + ^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:590 +call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.openConnection(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:591 +(withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.connect(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.Sender [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:600 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.releaseShortCircuitFds(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:603 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:604 +call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:605 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:606 +call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:607 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:609 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.util.RetriableCommand [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:611 +(withincode(* org.apache.hadoop.tools.util.RetriableCommand.execute(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.util.RetriableCommand [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:612 +call(* org.apache.hadoop.tools.util.RetriableCommand.doExecute(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiverServer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:743 +((withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.net.PeerServer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:744 +call(* org.apache.hadoop.hdfs.net.PeerServer.accept(..) throws *Exception*))) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSCommonUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:803 +((withincode(* org.apache.hadoop.fs.obs.OBSCommonUtils.isFolderEmpty(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSCommonUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:804 +call(* org.apache.hadoop.fs.obs.OBSCommonUtils.innerIsFolderEmpty(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:805 +(withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:806 +call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:807 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:867 +((withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:868 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:870 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:929 +((withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:930 +call(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.processTask(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:932 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:935 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:873 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:811 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:747 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:687 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:625 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:503 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:136 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:94 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:77 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:59 + +[INFO] +[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ wasabi --- +[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! +[INFO] skip non existing resourceDirectory /home/cc/sosp24-ae/wasabi/wasabi-testing/src/test/resources +[INFO] +[INFO] --- aspectj-maven-plugin:1.13:test-compile (default) @ wasabi --- +[WARNING] No sources found skipping aspectJ compile +[INFO] +[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (1.5 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 kB at 210 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 kB at 174 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom (3.0 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom (2.5 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom (5.5 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom (1.6 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom (16 kB at 188 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (1.6 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 208 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (2.7 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (2.1 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (3.1 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (2.0 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (2.7 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (1.9 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2.0 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (7.8 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2.0 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (1.8 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (1.7 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (2.1 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (1.3 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom (3.5 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom (17 kB at 148 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom (42 kB at 385 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom (3.7 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 92 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 192 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar (35 kB at 408 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar (263 kB at 1.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar (316 kB at 1.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar (118 kB at 603 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar (31 kB at 158 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar (232 kB at 1.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 385 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 125 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 403 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 185 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 371 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 198 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar (10 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar (38 kB at 71 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 18 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 24 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 65 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar (14 kB at 23 kB/s) +[INFO] Tests are skipped. +[INFO] +[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom (4.5 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom (2.8 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom (1.7 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom (2.7 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 kB at 248 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom (1.0 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (38 kB at 379 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar (60 kB at 605 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar (184 kB at 1.7 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar (22 kB at 190 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar (58 kB at 432 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar (208 kB at 1.1 MB/s) +[INFO] Building jar: /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar +[INFO] +[INFO] --- maven-install-plugin:2.4:install (default-install) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom (2.5 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom (19 kB at 252 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom (1.1 kB at 8.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom (5.0 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom (7.3 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar (230 kB at 3.0 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar (12 kB at 95 kB/s) +[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.jar +[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/pom.xml to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.pom +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 01:11 min +[INFO] Finished at: 2025-10-02T21:49:48Z +[INFO] ------------------------------------------------------------------------ +[INFO] Scanning for projects... +[INFO] +[INFO] -------------------< edu.uchicago.cs.systems:wasabi >------------------- +[INFO] Building Wasabi Library 1.0.0 +[INFO] --------------------------------[ jar ]--------------------------------- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom (21 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom (31 kB at 260 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar (64 kB at 555 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (3.9 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 kB at 97 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 214 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 kB at 144 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 kB at 220 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom (9.2 kB at 105 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 338 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom (15 kB at 168 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 317 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom (9.8 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom (48 kB at 558 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom (21 kB at 216 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar (66 kB at 677 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom (10 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom (14 kB at 115 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar (30 kB at 224 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom (5.8 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar (34 kB at 318 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom (6.4 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar (27 kB at 275 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom (2.0 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom (1.1 kB at 9.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom (17 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom (1.6 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 211 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 8.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom (16 kB at 157 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 950 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom (26 kB at 241 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom (24 kB at 276 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom (3.2 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom (5.6 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom (1.7 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom (2.8 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom (1.5 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.pom (43 kB at 581 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.5/hadoop-project-dist-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.5/hadoop-project-dist-3.3.5.pom (18 kB at 194 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.5/hadoop-project-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.5/hadoop-project-3.3.5.pom (95 kB at 1.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.5/hadoop-main-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.5/hadoop-main-3.3.5.pom (29 kB at 317 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom (3.0 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom (16 kB at 174 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 194 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.pom (2.6 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom (3.0 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom (8.1 kB at 96 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom (10 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 83 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom (1.7 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 127 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom (2.5 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (2.8 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom (2.6 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom (8.6 kB at 93 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (34 kB at 378 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8.0 kB at 91 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 316 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom (14 kB at 197 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom (47 kB at 459 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 150 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 79 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 167 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 324 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 133 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 164 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 528 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 173 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 179 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 849 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 203 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 195 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 236 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 193 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.pom (24 kB at 289 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom (82 kB at 881 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom (20 kB at 234 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 139 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 712 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 164 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 139 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom (4.6 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom (18 kB at 258 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.pom (3.4 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.48.v20220622/jetty-project-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.48.v20220622/jetty-project-9.4.48.v20220622.pom (72 kB at 692 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom (7.2 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom (19 kB at 211 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom (13 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom (66 kB at 731 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.pom (4.0 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.pom (4.0 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.pom (1.2 kB at 8.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.pom (2.3 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.pom (2.1 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.pom (1.3 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.pom (3.2 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.pom (1.7 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom (157 B at 1.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.pom (9.7 kB at 86 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19.4/jersey-project-1.19.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19.4/jersey-project-1.19.4.pom (28 kB at 248 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom (7.8 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom (5.5 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.pom (9.6 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.pom (11 kB at 103 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.pom (13 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom (3.4 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom (5.3 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom (5.6 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom (962 B at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom (1.1 kB at 8.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 170 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 401 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.pom (16 kB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 188 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 982 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 209 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.pom (31 kB at 349 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/53/commons-parent-53.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/53/commons-parent-53.pom (82 kB at 956 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom (20 kB at 229 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom (17 kB at 124 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom (78 kB at 886 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 258 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom (21 kB at 231 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 170 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.pom (1.2 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.19/reload4j-1.2.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.19/reload4j-1.2.19.pom (16 kB at 207 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom (5.6 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom (19 kB at 216 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom (9.6 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom (1.3 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom (1.5 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom (1.6 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom (11 kB at 94 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom (3.4 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom (13 kB at 125 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom (11 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom (1.9 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom (2.7 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom (12 kB at 84 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom (3.6 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom (8.4 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom (8.1 kB at 79 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom (4.5 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.pom (8.6 kB at 109 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom (11 kB at 106 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom (5.4 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom (8.2 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom (9.9 kB at 106 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom (2.4 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom (9.2 kB at 103 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom (28 kB at 298 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom (5.7 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom (1.9 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom (6.8 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 kB at 185 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom (3.5 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom (36 kB at 357 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom (4.6 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom (1.5 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom (1.7 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom (15 kB at 189 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom (2.2 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom (1.5 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom (1.3 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 150 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom (1.3 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom (2.0 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom (1.1 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom (1.2 kB at 6.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom (1.7 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom (1.5 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 166 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom (1.8 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom (1.5 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom (1.2 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom (14 kB at 146 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom (491 B at 5.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom (2.0 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom (8.5 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom (1.2 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 kB at 105 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 kB at 627 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom (1.7 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom (1.7 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom (1.5 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom (1.1 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom (3.2 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom (4.8 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom (3.5 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom (3.4 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom (60 kB at 390 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom (10 kB at 106 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom (1.6 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom (1.9 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom (1.6 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom (3.6 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom (16 kB at 136 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom (16 kB at 190 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom (1.1 kB at 9.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 253 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 201 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.pom (15 kB at 134 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom (9.3 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom (17 kB at 203 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom (7.5 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom (23 kB at 251 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom (6.0 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom (5.5 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 303 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.pom (9.7 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom (23 kB at 208 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom (6.3 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 kB at 256 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom (7.2 kB at 90 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom (3.5 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar (123 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar (63 kB at 411 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar (15 kB at 92 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 2.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 237 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar (361 kB at 1.8 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar (194 kB at 717 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar (7.7 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar (6.8 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar (100 kB at 345 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar (1.5 MB at 3.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar (4.9 MB at 12 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.jar (25 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.jar (4.5 MB at 9.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar (3.7 kB at 7.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (2.2 kB at 4.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar (2.7 MB at 5.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar (3.4 MB at 5.8 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar (193 kB at 330 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (8.8 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar (41 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar (3.4 kB at 5.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar (329 kB at 468 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar (1.6 MB at 2.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.jar (316 kB at 417 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.jar (285 kB at 362 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (96 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar (44 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 699 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar (732 kB at 822 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar (183 kB at 202 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar (235 kB at 255 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar (583 kB at 618 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar (146 kB at 154 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar (140 kB at 138 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar (67 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar (119 kB at 115 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar (68 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar (101 kB at 96 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar (68 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar (46 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.jar (129 kB at 113 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.jar (159 kB at 139 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar (437 kB at 377 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar (23 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar (890 kB at 709 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar (105 kB at 83 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.jar (705 kB at 550 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar (62 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar (63 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar (332 kB at 243 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 178 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.jar (633 kB at 448 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar (587 kB at 416 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar (238 kB at 162 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar (9.8 kB at 6.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar (232 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar (436 kB at 284 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar (781 kB at 505 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar (30 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar (128 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar (533 kB at 328 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar (249 kB at 153 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.jar (106 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar (4.7 kB at 2.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar (29 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar (119 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar (444 kB at 250 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar (20 kB at 11 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar (122 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar (113 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar (324 kB at 178 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar (31 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar (116 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar (19 kB at 9.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar (65 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar (37 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar (81 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar (29 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar (83 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar (20 kB at 9.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar (283 kB at 139 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 9.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar (296 kB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.jar (250 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar (20 kB at 9.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.jar (985 kB at 452 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar (437 kB at 196 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar (604 kB at 267 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar (3.0 MB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar (473 kB at 208 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar (277 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar (33 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar (124 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar (318 kB at 135 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar (33 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar (12 kB at 5.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar (490 kB at 201 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar (205 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar (1.0 MB at 407 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar (102 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar (227 kB at 90 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar (41 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar (366 kB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar (196 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.jar (523 kB at 197 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar (76 kB at 28 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar (1.5 MB at 557 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar (308 kB at 113 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.jar (2.0 MB at 666 kB/s) +[INFO] +[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 181 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom (4.1 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 kB at 137 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar (226 kB at 2.1 MB/s) +[INFO] Deleting /home/cc/sosp24-ae/wasabi/wasabi-testing/target +[INFO] +[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (2.6 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2.0 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3.0 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 97 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 5.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 94 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2.0 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (2.6 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (1.9 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (1.9 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (6.7 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom (1.9 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (1.8 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (1.4 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 4.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (3.9 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (1.7 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (2.1 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom (2.0 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom (1.3 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 175 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom (5.8 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 90 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 104 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 143 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom (889 B at 9.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (2.9 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3.0 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5.0 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 83 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom (890 B at 9.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom (2.8 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 161 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar (116 kB at 1.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar (152 kB at 1.8 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar (57 kB at 601 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar (29 kB at 230 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar (35 kB at 257 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar (21 kB at 131 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar (9.9 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar (5.9 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar (24 kB at 125 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 kB at 127 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar (37 kB at 151 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar (14 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 136 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar (49 kB at 150 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar (87 kB at 262 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar (86 kB at 242 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar (10 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 479 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar (223 kB at 526 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 268 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar (43 kB at 94 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (6.8 kB at 14 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar (61 kB at 122 kB/s) +[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! +[INFO] Copying 220 resources +[INFO] Copying 9 resources +[INFO] +[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 451 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 343 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 8.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 175 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom (5.0 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom (4.1 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 314 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom (2.4 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 139 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 180 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom (1.1 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom (8.4 kB at 112 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom (2.7 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom (1.1 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 8.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 238 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom (1.2 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom (1.3 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar (55 kB at 728 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 1.6 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 1.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar (122 kB at 688 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 1.7 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar (27 kB at 122 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar (23 kB at 87 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar (4.7 kB at 15 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar (267 kB at 772 kB/s) +[INFO] Changes detected - recompiling the module! :dependency +[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! +[INFO] Compiling 9 source files with javac [debug target 1.8] to target/classes +[INFO] +[INFO] --- aspectj-maven-plugin:1.13:compile (default) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom (2.3 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 203 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 199 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 136 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 290 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom (3.0 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom (26 kB at 213 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 508 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom (4.1 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom (5.3 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom (2.4 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 268 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom (4.2 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom (14 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 150 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 9.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 7.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom (2.6 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom (14 kB at 147 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 209 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 114 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 93 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom (4.6 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom (3.4 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom (1.4 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom (1.9 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom (2.5 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom (8.8 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom (1.9 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 206 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 289 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 132 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 114 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 6.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom (4.3 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom (2.6 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom (19 kB at 173 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom (2.7 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom (2.8 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom (4.2 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom (3.8 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom (14 kB at 145 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 498 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom (11 kB at 97 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom (16 kB at 163 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 5.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom (7.8 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom (10 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom (4.2 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom (1.8 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom (5.1 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (2.5 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (4.4 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 196 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 6.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom (1.9 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom (21 kB at 220 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom (1.6 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom (18 kB at 192 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom (1.6 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom (3.0 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5.1 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 269 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 110 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 205 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (18 kB at 175 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom (7.7 kB at 84 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom (14 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom (4.5 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 609 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 201 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 110 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom (3.4 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 7.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom (3.0 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom (2.0 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom (2.7 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom (2.0 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 228 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 104 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 190 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 1.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 1.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 1.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 5.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 1.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 6.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 1.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 1.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 102 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom (7.6 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 7.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (4.9 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom (1.5 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom (15 kB at 153 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (41 kB at 342 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom (3.4 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom (14 kB at 156 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom (748 B at 7.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom (3.8 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom (22 kB at 231 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (3.8 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom (4.1 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom (4.9 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom (9.4 kB at 111 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom (13 kB at 137 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom (3.0 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom (6.7 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom (3.0 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom (1.6 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom (2.6 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 7.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (156 B at 1.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom (9.0 kB at 91 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom (5.3 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom (653 B at 7.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom (4.3 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom (9.8 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom (12 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom (3.4 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom (145 B at 1.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom (3.1 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom (2.9 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar (215 kB at 2.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar (11 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar (47 kB at 354 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 1.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar (58 kB at 301 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 211 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar (205 kB at 831 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 180 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar (379 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar (288 kB at 803 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 6.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar (192 kB at 464 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar (14 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar (44 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar (42 kB at 93 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar (38 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar (634 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar (15 MB at 26 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 7.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar (14 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar (521 kB at 785 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar (32 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar (2.6 MB at 3.8 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (3.5 kB at 5.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar (66 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar (27 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar (149 kB at 190 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar (169 kB at 203 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar (180 kB at 212 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar (41 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar (4.2 kB at 4.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar (55 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar (12 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar (12 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar (218 kB at 221 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar (65 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar (183 kB at 179 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 314 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar (16 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 300 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar (17 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar (60 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar (18 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 6.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar (237 kB at 197 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 205 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 112 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 350 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 265 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 362 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar (53 kB at 38 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar (18 kB at 13 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 325 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 141 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar (165 kB at 112 kB/s) +[INFO] Showing AJC message detail for messages of types: [error, warning, fail] +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.Balancer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:175 +(withincode(* org.apache.hadoop.hdfs.server.balancer.Balancer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.Balancer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:176 +call(* org.apache.hadoop.hdfs.server.balancer.Balancer.doBalance(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:178 +call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:180 +call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:182 +call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.removeSPSHint(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:183 +(withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:184 +call(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.getInternal(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.tools.CLI [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:185 +(withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.Cluster [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:186 +call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.tools.CLI [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:187 +(withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.Cluster [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:188 +call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:191 +(withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:192 +call(* org.apache.hadoop.mapred.ClientServiceDelegate.getProxy(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:193 +(withincode(* org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter.refreshToken(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:194 +call(* org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee.getAccessToken(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:195 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.transfer(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:197 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:199 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:201 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.Sender [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:202 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.writeBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:203 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:205 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:206 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:207 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:208 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil.checkBlockOpStatus(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiverServer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:209 +(withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiver [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:210 +call(* org.apache.hadoop.hdfs.server.datanode.DataXceiver.create(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DistributedFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:212 +call(* org.apache.hadoop.hdfs.DistributedFileSystem.recoverLease(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:213 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:214 +call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:215 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:217 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:218 +call(* org.apache.hadoop.hdfs.DFSInputStream.getLastBlockLength(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:219 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSUtilClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:220 +call(* org.apache.hadoop.hdfs.DFSUtilClient.createClientDatanodeProtocolProxy(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:221 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:222 +call(* org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol.getReplicaVisibleLength(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:223 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:224 +call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockAt(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:225 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:226 +call(* org.apache.hadoop.hdfs.DFSInputStream.chooseDataNode(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:227 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:228 +call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:229 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.ReaderStrategy [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:230 +call(* org.apache.hadoop.hdfs.ReaderStrategy.readFromBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:231 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:232 +call(* org.apache.hadoop.hdfs.DFSInputStream.seekToBlockSource(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:233 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:234 +call(* org.apache.hadoop.hdfs.DFSInputStream.seekToNewSource(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:235 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:236 +call(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:237 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:238 +call(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:239 +(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.addBlock(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:240 +call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:241 +(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.newStreamForCreate(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:242 +call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.create(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:243 +(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.completeFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:244 +call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.complete(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:245 +(withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:246 +call(* org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:247 +(withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:248 +call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.EventFetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:249 +(withincode(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.EventFetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:250 +call(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.getMapCompletionEvents(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.KeyManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:252 +call(* org.apache.hadoop.hdfs.server.balancer.KeyManager.getAccessToken(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:254 +call(* org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher.moveBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:255 +(withincode(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.runWithRetries(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:256 +call(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.run(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:257 +(withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyFromHost(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:258 +call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyMapOutput(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:263 +(withincode(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:264 +call(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJobInternal(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.JobClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:271 +(withincode(* org.apache.hadoop.mapred.JobClient.getJob(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.JobClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:272 +call(* org.apache.hadoop.mapred.JobClient.getJobInner(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.JobEndNotifier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:273 +(withincode(* org.apache.hadoop.mapred.JobEndNotifier.localRunnerNotification(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.JobEndNotifier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:274 +call(* org.apache.hadoop.mapred.JobEndNotifier.httpNotification(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.client.impl.LeaseRenewer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:275 +(withincode(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.client.impl.LeaseRenewer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:276 +call(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNativeFileSystemStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:281 +(withincode(* org.apache.hadoop.fs.cosn.CosNativeFileSystemStore.callCOSClientWithRetry(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:283 +(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:285 +(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.NativeFileSystemStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:286 +call(* org.apache.hadoop.fs.cosn.NativeFileSystemStore.retrieveBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:287 +(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:289 +(withincode(* org.apache.hadoop.fs.obs.OBSFileSystem.getFileStatus(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:290 +call(* org.apache.hadoop.fs.obs.OBSFileSystem.innerGetFileStatus(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:291 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:292 +call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:293 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:294 +call(* org.apache.hadoop.fs.obs.OBSInputStream.seekInStream(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:295 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:297 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.onReadFailure(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:298 +call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:299 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:300 +call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:301 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:302 +call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:303 +(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.randomReadWithNewInputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:304 +call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:305 +(withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.createEmptyObject(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:306 +call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCreateEmptyObject(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:307 +(withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.copyFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:308 +call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCopyFile(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:309 +(withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:310 +call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:311 +(withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.BufferPool [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:312 +call(* org.apache.hadoop.fs.impl.prefetch.BufferPool.acquire(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:345 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:346 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage.getRecoveryStage(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:347 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:348 +call(* org.apache.hadoop.hdfs.DFSInputStream.fetchAndCheckLocatedBlocks(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:349 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:350 +call(* org.apache.hadoop.hdfs.DFSInputStream.waitFor(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:351 +(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:356 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:361 +(withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:363 +(withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:365 +(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:367 +(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.YarnChild [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:369 +(withincode(* org.apache.hadoop.mapred.YarnChild.main(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:370 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.getTask(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:371 +(withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:373 +(withincode(* org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.s3a.Invoker [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:375 +(withincode(* org.apache.hadoop.fs.s3a.Invoker.retryUntranslated(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:377 +(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:379 +(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:381 +(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockListRequestInternal(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:383 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:385 +(withincode(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenCall(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:386 +call(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenSingleCall(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:389 +(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:391 +(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:393 +(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:395 +(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForNameNodeJMXValue(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:396 +call(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.fetchNameNodeJMXValue(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:417 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:419 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:421 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:423 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:425 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:426 +call(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.deleteFileWithRetries(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:429 +(withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.submitReservation(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:430 +call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.submitReservation(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:431 +(withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.getNewReservation(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:432 +call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.getNewReservation(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:433 +(withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.utils.BuilderUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:434 +call(* org.apache.hadoop.yarn.server.utils.BuilderUtils.newContainerTokenIdentifier(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:435 +(withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:439 +(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:440 +call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.shouldCheckpointBasedOnCount(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:441 +(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:442 +call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doCheckpoint(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.util.DistCpUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:444 +call(* org.apache.hadoop.tools.util.DistCpUtils.toCopyListingFileStatus(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.SimpleCopyListing [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:446 +call(* org.apache.hadoop.tools.SimpleCopyListing.addToFileListing(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.SimpleCopyListing [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:448 +call(* org.apache.hadoop.tools.SimpleCopyListing.writeToFileListing(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:449 +(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:450 +call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.getFileInfo(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:451 +(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:452 +call(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.analyseBlocksStorageMovementsAndAssignToDN(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:453 +(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:454 +call(* org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded.removeItemTrackInfo(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:455 +(withincode(* org.apache.hadoop.mapred.Task.done(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:456 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:457 +(withincode(* org.apache.hadoop.mapred.Task.statusUpdate(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:458 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:459 +(withincode(* org.apache.hadoop.mapred.Task.sendDone(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:460 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.done(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:461 +(withincode(* org.apache.hadoop.mapred.Task.commit(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:462 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.canCommit(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:464 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:466 +call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:467 +(withincode(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:468 +call(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:469 +(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:470 +call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:471 +(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:472 +call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:473 +(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationBaseProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:474 +call(* org.apache.hadoop.yarn.api.ApplicationBaseProtocol.getApplicationAttemptReport(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:483 +(withincode(* org.apache.hadoop.hdfs.DFSClient.renewLease(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:487 +(withincode(* org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier.getNameNodeConnector(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:489 +(withincode(* org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator.makeRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:491 +(withincode(* org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator.heartbeat(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:493 +(withincode(* org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.server.AMRMClientRelayer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:495 +(withincode(* org.apache.hadoop.yarn.server.AMRMClientRelayer.allocate(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: CreateOutputDirectoriesStage [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:497 +(withincode(* CreateOutputDirectoriesStage.maybeCreateOneDirectory(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.BPServiceActor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:559 +((withincode(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.BPServiceActor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:560 +call(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.connectToNNAndHandshake(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:583 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:584 +call(* org.apache.hadoop.hdfs.DataStreamer.createSocketForPipeline(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:585 +(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:586 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient.socketSend(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: java.io [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:589 +(withincode(* java.io.IOException(..)) && + ^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:590 +call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.openConnection(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:591 +(withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.connect(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.Sender [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:600 +call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.releaseShortCircuitFds(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:603 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:604 +call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:605 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:606 +call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:607 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:609 +(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.util.RetriableCommand [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:611 +(withincode(* org.apache.hadoop.tools.util.RetriableCommand.execute(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.tools.util.RetriableCommand [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:612 +call(* org.apache.hadoop.tools.util.RetriableCommand.doExecute(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiverServer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:743 +((withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.net.PeerServer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:744 +call(* org.apache.hadoop.hdfs.net.PeerServer.accept(..) throws *Exception*))) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSCommonUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:803 +((withincode(* org.apache.hadoop.fs.obs.OBSCommonUtils.isFolderEmpty(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSCommonUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:804 +call(* org.apache.hadoop.fs.obs.OBSCommonUtils.innerIsFolderEmpty(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:805 +(withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:806 +call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:807 +(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:867 +((withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:868 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:870 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:929 +((withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:930 +call(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.processTask(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:932 +call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:935 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:873 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:811 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:747 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:687 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:625 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:503 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:136 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:94 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:77 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:59 + +[INFO] +[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ wasabi --- +[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! +[INFO] skip non existing resourceDirectory /home/cc/sosp24-ae/wasabi/wasabi-testing/src/test/resources +[INFO] +[INFO] --- aspectj-maven-plugin:1.13:test-compile (default) @ wasabi --- +[WARNING] No sources found skipping aspectJ compile +[INFO] +[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (1.5 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 kB at 236 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 kB at 302 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom (3.0 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom (2.5 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom (5.5 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom (1.6 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom (16 kB at 188 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (1.6 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 191 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (2.7 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (2.1 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (3.1 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (2.0 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (2.7 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (1.9 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2.0 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (7.8 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2.0 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (1.8 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (1.5 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (1.7 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (2.1 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (1.3 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom (3.5 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom (17 kB at 176 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom (42 kB at 493 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom (3.7 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 110 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 276 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 170 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar (263 kB at 2.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar (35 kB at 310 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar (118 kB at 980 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar (316 kB at 2.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar (31 kB at 198 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar (232 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 383 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 520 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 210 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 147 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 307 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 93 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 493 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 168 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar (10 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 59 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 24 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 85 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar (14 kB at 28 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar (38 kB at 70 kB/s) +[INFO] Tests are skipped. +[INFO] +[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom (4.5 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom (2.8 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom (1.7 kB at 6.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom (2.7 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 kB at 133 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom (1.0 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 79 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar (22 kB at 287 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar (60 kB at 695 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar (184 kB at 2.0 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar (58 kB at 589 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (38 kB at 321 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar (208 kB at 1.2 MB/s) +[INFO] Building jar: /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar +[INFO] +[INFO] --- maven-install-plugin:2.4:install (default-install) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom (2.5 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom (19 kB at 151 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom (1.1 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom (5.0 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom (7.3 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar (12 kB at 89 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar (230 kB at 1.5 MB/s) +[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.jar +[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/pom.xml to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.pom +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 01:10 min +[INFO] Finished at: 2025-10-02T22:53:24Z +[INFO] ------------------------------------------------------------------------ +[INFO] Scanning for projects... +[INFO] +[INFO] -------------------< edu.uchicago.cs.systems:wasabi >------------------- +[INFO] Building Wasabi Library 1.0.0 +[INFO] --------------------------------[ jar ]--------------------------------- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom (21 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom (31 kB at 251 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar (64 kB at 510 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (3.9 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 kB at 145 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 283 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 kB at 197 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 kB at 192 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom (9.2 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 266 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom (15 kB at 168 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 317 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom (9.8 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 105 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom (48 kB at 545 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom (21 kB at 203 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar (66 kB at 684 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom (10 kB at 142 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom (14 kB at 138 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar (30 kB at 350 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom (5.8 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar (34 kB at 436 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom (6.4 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar (27 kB at 225 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom (2.0 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom (1.1 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom (17 kB at 150 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom (1.6 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 273 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 5.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom (16 kB at 186 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 908 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom (26 kB at 274 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom (24 kB at 261 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-client/3.0.0-beta-1/hbase-client-3.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-client/3.0.0-beta-1/hbase-client-3.0.0-beta-1.pom (28 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-protobuf/4.1.5/hbase-shaded-protobuf-4.1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-protobuf/4.1.5/hbase-shaded-protobuf-4.1.5.pom (4.4 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-common/3.0.0-beta-1/hbase-common-3.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-common/3.0.0-beta-1/hbase-common-3.0.0-beta-1.pom (26 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-logging/3.0.0-beta-1/hbase-logging-3.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-logging/3.0.0-beta-1/hbase-logging-3.0.0-beta-1.pom (22 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 147 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.pom (2.8 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.13.0/yetus-project-0.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.13.0/yetus-project-0.13.0.pom (11 kB at 153 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 211 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-miscellaneous/4.1.5/hbase-shaded-miscellaneous-4.1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-miscellaneous/4.1.5/hbase-shaded-miscellaneous-4.1.5.pom (4.8 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom (1.8 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom (13 kB at 180 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-gson/4.1.5/hbase-shaded-gson-4.1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-gson/4.1.5/hbase-shaded-gson-4.1.5.pom (4.4 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-netty/4.1.5/hbase-shaded-netty-4.1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-netty/4.1.5/hbase-shaded-netty-4.1.5.pom (4.4 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-unsafe/4.1.5/hbase-unsafe-4.1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-unsafe/4.1.5/hbase-unsafe-4.1.5.pom (4.5 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 188 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 852 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 190 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.pom (28 kB at 322 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom (72 kB at 868 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom (20 kB at 203 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.7/commons-validator-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.7/commons-validator-1.7.pom (14 kB at 168 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom (78 kB at 962 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 207 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 946 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 229 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 523 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 179 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 165 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 738 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 214 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/2.1/commons-digester-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/2.1/commons-digester-2.1.pom (10 kB at 115 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom (31 kB at 321 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 115 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api/1.15.0/opentelemetry-api-1.15.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api/1.15.0/opentelemetry-api-1.15.0.pom (1.8 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-context/1.15.0/opentelemetry-context-1.15.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-context/1.15.0/opentelemetry-context-1.15.0.pom (1.6 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-semconv/1.15.0-alpha/opentelemetry-semconv-1.15.0-alpha.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-semconv/1.15.0-alpha/opentelemetry-semconv-1.15.0-alpha.pom (1.8 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-crypto/1.1.0/commons-crypto-1.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-crypto/1.1.0/commons-crypto-1.1.0.pom (25 kB at 309 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.2.4/hadoop-common-3.2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.2.4/hadoop-common-3.2.4.pom (45 kB at 525 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.2.4/hadoop-project-dist-3.2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.2.4/hadoop-project-dist-3.2.4.pom (18 kB at 178 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.2.4/hadoop-project-3.2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.2.4/hadoop-project-3.2.4.pom (78 kB at 947 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.2.4/hadoop-main-3.2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.2.4/hadoop-main-3.2.4.pom (27 kB at 323 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.2.4/hadoop-annotations-3.2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.2.4/hadoop-annotations-3.2.4.pom (2.6 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom (8.1 kB at 92 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom (10 kB at 140 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 83 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom (1.7 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom (2.5 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.pom (1.8 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.2.0/error_prone_parent-2.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.2.0/error_prone_parent-2.2.0.pom (5.1 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (2.8 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom (2.6 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom (8.6 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (34 kB at 354 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8.0 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 280 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom (14 kB at 171 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom (47 kB at 446 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 127 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 84 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 150 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 390 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 113 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 175 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 809 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 212 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 219 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.pom (22 kB at 260 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom (4.9 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.0/all-1.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.0/all-1.2.0.pom (18 kB at 222 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom (4.7 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.43.v20210629/jetty-server-9.4.43.v20210629.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.43.v20210629/jetty-server-9.4.43.v20210629.pom (2.5 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.43.v20210629/jetty-project-9.4.43.v20210629.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.43.v20210629/jetty-project-9.4.43.v20210629.pom (63 kB at 893 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.43.v20210629/jetty-http-9.4.43.v20210629.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.43.v20210629/jetty-http-9.4.43.v20210629.pom (4.0 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.43.v20210629/jetty-util-9.4.43.v20210629.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.43.v20210629/jetty-util-9.4.43.v20210629.pom (3.9 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.43.v20210629/jetty-io-9.4.43.v20210629.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.43.v20210629/jetty-io-9.4.43.v20210629.pom (1.2 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.43.v20210629/jetty-servlet-9.4.43.v20210629.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.43.v20210629/jetty-servlet-9.4.43.v20210629.pom (2.3 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.43.v20210629/jetty-security-9.4.43.v20210629.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.43.v20210629/jetty-security-9.4.43.v20210629.pom (2.1 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.43.v20210629/jetty-util-ajax-9.4.43.v20210629.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.43.v20210629/jetty-util-ajax-9.4.43.v20210629.pom (1.3 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.43.v20210629/jetty-webapp-9.4.43.v20210629.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.43.v20210629/jetty-webapp-9.4.43.v20210629.pom (3.2 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.43.v20210629/jetty-xml-9.4.43.v20210629.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.43.v20210629/jetty-xml-9.4.43.v20210629.pom (1.7 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 224 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 563 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.pom (23 kB at 249 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/41/commons-parent-41.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/41/commons-parent-41.pom (65 kB at 648 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 316 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.pom (16 kB at 191 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/46/commons-parent-46.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/46/commons-parent-46.pom (75 kB at 988 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.35/slf4j-api-1.7.35.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.35/slf4j-api-1.7.35.pom (3.8 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.35/slf4j-parent-1.7.35.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.35/slf4j-parent-1.7.35.pom (14 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom (5.6 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom (19 kB at 170 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom (9.6 kB at 132 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom (1.6 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom (11 kB at 136 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom (3.4 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom (13 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom (11 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom (1.9 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom (2.7 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom (12 kB at 131 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom (3.6 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom (8.4 kB at 83 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom (8.1 kB at 91 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom (4.5 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.2.4/hadoop-auth-3.2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.2.4/hadoop-auth-3.2.4.pom (8.4 kB at 109 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom (11 kB at 127 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom (5.4 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom (8.2 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom (9.9 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom (2.4 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 134 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.14/zookeeper-3.4.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.14/zookeeper-3.4.14.pom (16 kB at 175 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 155 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/spotbugs/spotbugs-annotations/3.1.9/spotbugs-annotations-3.1.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/spotbugs/spotbugs-annotations/3.1.9/spotbugs-annotations-3.1.9.pom (2.5 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom (1.9 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom (6.8 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 kB at 206 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.10.6.Final/netty-3.10.6.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.10.6.Final/netty-3.10.6.Final.pom (29 kB at 390 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.13.0/curator-framework-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.13.0/curator-framework-2.13.0.pom (2.5 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.13.0/apache-curator-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.13.0/apache-curator-2.13.0.pom (32 kB at 399 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.13.0/curator-client-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.13.0/curator-client-2.13.0.pom (4.5 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.pom (4.0 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom (3.0 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom (9.3 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jline/jline/0.9.94/jline-0.9.94.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jline/jline/0.9.94/jline-0.9.94.pom (6.4 kB at 84 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.pom (26 kB at 354 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom (6.1 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom (7.3 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom (2.7 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom (12 kB at 128 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom (1.5 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom (1.7 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom (15 kB at 170 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom (2.2 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom (1.5 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom (1.3 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom (1.3 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom (2.0 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom (1.1 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom (1.2 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom (1.7 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom (1.5 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 187 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom (1.8 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom (1.2 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom (14 kB at 163 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom (491 B at 6.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom (2.0 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom (8.5 kB at 104 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom (1.2 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 kB at 460 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom (1.7 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom (1.7 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom (1.5 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom (1.1 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom (3.2 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom (4.8 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.13.0/curator-recipes-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.13.0/curator-recipes-2.13.0.pom (2.9 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.pom (3.3 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace/4.1.0-incubating/htrace-4.1.0-incubating.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace/4.1.0-incubating/htrace-4.1.0-incubating.pom (14 kB at 138 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 259 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5.1/jackson-databind-2.10.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5.1/jackson-databind-2.10.5.1.pom (7.2 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5.20201202/jackson-base-2.10.5.20201202.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5.20201202/jackson-base-2.10.5.20201202.pom (7.2 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5.20201202/jackson-bom-2.10.5.20201202.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5.20201202/jackson-bom-2.10.5.20201202.pom (13 kB at 146 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom (8.3 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 265 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.5/jackson-annotations-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.5/jackson-annotations-2.10.5.pom (3.4 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.5/jackson-core-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.5/jackson-core-2.10.5.pom (4.6 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5/jackson-base-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5/jackson-base-2.10.5.pom (7.2 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5/jackson-bom-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5/jackson-bom-2.10.5.pom (13 kB at 143 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.3.0/woodstox-core-5.3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.3.0/woodstox-core-5.3.0.pom (9.7 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom (23 kB at 286 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom (6.3 kB at 86 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 kB at 248 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom (7.2 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-hadoop-compat/3.0.0-beta-1/hbase-hadoop-compat-3.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-hadoop-compat/3.0.0-beta-1/hbase-hadoop-compat-3.0.0-beta-1.pom (25 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics/3.0.0-beta-1/hbase-metrics-3.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics/3.0.0-beta-1/hbase-metrics-3.0.0-beta-1.pom (22 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics-api/3.0.0-beta-1/hbase-metrics-api-3.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics-api/3.0.0-beta-1/hbase-metrics-api-3.0.0-beta-1.pom (22 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.2.6/metrics-core-3.2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.2.6/metrics-core-3.2.6.pom (846 B at 9.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.2.6/metrics-parent-3.2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.2.6/metrics-parent-3.2.6.pom (12 kB at 121 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.22/slf4j-api-1.7.22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.22/slf4j-api-1.7.22.pom (2.8 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.22/slf4j-parent-1.7.22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.22/slf4j-parent-1.7.22.pom (14 kB at 165 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-protocol-shaded/3.0.0-beta-1/hbase-protocol-shaded-3.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-protocol-shaded/3.0.0-beta-1/hbase-protocol-shaded-3.0.0-beta-1.pom (22 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.8.3/zookeeper-3.8.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.8.3/zookeeper-3.8.3.pom (12 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.8.3/parent-3.8.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.8.3/parent-3.8.3.pom (42 kB at 338 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.8.3/zookeeper-jute-3.8.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.8.3/zookeeper-jute-3.8.3.pom (6.7 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.pom (2.8 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.12.0/yetus-project-0.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.12.0/yetus-project-0.12.0.pom (12 kB at 161 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.pom (4.6 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.94.Final/netty-parent-4.1.94.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.94.Final/netty-parent-4.1.94.Final.pom (83 kB at 868 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.pom (12 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.pom (1.6 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.pom (1.6 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.pom (2.2 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.pom (29 kB at 334 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.pom (5.3 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.94.Final/netty-transport-native-epoll-4.1.94.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.94.Final/netty-transport-native-epoll-4.1.94.Final.pom (19 kB at 274 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.94.Final/netty-transport-classes-epoll-4.1.94.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.94.Final/netty-transport-classes-epoll-4.1.94.Final.pom (2.1 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jruby/jcodings/jcodings/1.0.57/jcodings-1.0.57.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jruby/jcodings/jcodings/1.0.57/jcodings-1.0.57.pom (5.2 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jruby/joni/joni/2.1.43/joni-2.1.43.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jruby/joni/joni/2.1.43/joni-2.1.43.pom (6.8 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 163 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.pom (9.6 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19/jersey-project-1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19/jersey-project-1.19.pom (25 kB at 307 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom (7.8 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.18.3/reload4j-1.2.18.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.18.3/reload4j-1.2.18.3.pom (16 kB at 142 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.35/slf4j-reload4j-1.7.35.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.35/slf4j-reload4j-1.7.35.pom (1.2 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom (1.3 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom (1.5 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.16/log4j-1.2.16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.16/log4j-1.2.16.pom (20 kB at 282 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom (1.1 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 302 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom (3.2 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom (5.6 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom (1.7 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom (2.8 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom (1.5 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar (123 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar (63 kB at 379 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 273 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-client/3.0.0-beta-1/hbase-client-3.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar (15 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-protobuf/4.1.5/hbase-shaded-protobuf-4.1.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 1.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-common/3.0.0-beta-1/hbase-common-3.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar (361 kB at 1.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-logging/3.0.0-beta-1/hbase-logging-3.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-protobuf/4.1.5/hbase-shaded-protobuf-4.1.5.jar (1.9 MB at 5.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-gson/4.1.5/hbase-shaded-gson-4.1.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar (4.9 MB at 12 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-unsafe/4.1.5/hbase-unsafe-4.1.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-gson/4.1.5/hbase-shaded-gson-4.1.5.jar (308 kB at 679 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.7/commons-validator-1.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-unsafe/4.1.5/hbase-unsafe-4.1.5.jar (20 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/2.1/commons-digester-2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.7/commons-validator-1.7.jar (190 kB at 347 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-semconv/1.15.0-alpha/opentelemetry-semconv-1.15.0-alpha.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/2.1/commons-digester-2.1.jar (197 kB at 349 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-hadoop-compat/3.0.0-beta-1/hbase-hadoop-compat-3.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-semconv/1.15.0-alpha/opentelemetry-semconv-1.15.0-alpha.jar (29 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics/3.0.0-beta-1/hbase-metrics-3.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-logging/3.0.0-beta-1/hbase-logging-3.0.0-beta-1.jar (15 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics-api/3.0.0-beta-1/hbase-metrics-api-3.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-client/3.0.0-beta-1/hbase-client-3.0.0-beta-1.jar (1.5 MB at 1.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-common/3.0.0-beta-1/hbase-common-3.0.0-beta-1.jar (892 kB at 833 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-protocol-shaded/3.0.0-beta-1/hbase-protocol-shaded-3.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-hadoop-compat/3.0.0-beta-1/hbase-hadoop-compat-3.0.0-beta-1.jar (229 kB at 208 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar (57 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.jar (504 kB at 411 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-miscellaneous/4.1.5/hbase-shaded-miscellaneous-4.1.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar (327 kB at 261 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics/3.0.0-beta-1/hbase-metrics-3.0.0-beta-1.jar (30 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-netty/4.1.5/hbase-shaded-netty-4.1.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-miscellaneous/4.1.5/hbase-shaded-miscellaneous-4.1.5.jar (4.2 MB at 2.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.8.3/zookeeper-3.8.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics-api/3.0.0-beta-1/hbase-metrics-api-3.0.0-beta-1.jar (24 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.8.3/zookeeper-jute-3.8.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.jar (17 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.8.3/zookeeper-jute-3.8.3.jar (255 kB at 165 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-netty/4.1.5/hbase-shaded-netty-4.1.5.jar (5.0 MB at 3.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.8.3/zookeeper-3.8.3.jar (1.3 MB at 852 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.jar (555 kB at 353 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.jar (307 kB at 188 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.jar (659 kB at 400 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.jar (38 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.94.Final/netty-transport-native-epoll-4.1.94.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.jar (489 kB at 292 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.94.Final/netty-transport-classes-epoll-4.1.94.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.jar (44 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api/1.15.0/opentelemetry-api-1.15.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.94.Final/netty-transport-native-epoll-4.1.94.Final.jar (5.7 kB at 3.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-context/1.15.0/opentelemetry-context-1.15.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.jar (345 kB at 197 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jruby/jcodings/jcodings/1.0.57/jcodings-1.0.57.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.94.Final/netty-transport-classes-epoll-4.1.94.Final.jar (145 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jruby/joni/joni/2.1.43/joni-2.1.43.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api/1.15.0/opentelemetry-api-1.15.0.jar (128 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.2.6/metrics-core-3.2.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jruby/jcodings/jcodings/1.0.57/jcodings-1.0.57.jar (1.7 MB at 927 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-crypto/1.1.0/commons-crypto-1.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-context/1.15.0/opentelemetry-context-1.15.0.jar (46 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jruby/joni/joni/2.1.43/joni-2.1.43.jar (214 kB at 113 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.2.4/hadoop-auth-3.2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.2.6/metrics-core-3.2.6.jar (136 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-crypto/1.1.0/commons-crypto-1.1.0.jar (166 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar (21 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.2.4/hadoop-auth-3.2.4.jar (139 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 385 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.13.0/curator-framework-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar (444 kB at 214 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar (329 kB at 158 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar (4.7 kB at 2.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.13.0/curator-framework-2.13.0.jar (202 kB at 95 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar (113 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar (20 kB at 9.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar (31 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar (227 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar (205 kB at 90 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar (102 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar (41 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar (116 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar (37 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar (65 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar (19 kB at 7.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar (81 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.2.4/hadoop-common-3.2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar (83 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.2.4/hadoop-annotations-3.2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar (29 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar (20 kB at 7.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.2.4/hadoop-annotations-3.2.4.jar (61 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-protocol-shaded/3.0.0-beta-1/hbase-protocol-shaded-3.0.0-beta-1.jar (9.1 MB at 3.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.2.4/hadoop-common-3.2.4.jar (4.2 MB at 1.6 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (2.2 kB at 822 B/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar (2.7 MB at 1.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (8.8 kB at 3.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar (193 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar (3.7 kB at 1.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar (3.4 kB at 1.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar (41 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar (307 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar (1.6 MB at 561 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.18.3/reload4j-1.2.18.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (96 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.jar (129 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar (62 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 199 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.35/slf4j-reload4j-1.7.35.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.18.3/reload4j-1.2.18.3.jar (358 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.jar (184 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.jar (617 kB at 201 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.35/slf4j-reload4j-1.7.35.jar (9.9 kB at 3.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar (232 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar (781 kB at 249 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar (30 kB at 9.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar (436 kB at 138 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar (128 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.13.0/curator-client-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.jar (1.3 MB at 390 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.13.0/curator-recipes-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar (249 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar (533 kB at 164 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.13.0/curator-recipes-2.13.0.jar (284 kB at 86 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar (283 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5.1/jackson-databind-2.10.5.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.13.0/curator-client-2.13.0.jar (2.4 MB at 729 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.5/jackson-annotations-2.10.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 5.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.5/jackson-core-2.10.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.jar (1.5 MB at 446 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.5/jackson-annotations-2.10.5.jar (68 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.3.0/woodstox-core-5.3.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar (1.0 MB at 297 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar (196 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.5/jackson-core-2.10.5.jar (349 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5.1/jackson-databind-2.10.5.1.jar (1.4 MB at 402 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.3.0/woodstox-core-5.3.0.jar (522 kB at 149 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar (194 kB at 55 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar (308 kB at 87 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar (7.7 kB at 2.1 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar (6.8 kB at 1.9 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar (100 kB at 28 kB/s) +[INFO] +[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 203 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom (4.1 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 109 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 kB at 155 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar (226 kB at 2.4 MB/s) +[INFO] Deleting /home/cc/sosp24-ae/wasabi/wasabi-testing/target +[INFO] +[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (2.6 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2.0 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3.0 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 116 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 4.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 79 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2.0 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (2.6 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (1.9 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (1.9 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (6.7 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom (1.9 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (1.8 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (1.4 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 5.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (3.9 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (1.7 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (2.1 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom (2.0 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom (1.3 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 227 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom (5.8 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 109 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom (889 B at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (2.9 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3.0 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5.0 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 109 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom (890 B at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom (2.8 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 201 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar (35 kB at 435 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar (57 kB at 689 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar (152 kB at 1.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar (116 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar (29 kB at 263 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar (9.9 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar (5.9 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar (21 kB at 121 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar (24 kB at 133 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar (14 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 kB at 139 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 144 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar (37 kB at 138 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar (49 kB at 164 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar (87 kB at 289 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar (10 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar (86 kB at 239 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 309 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 493 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar (223 kB at 547 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (6.8 kB at 15 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar (43 kB at 95 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar (61 kB at 121 kB/s) +[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! +[INFO] Copying 220 resources +[INFO] Copying 9 resources +[INFO] +[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 412 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 170 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 84 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 472 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 8.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 199 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom (5.0 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom (4.1 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 247 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom (2.4 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 224 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom (1.1 kB at 8.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom (8.4 kB at 96 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom (2.7 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom (1.1 kB at 8.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 9.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 224 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom (1.2 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom (1.3 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 169 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 1.8 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar (55 kB at 546 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 1.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar (122 kB at 648 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 1.7 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar (27 kB at 128 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar (267 kB at 1.3 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar (4.7 kB at 19 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar (23 kB at 80 kB/s) +[INFO] Changes detected - recompiling the module! :dependency +[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! +[INFO] Compiling 9 source files with javac [debug target 1.8] to target/classes +[INFO] +[INFO] --- aspectj-maven-plugin:1.13:compile (default) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom (2.3 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 247 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 97 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 196 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 110 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 368 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom (3.0 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom (26 kB at 304 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 437 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom (4.1 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom (5.3 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom (2.4 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 288 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom (4.2 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom (14 kB at 169 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 104 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 232 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 9.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 5.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom (2.6 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom (14 kB at 168 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 241 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 90 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 154 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom (4.6 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom (3.4 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom (1.4 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom (1.9 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom (2.5 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 125 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom (8.8 kB at 112 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom (1.9 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 179 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 282 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 124 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 4.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 179 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 115 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom (4.3 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom (2.6 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom (19 kB at 183 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom (2.7 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom (2.8 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom (4.2 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom (3.8 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom (14 kB at 150 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 454 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom (11 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom (16 kB at 171 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 3.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom (7.8 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom (10 kB at 134 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom (4.2 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom (1.8 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom (5.1 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (2.5 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (4.4 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 262 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 9.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom (1.9 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom (21 kB at 249 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom (1.6 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom (18 kB at 225 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom (1.6 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom (3.0 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5.1 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 213 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 155 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (18 kB at 131 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom (7.7 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom (14 kB at 136 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom (4.5 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 677 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 145 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom (3.4 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom (3.0 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom (2.0 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom (2.7 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom (2.0 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 198 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 228 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 191 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 148 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 103 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 2.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 1.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 1.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 2.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 115 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 1.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 1.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 130 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom (7.6 kB at 86 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 6.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (4.9 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom (1.5 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom (15 kB at 186 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (41 kB at 565 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom (1.5 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom (3.4 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom (14 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom (748 B at 8.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom (3.8 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom (22 kB at 259 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (3.8 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom (4.1 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom (4.9 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom (9.4 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom (13 kB at 168 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom (3.0 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom (6.7 kB at 97 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom (3.0 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom (1.6 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom (2.6 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (156 B at 1.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom (9.0 kB at 124 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom (5.3 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom (653 B at 9.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom (4.3 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom (9.8 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom (12 kB at 146 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom (3.4 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom (145 B at 1.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom (3.1 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom (2.9 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar (11 kB at 116 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar (215 kB at 2.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar (47 kB at 444 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 2.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 244 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar (58 kB at 281 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar (205 kB at 964 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar (379 kB at 1.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 177 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar (192 kB at 630 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar (288 kB at 904 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 7.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar (44 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar (14 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar (15 MB at 36 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar (42 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar (38 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar (634 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 8.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar (521 kB at 936 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar (32 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar (14 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (3.5 kB at 5.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar (2.6 MB at 4.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar (41 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar (66 kB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar (27 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar (149 kB at 204 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar (169 kB at 231 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar (4.2 kB at 5.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar (180 kB at 238 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 110 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar (12 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar (55 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar (65 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar (12 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar (218 kB at 249 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar (183 kB at 205 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 365 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar (60 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 349 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar (17 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar (16 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar (18 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar (237 kB at 228 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 7.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 237 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 310 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 128 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 397 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar (53 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 372 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar (18 kB at 15 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar (165 kB at 128 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 387 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 161 kB/s) +[INFO] Showing AJC message detail for messages of types: [error, warning, fail] +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:174 +((withincode(* org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:175 +call(* org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archiveLogFile(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.AbstractWALRoller [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:176 +(withincode(* org.apache.hadoop.hbase.wal.AbstractWALRoller.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.AbstractWALRoller [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:178 +(withincode(* org.apache.hadoop.hbase.wal.AbstractWALRoller.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.AbstractWALRoller [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:180 +(withincode(* org.apache.hadoop.hbase.wal.AbstractWALRoller.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.BootstrapNodeManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:192 +(withincode(* org.apache.hadoop.hbase.regionserver.BootstrapNodeManager.getFromMaster(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.tool.BulkLoadHFilesTool [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:194 +(withincode(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.tool.BulkLoadHFilesTool [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:196 +(withincode(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.tool.BulkLoadHFilesTool [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:197 +call(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.groupOrSplitPhase(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.tool.BulkLoadHFilesTool [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:198 +(withincode(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.tool.BulkLoadHFilesTool [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:199 +call(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.bulkLoadPhase(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:200 +(withincode(* org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.wal.AsyncFSWAL [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:201 +call(* org.apache.hadoop.hbase.regionserver.wal.AsyncFSWAL.createAsyncWriter(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:202 +(withincode(* org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.createOutput(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:203 +call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:204 +(withincode(* org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:205 +call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.complete(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegion [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:207 +call(* org.apache.hadoop.hbase.regionserver.HRegion.flush(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSTableDescriptors [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:208 +(withincode(* org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSTableDescriptors [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:210 +(withincode(* org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSTableDescriptors [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:212 +(withincode(* org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSTableDescriptors [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:213 +call(* org.apache.hadoop.hbase.util.FSTableDescriptors.deleteTableDescriptorFiles(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:214 +(withincode(* org.apache.hadoop.hbase.util.FSUtils.setVersion(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:216 +(withincode(* org.apache.hadoop.hbase.util.FSUtils.setVersion(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:218 +(withincode(* org.apache.hadoop.hbase.util.FSUtils.setVersion(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:220 +(withincode(* org.apache.hadoop.hbase.util.FSUtils.setVersion(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:222 +(withincode(* org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:224 +(withincode(* org.apache.hadoop.hbase.util.FSUtils.setClusterId(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:226 +(withincode(* org.apache.hadoop.hbase.util.FSUtils.setClusterId(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:228 +(withincode(* org.apache.hadoop.hbase.util.FSUtils.setClusterId(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.HBaseFsck [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:232 +(withincode(* org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.HBaseFsck [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:234 +(withincode(* org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:236 +(withincode(* org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint.replicate(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:237 +call(* org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint.parallelReplicate(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.backup.HFileArchiver [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:238 +(withincode(* org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.backup.HFileArchiver [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:240 +(withincode(* org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.HFileReplicator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:242 +(withincode(* org.apache.hadoop.hbase.replication.regionserver.HFileReplicator.doBulkLoad(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.tool.BulkLoadHFilesTool [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:243 +call(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.loadHFileQueue(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:244 +(withincode(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.createDir(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:245 +call(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.mkdirs(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:246 +(withincode(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.rename(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:248 +(withincode(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.deleteDir(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionFileSystem [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:250 +(withincode(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.createDirOnFileSystem(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionServer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:252 +(withincode(* org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:254 +(withincode(* org.apache.hadoop.hbase.regionserver.HStore.flushCache(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.StoreFlusher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:255 +call(* org.apache.hadoop.hbase.regionserver.StoreFlusher.flushSnapshot(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.MoveWithAck [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:256 +(withincode(* org.apache.hadoop.hbase.util.MoveWithAck.call(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.MoveWithAck [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:258 +(withincode(* org.apache.hadoop.hbase.util.MoveWithAck.call(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.MoveWithAck [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:259 +call(* org.apache.hadoop.hbase.util.MoveWithAck.isSameServer(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.chaos.ChaosAgent [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:260 +(withincode(* org.apache.hadoop.hbase.chaos.ChaosAgent.execWithRetries(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.chaos.ChaosAgent [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:261 +call(* org.apache.hadoop.hbase.chaos.ChaosAgent.exec(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:262 +(withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.ProcedureWALFile [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:263 +call(* org.apache.hadoop.hbase.procedure2.store.wal.ProcedureWALFile.removeFile(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.backup.HFileArchiver [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:266 +(withincode(* org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.MasterWalManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:268 +(withincode(* org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.MasterWalManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:270 +(withincode(* org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:272 +(withincode(* org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSourceShipper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:274 +(withincode(* org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSourceShipper.getStartPosition(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSource [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:275 +call(* org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSource.locateRecoveredPaths(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSource [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:276 +(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.uncaughtException(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:277 +call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.refreshSources(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:278 +(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:279 +call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.readWALEntries(..) throws *IOException*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:280 +(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.WALEntryStream [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:281 +call(* org.apache.hadoop.hbase.replication.regionserver.WALEntryStream.reset(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:282 +(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:283 +call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.tryAdvanceStreamAndCreateWALBatch(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.HBaseFsck [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:284 +(withincode(* org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.HBaseFsckRepair [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:286 +(withincode(* org.apache.hadoop.hbase.util.HBaseFsckRepair.waitUntilAssigned(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.AbstractFSWALProvider [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:288 +(withincode(* org.apache.hadoop.hbase.wal.AbstractFSWALProvider.openReader(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.AbstractFSWALProvider [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:290 +(withincode(* org.apache.hadoop.hbase.wal.AbstractFSWALProvider.openReader(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.WALFactory [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:291 +call(* org.apache.hadoop.hbase.wal.WALFactory.createStreamReader(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.WALFactory [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:292 +(withincode(* org.apache.hadoop.hbase.wal.WALFactory.createStreamReader(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:294 +(withincode(* org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:295 +call(* org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure.switchThrottleState(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.HBaseFsckRepair [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:296 +(withincode(* org.apache.hadoop.hbase.util.HBaseFsckRepair.waitUntilAssigned(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:298 +(withincode(* org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:299 +call(* org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher.sendRequest(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.handler.RegionReplicaFlushHandler [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:300 +(withincode(* org.apache.hadoop.hbase.regionserver.handler.RegionReplicaFlushHandler.triggerFlushInPrimaryRegion(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:302 +(withincode(* org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionServer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:303 +call(* org.apache.hadoop.hbase.regionserver.HRegionServer.reportProcedureDone(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSource [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:304 +(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSource [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:305 +call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.createReplicationEndpoint(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSource [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:306 +(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSource [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:307 +call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initAndStartReplicationEndpoint(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:308 +(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.cleanOldLogs(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:309 +call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.removeRemoteWALs(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:310 +(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper.shipEdits(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:311 +call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper.cleanUpHFileRefs(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.rsgroup.RSGroupInfoManagerImpl [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:326 +(withincode(* org.apache.hadoop.hbase.rsgroup.RSGroupInfoManagerImpl.moveRegionsBetweenGroups(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.LoadBalancer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:327 +call(* org.apache.hadoop.hbase.master.LoadBalancer.randomAssignment(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:328 +(withincode(* org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.MasterServices [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:329 +call(* org.apache.hadoop.hbase.master.MasterServices.getProcedures(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:330 +(withincode(* org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegion [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:331 +call(* org.apache.hadoop.hbase.regionserver.HRegion.flush(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.SplitWALProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:332 +(withincode(* org.apache.hadoop.hbase.master.procedure.SplitWALProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.SplitWALManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:333 +call(* org.apache.hadoop.hbase.master.SplitWALManager.isSplitWALFinished(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:334 +(withincode(* org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:335 +call(* org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.isReplayWALFinished(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALRemoteProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:336 +(withincode(* org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALRemoteProcedure.truncateWALs(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:337 +call(* org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.finishReplayWAL(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:338 +(withincode(* org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor.doPut(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:340 +(withincode(* org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor.doPut(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:342 +(withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:343 +call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.getLogFiles(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:344 +(withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:345 +call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.initOldLogs(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:346 +(withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:347 +call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriter(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:348 +(withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.syncSlots(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:349 +call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.syncSlots(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:350 +(withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriterWithRetries(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:351 +call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriter(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.backup.impl.FullTableBackupClient [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:352 +(withincode(* org.apache.hadoop.hbase.backup.impl.FullTableBackupClient.snapshotTable(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:354 +(withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.ZKUtil [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:355 +call(* org.apache.hadoop.hbase.zookeeper.ZKUtil.setData(..) throws *IOException*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:356 +(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:357 +call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.createDirForRemoteWAL(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.MasterWalManager [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:358 +(withincode(* org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:360 +(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:361 +call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.createDirForRemoteWAL(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:362 +(withincode(* org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:364 +(withincode(* org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:366 +(withincode(* org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:368 +(withincode(* org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:370 +(withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:372 +(withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:374 +(withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:376 +(withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:378 +(withincode(* org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:380 +(withincode(* org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.mob.MobFileCleanerChore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:382 +(withincode(* org.apache.hadoop.hbase.mob.MobFileCleanerChore.cleanupObsoleteMobFiles(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.mob.MobFileCleanerChore [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:384 +(withincode(* org.apache.hadoop.hbase.mob.MobFileCleanerChore.cleanupObsoleteMobFiles(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.io.FileLink [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:582 +((withincode(* org.apache.hadoop.hbase.io.FileLink.read(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.io.FileLink [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:584 +(withincode(* org.apache.hadoop.hbase.io.FileLink.readFully(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.SnapshotVerifyProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:644 +((withincode(* org.apache.hadoop.hbase.master.procedure.SnapshotVerifyProcedure.execute(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.ServerRemoteProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:645 +call(* org.apache.hadoop.hbase.master.procedure.ServerRemoteProcedure.execute(..) throws *Exception*))) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.util.HBaseFsck [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:704 +((withincode(* org.apache.hadoop.hbase.util.HBaseFsck.setMasterInMaintenanceMode(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.MetaRegionLocationCache [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:706 +(withincode(* org.apache.hadoop.hbase.MetaRegionLocationCache.updateMetaLocation(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.MetaRegionLocationCache [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:708 +(withincode(* org.apache.hadoop.hbase.MetaRegionLocationCache.updateMetaLocation(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:710 +(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.delete(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:712 +(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.exists(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:714 +(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getChildren(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:716 +(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getData(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:718 +(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.setData(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:720 +(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.createNonSequential(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:722 +(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.createSequential(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:724 +(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getAcl(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:726 +(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.setAcl(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:792 +((withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.multi(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.ZKNodeTracker [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:794 +(withincode(* org.apache.hadoop.hbase.zookeeper.ZKNodeTracker.blockUntilAvailable(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.ZKNodeTracker [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:796 +(withincode(* org.apache.hadoop.hbase.zookeeper.ZKNodeTracker.blockUntilAvailable(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.ZKUtil [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:798 +(withincode(* org.apache.hadoop.hbase.zookeeper.ZKUtil.waitForBaseZNode(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:800 +(withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.deleteDataForClientZkUntilSuccess(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.MetaRegionLocationCache [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:802 +(withincode(* org.apache.hadoop.hbase.MetaRegionLocationCache.loadMetaLocationsFromZk(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: ZkSplitLogWorkerCoordination [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:804 +(withincode(* ZkSplitLogWorkerCoordination.getTaskList(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:806 +(withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.deleteDataForClientZkUntilSuccess(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:808 +(withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.reconnectAfterExpiration(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:810 +(withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:876 +withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.HBaseServerBase [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:942 +((withincode(* org.apache.hadoop.hbase.HBaseServerBase.putUpWebUI(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.http.InfoServer [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:943 +call(* org.apache.hadoop.hbase.http.InfoServer.start(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.ZKReplicationQueueStorage [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:944 +(withincode(* org.apache.hadoop.hbase.replication.ZKReplicationQueueStorage.setWALPosition(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.ZKUtil [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:945 +call(* org.apache.hadoop.hbase.zookeeper.ZKUtil.multiOrSequential(..) throws *Exception*))) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ClaimReplicationQueuesProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1004 +((withincode(* org.apache.hadoop.hbase.master.replication.ClaimReplicationQueuesProcedure.execute(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1006 +(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1007 +call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.postTransit(..) throws *ReplicationException*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1008 +(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1009 +call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.setPeerNewSyncReplicationState(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1010 +(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1011 +call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.removeAllReplicationQueues (..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1012 +(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1013 +call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.setLastPushedSequenceId(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1014 +(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1015 +call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.transitPeerSyncReplicationState(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1016 +(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1017 +call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.enablePear(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1018 +(withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1020 +(withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1024 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:948 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:880 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:814 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:730 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:648 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:588 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:526 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:466 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:388 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:137 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:95 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:78 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:60 + +[INFO] +[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ wasabi --- +[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! +[INFO] skip non existing resourceDirectory /home/cc/sosp24-ae/wasabi/wasabi-testing/src/test/resources +[INFO] +[INFO] --- aspectj-maven-plugin:1.13:test-compile (default) @ wasabi --- +[WARNING] No sources found skipping aspectJ compile +[INFO] +[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (1.5 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 kB at 282 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 kB at 305 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom (3.0 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom (2.5 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom (5.5 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom (1.6 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom (16 kB at 150 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (1.6 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 204 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (2.7 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (2.1 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (3.1 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (2.0 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (2.7 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (1.9 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2.0 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (7.8 kB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2.0 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (1.8 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (1.7 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (2.1 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (1.3 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom (3.5 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom (17 kB at 158 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom (42 kB at 419 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom (3.7 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 197 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 172 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar (118 kB at 1.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar (35 kB at 434 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar (263 kB at 2.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar (316 kB at 2.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 545 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar (232 kB at 1.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar (31 kB at 175 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 603 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 224 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 151 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 348 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 221 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 499 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar (10 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 36 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 26 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar (38 kB at 95 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 88 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar (14 kB at 31 kB/s) +[INFO] Tests are skipped. +[INFO] +[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom (4.5 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom (2.8 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom (1.7 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom (2.7 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 kB at 227 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom (1.0 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 146 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar (184 kB at 2.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar (22 kB at 257 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar (60 kB at 593 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (38 kB at 361 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar (58 kB at 535 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar (208 kB at 1.3 MB/s) +[INFO] Building jar: /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar +[INFO] +[INFO] --- maven-install-plugin:2.4:install (default-install) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom (2.5 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom (19 kB at 176 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom (1.1 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom (5.0 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom (7.3 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar (12 kB at 126 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar (230 kB at 1.6 MB/s) +[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.jar +[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/pom.xml to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.pom +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 01:09 min +[INFO] Finished at: 2025-10-03T00:24:28Z +[INFO] ------------------------------------------------------------------------ +[INFO] Scanning for projects... +[INFO] +[INFO] -------------------< edu.uchicago.cs.systems:wasabi >------------------- +[INFO] Building Wasabi Library 1.0.0 +[INFO] --------------------------------[ jar ]--------------------------------- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom (21 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom (31 kB at 264 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar (64 kB at 498 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (3.9 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 kB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 204 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 kB at 111 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 kB at 180 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom (9.2 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 310 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom (15 kB at 132 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 324 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom (9.8 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom (48 kB at 480 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom (21 kB at 228 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar (66 kB at 620 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom (10 kB at 125 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom (14 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar (30 kB at 324 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom (5.8 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar (34 kB at 337 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom (6.4 kB at 79 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar (27 kB at 296 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom (2.0 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom (1.1 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom (17 kB at 106 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom (1.6 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 250 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 8.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom (16 kB at 140 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 661 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom (26 kB at 239 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom (24 kB at 245 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-metastore/4.0.0-beta-1/hive-metastore-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-metastore/4.0.0-beta-1/hive-metastore-4.0.0-beta-1.pom (7.8 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive/4.0.0-beta-1/hive-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive/4.0.0-beta-1/hive-4.0.0-beta-1.pom (79 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 212 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.13.5/jackson-bom-2.13.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.13.5/jackson-bom-2.13.5.pom (17 kB at 159 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.13/jackson-parent-2.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.13/jackson-parent-2.13.pom (7.4 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/43/oss-parent-43.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/43/oss-parent-43.pom (24 kB at 213 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-common/4.0.0-beta-1/hive-common-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-common/4.0.0-beta-1/hive-common-4.0.0-beta-1.pom (14 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-classification/4.0.0-beta-1/hive-classification-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-classification/4.0.0-beta-1/hive-classification-4.0.0-beta-1.pom (2.2 kB at 2.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-shims/4.0.0-beta-1/hive-shims-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-shims/4.0.0-beta-1/hive-shims-4.0.0-beta-1.pom (1.7 kB at 2.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-common/4.0.0-beta-1/hive-shims-common-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-common/4.0.0-beta-1/hive-shims-common-4.0.0-beta-1.pom (3.3 kB at 5.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.pom (5.7 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/22.0/guava-parent-22.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/22.0/guava-parent-22.0.pom (8.9 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom (965 B at 8.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.pom (1.6 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.0.18/error_prone_parent-2.0.18.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.0.18/error_prone_parent-2.0.18.pom (5.0 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (2.8 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (2.5 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (4.4 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 149 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.16.0/libthrift-0.16.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.16.0/libthrift-0.16.0.pom (2.8 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.35/slf4j-api-1.7.35.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.35/slf4j-api-1.7.35.pom (3.8 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.35/slf4j-parent-1.7.35.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.35/slf4j-parent-1.7.35.pom (14 kB at 144 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 271 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 137 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 513 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 157 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 544 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 133 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.pom (5.0 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.15/httpcomponents-core-4.4.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.15/httpcomponents-core-4.4.15.pom (13 kB at 137 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom (14 kB at 132 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 147 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 639 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/5.2.0/curator-framework-5.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/5.2.0/curator-framework-5.2.0.pom (3.8 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/5.2.0/apache-curator-5.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/5.2.0/apache-curator-5.2.0.pom (43 kB at 364 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/5.2.0/curator-client-5.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/5.2.0/curator-client-5.2.0.pom (4.6 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.6.3/zookeeper-3.6.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.6.3/zookeeper-3.6.3.pom (9.9 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.6.3/parent-3.6.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.6.3/parent-3.6.3.pom (35 kB at 395 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.6.3/zookeeper-jute-3.6.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.6.3/zookeeper-jute-3.6.3.pom (5.6 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom (1.9 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom (6.8 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 kB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.63.Final/netty-handler-4.1.63.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.63.Final/netty-handler-4.1.63.Final.pom (3.6 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.63.Final/netty-parent-4.1.63.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.63.Final/netty-parent-4.1.63.Final.pom (62 kB at 585 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.63.Final/netty-common-4.1.63.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.63.Final/netty-common-4.1.63.Final.pom (12 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.63.Final/netty-resolver-4.1.63.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.63.Final/netty-resolver-4.1.63.Final.pom (1.6 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.63.Final/netty-buffer-4.1.63.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.63.Final/netty-buffer-4.1.63.Final.pom (1.6 kB at 9.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.63.Final/netty-transport-4.1.63.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.63.Final/netty-transport-4.1.63.Final.pom (1.9 kB at 7.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.63.Final/netty-codec-4.1.63.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.63.Final/netty-codec-4.1.63.Final.pom (3.6 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.63.Final/netty-transport-native-epoll-4.1.63.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.63.Final/netty-transport-native-epoll-4.1.63.Final.pom (18 kB at 154 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.63.Final/netty-transport-native-unix-common-4.1.63.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.63.Final/netty-transport-native-unix-common-4.1.63.Final.pom (22 kB at 190 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 109 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 236 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0.1-jre/guava-27.0.1-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0.1-jre/guava-27.0.1-jre.pom (8.3 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0.1-jre/guava-parent-27.0.1-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0.1-jre/guava-parent-27.0.1-jre.pom (10 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom (2.4 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 91 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom (2.5 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.pom (1.8 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.2.0/error_prone_parent-2.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.2.0/error_prone_parent-2.2.0.pom (5.1 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom (2.6 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom (8.6 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (34 kB at 278 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.7.1/zookeeper-3.7.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.7.1/zookeeper-3.7.1.pom (11 kB at 115 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.7.1/parent-3.7.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.7.1/parent-3.7.1.pom (40 kB at 399 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.7.1/zookeeper-jute-3.7.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.7.1/zookeeper-jute-3.7.1.pom (6.7 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.pom (2.8 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.12.0/yetus-project-0.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.12.0/yetus-project-0.12.0.pom (12 kB at 104 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.76.Final/netty-handler-4.1.76.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.76.Final/netty-handler-4.1.76.Final.pom (3.7 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.76.Final/netty-parent-4.1.76.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.76.Final/netty-parent-4.1.76.Final.pom (75 kB at 495 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.76.Final/netty-common-4.1.76.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.76.Final/netty-common-4.1.76.Final.pom (13 kB at 95 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.76.Final/netty-resolver-4.1.76.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.76.Final/netty-resolver-4.1.76.Final.pom (1.6 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.76.Final/netty-buffer-4.1.76.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.76.Final/netty-buffer-4.1.76.Final.pom (1.6 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.76.Final/netty-transport-4.1.76.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.76.Final/netty-transport-4.1.76.Final.pom (1.9 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.76.Final/netty-codec-4.1.76.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.76.Final/netty-codec-4.1.76.Final.pom (4.4 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.76.Final/netty-transport-native-epoll-4.1.76.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.76.Final/netty-transport-native-epoll-4.1.76.Final.pom (19 kB at 195 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.76.Final/netty-transport-native-unix-common-4.1.76.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.76.Final/netty-transport-native-unix-common-4.1.76.Final.pom (26 kB at 268 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.76.Final/netty-transport-classes-epoll-4.1.76.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.76.Final/netty-transport-classes-epoll-4.1.76.Final.pom (2.1 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-0.23/4.0.0-beta-1/hive-shims-0.23-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-0.23/4.0.0-beta-1/hive-shims-0.23-4.0.0-beta-1.pom (9.9 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-resourcemanager/3.3.1/hadoop-yarn-server-resourcemanager-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-resourcemanager/3.3.1/hadoop-yarn-server-resourcemanager-3.3.1.pom (15 kB at 179 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server/3.3.1/hadoop-yarn-server-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server/3.3.1/hadoop-yarn-server-3.3.1.pom (2.2 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn/3.3.1/hadoop-yarn-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn/3.3.1/hadoop-yarn-3.3.1.pom (10 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.1/hadoop-project-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.1/hadoop-project-3.3.1.pom (88 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.1/hadoop-main-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.1/hadoop-main-3.3.1.pom (29 kB at 278 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 163 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.1/hadoop-annotations-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.1/hadoop-annotations-3.3.1.pom (2.6 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-servlet/4.0/guice-servlet-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-servlet/4.0/guice-servlet-4.0.pom (915 B at 8.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/extensions-parent/4.0/extensions-parent-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/extensions-parent/4.0/extensions-parent-4.0.pom (3.5 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom (15 kB at 182 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0.pom (11 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 5.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 3.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom (6.1 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom (7.3 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom (8.4 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 145 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.19/jersey-json-1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.19/jersey-json-1.19.pom (10 kB at 105 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19/jersey-project-1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19/jersey-project-1.19.pom (25 kB at 285 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom (7.8 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom (3.4 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom (5.3 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom (5.6 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom (962 B at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom (1.1 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.2/jackson-core-asl-1.9.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.2/jackson-core-asl-1.9.2.pom (1.0 kB at 8.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.2/jackson-mapper-asl-1.9.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.2/jackson-mapper-asl-1.9.2.pom (1.2 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.9.2/jackson-jaxrs-1.9.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.9.2/jackson-jaxrs-1.9.2.pom (1.6 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.9.2/jackson-xc-1.9.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.9.2/jackson-xc-1.9.2.pom (1.6 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19/jersey-core-1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19/jersey-core-1.19.pom (9.7 kB at 131 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom (5.5 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-guice/1.19/jersey-guice-1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-guice/1.19/jersey-guice-1.19.pom (7.5 kB at 84 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.19/jersey-contribs-1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.19/jersey-contribs-1.19.pom (3.6 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/3.0/guice-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/3.0/guice-3.0.pom (7.3 kB at 84 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/3.0/guice-parent-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/3.0/guice-parent-3.0.pom (13 kB at 147 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-servlet/3.0/guice-servlet-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-servlet/3.0/guice-servlet-3.0.pom (915 B at 9.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/extensions-parent/3.0/extensions-parent-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/extensions-parent/3.0/extensions-parent-3.0.pom (3.6 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.pom (9.6 kB at 125 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19/jersey-server-1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19/jersey-server-1.19.pom (11 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-common/3.3.1/hadoop-yarn-common-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-common/3.3.1/hadoop-yarn-common-3.3.1.pom (15 kB at 146 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-hdfs-client/3.3.1/hadoop-hdfs-client-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-hdfs-client/3.3.1/hadoop-hdfs-client-3.3.1.pom (6.0 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.1/hadoop-project-dist-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.1/hadoop-project-dist-3.3.1.pom (18 kB at 132 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp/okhttp/2.7.5/okhttp-2.7.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp/okhttp/2.7.5/okhttp-2.7.5.pom (1.6 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp/parent/2.7.5/parent-2.7.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp/parent/2.7.5/parent-2.7.5.pom (9.4 kB at 114 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.6.0/okio-1.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.6.0/okio-1.6.0.pom (1.5 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.6.0/okio-parent-1.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.6.0/okio-parent-1.6.0.pom (3.2 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.5/jackson-annotations-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.5/jackson-annotations-2.10.5.pom (3.4 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom (8.3 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 233 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5.1/jackson-databind-2.10.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5.1/jackson-databind-2.10.5.1.pom (7.2 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5.20201202/jackson-base-2.10.5.20201202.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5.20201202/jackson-base-2.10.5.20201202.pom (7.2 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5.20201202/jackson-bom-2.10.5.20201202.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5.20201202/jackson-bom-2.10.5.20201202.pom (13 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.5/jackson-core-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.5/jackson-core-2.10.5.pom (4.6 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5/jackson-base-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5/jackson-base-2.10.5.pom (7.2 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5/jackson-bom-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5/jackson-bom-2.10.5.pom (13 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-api/3.3.1/hadoop-yarn-api-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-api/3.3.1/hadoop-yarn-api-3.3.1.pom (6.1 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom (3.0 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom (16 kB at 159 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.11/jaxb-api-2.2.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.11/jaxb-api-2.2.11.pom (15 kB at 96 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom (3.0 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.1/hadoop-auth-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.1/hadoop-auth-3.3.1.pom (8.4 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom (11 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom (5.4 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.2/json-smart-2.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.2/json-smart-2.4.2.pom (9.2 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.4.2/minidev-parent-2.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.4.2/minidev-parent-2.4.2.pom (8.6 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.2/accessors-smart-2.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.2/accessors-smart-2.4.2.pom (12 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0.1/asm-8.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0.1/asm-8.0.1.pom (2.9 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom (9.2 kB at 93 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom (28 kB at 283 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom (5.7 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom (3.5 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom (36 kB at 364 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom (4.6 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom (1.5 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom (1.7 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom (15 kB at 180 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom (2.2 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom (1.5 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom (1.3 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom (1.3 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom (2.0 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom (1.1 kB at 8.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom (1.2 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom (1.7 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom (1.5 kB at 9.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 548 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom (1.8 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom (1.2 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom (14 kB at 167 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom (491 B at 5.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom (2.0 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom (8.5 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom (1.2 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 kB at 132 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 kB at 627 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 178 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom (1.7 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom (1.7 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom (1.1 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.pom (18 kB at 217 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom (72 kB at 706 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.40.v20210413/jetty-util-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.40.v20210413/jetty-util-9.4.40.v20210413.pom (3.9 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.40.v20210413/jetty-project-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.40.v20210413/jetty-project-9.4.40.v20210413.pom (63 kB at 571 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.19/jersey-client-1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.19/jersey-client-1.19.pom (6.7 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8.0 kB at 91 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 222 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.10.5/jackson-module-jaxb-annotations-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.10.5/jackson-module-jaxb-annotations-2.10.5.pom (3.5 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.10.5/jackson-modules-base-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.10.5/jackson-modules-base-2.10.5.pom (3.4 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5/jackson-databind-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5/jackson-databind-2.10.5.pom (7.2 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom (16 kB at 195 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.2/jakarta.xml.bind-api-parent-2.3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.2/jakarta.xml.bind-api-parent-2.3.2.pom (7.7 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom (13 kB at 132 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom (4.6 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom (18 kB at 127 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 kB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.10.5/jackson-jaxrs-json-provider-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.10.5/jackson-jaxrs-json-provider-2.10.5.pom (4.0 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.10.5/jackson-jaxrs-providers-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.10.5/jackson-jaxrs-providers-2.10.5.pom (4.8 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.10.5/jackson-jaxrs-base-2.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.10.5/jackson-jaxrs-base-2.10.5.pom (1.7 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.40.v20210413/jetty-util-ajax-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.40.v20210413/jetty-util-ajax-9.4.40.v20210413.pom (1.3 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-common/3.3.1/hadoop-yarn-server-common-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-common/3.3.1/hadoop-yarn-server-common-3.3.1.pom (8.1 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-registry/3.3.1/hadoop-registry-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-registry/3.3.1/hadoop-registry-3.3.1.pom (10 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.1/hadoop-common-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.1/hadoop-common-3.3.1.pom (42 kB at 450 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom (8.1 kB at 83 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom (10 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom (1.7 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom (14 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom (47 kB at 301 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.pom (22 kB at 211 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 157 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.40.v20210413/jetty-server-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.40.v20210413/jetty-server-9.4.40.v20210413.pom (2.5 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.40.v20210413/jetty-http-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.40.v20210413/jetty-http-9.4.40.v20210413.pom (4.0 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.40.v20210413/jetty-io-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.40.v20210413/jetty-io-9.4.40.v20210413.pom (1.0 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.40.v20210413/jetty-servlet-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.40.v20210413/jetty-servlet-9.4.40.v20210413.pom (2.3 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.40.v20210413/jetty-security-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.40.v20210413/jetty-security-9.4.40.v20210413.pom (2.1 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.40.v20210413/jetty-webapp-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.40.v20210413/jetty-webapp-9.4.40.v20210413.pom (3.2 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.40.v20210413/jetty-xml-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.40.v20210413/jetty-xml-9.4.40.v20210413.pom (1.7 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom (157 B at 1.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.pom (23 kB at 249 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/41/commons-parent-41.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/41/commons-parent-41.pom (65 kB at 438 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 328 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.pom (16 kB at 178 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/46/commons-parent-46.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/46/commons-parent-46.pom (75 kB at 808 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom (5.6 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom (19 kB at 179 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom (9.6 kB at 91 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom (1.3 kB at 9.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom (1.5 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom (1.6 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom (11 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom (3.4 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom (13 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom (11 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom (1.9 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom (2.7 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom (12 kB at 94 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom (3.6 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom (8.0 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom (3.2 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom (4.8 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom (3.5 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.pom (3.3 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace/4.1.0-incubating/htrace-4.1.0-incubating.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace/4.1.0-incubating/htrace-4.1.0-incubating.pom (14 kB at 105 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom (3.4 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom (60 kB at 474 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom (10 kB at 102 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom (1.6 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom (1.9 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom (1.6 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom (3.6 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom (16 kB at 170 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom (16 kB at 138 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.3.0/woodstox-core-5.3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.3.0/woodstox-core-5.3.0.pom (9.7 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom (23 kB at 204 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom (6.3 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 kB at 235 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom (7.2 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom (3.5 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-daemon/commons-daemon/1.0.13/commons-daemon-1.0.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-daemon/commons-daemon/1.0.13/commons-daemon-1.0.13.pom (4.3 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/23/commons-parent-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/23/commons-parent-23.pom (44 kB at 376 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.pom (7.2 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-project/1.8/leveldbjni-project-1.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-project/1.8/leveldbjni-project-1.8.pom (9.6 kB at 93 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.9/fusesource-pom-1.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.9/fusesource-pom-1.9.pom (15 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/specs/geronimo-jcache_1.0_spec/1.0-alpha-1/geronimo-jcache_1.0_spec-1.0-alpha-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/specs/geronimo-jcache_1.0_spec/1.0-alpha-1/geronimo-jcache_1.0_spec-1.0-alpha-1.pom (3.7 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.2/genesis-java5-flava-2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.2/genesis-java5-flava-2.2.pom (5.5 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.2/genesis-default-flava-2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.2/genesis-default-flava-2.2.pom (15 kB at 147 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.2/genesis-2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.2/genesis-2.2.pom (16 kB at 168 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/14/apache-14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/14/apache-14.pom (15 kB at 169 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ehcache/ehcache/3.3.1/ehcache-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ehcache/ehcache/3.3.1/ehcache-3.3.1.pom (1.8 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.7/slf4j-api-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.7/slf4j-api-1.7.7.pom (2.7 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.7/slf4j-parent-1.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.7/slf4j-parent-1.7.7.pom (12 kB at 142 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP-java7/2.4.12/HikariCP-java7-2.4.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP-java7/2.4.12/HikariCP-java7-2.4.12.pom (18 kB at 191 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom (2.8 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.21/slf4j-parent-1.7.21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.21/slf4j-parent-1.7.21.pom (14 kB at 165 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/microsoft/sqlserver/mssql-jdbc/6.2.1.jre7/mssql-jdbc-6.2.1.jre7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/microsoft/sqlserver/mssql-jdbc/6.2.1.jre7/mssql-jdbc-6.2.1.jre7.pom (8.8 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-applicationhistoryservice/3.3.1/hadoop-yarn-server-applicationhistoryservice-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-applicationhistoryservice/3.3.1/hadoop-yarn-server-applicationhistoryservice-3.3.1.pom (8.8 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/de/ruedigermoeller/fst/2.50/fst-2.50.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/de/ruedigermoeller/fst/2.50/fst-2.50.pom (7.8 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.8.8/jackson-core-2.8.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.8.8/jackson-core-2.8.8.pom (5.4 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom (8.0 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/27/oss-parent-27.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/27/oss-parent-27.pom (20 kB at 211 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.pom (2.8 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.5.1/objenesis-parent-2.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.5.1/objenesis-parent-2.5.1.pom (17 kB at 188 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/java-util/1.9.0/java-util-1.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/java-util/1.9.0/java-util-1.9.0.pom (4.9 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/json-io/2.5.1/json-io-2.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/json-io/2.5.1/json-io-2.5.1.pom (4.9 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-web-proxy/3.3.1/hadoop-yarn-server-web-proxy-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-web-proxy/3.3.1/hadoop-yarn-server-web-proxy-3.3.1.pom (4.6 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.60/bcprov-jdk15on-1.60.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.60/bcprov-jdk15on-1.60.pom (1.1 kB at 9.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.60/bcpkix-jdk15on-1.60.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.60/bcpkix-jdk15on-1.60.pom (1.5 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-storage-api/4.0.0-beta-1/hive-storage-api-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-storage-api/4.0.0-beta-1/hive-storage-api-4.0.0-beta-1.pom (7.8 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-standalone-metastore-common/4.0.0-beta-1/hive-standalone-metastore-common-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-standalone-metastore-common/4.0.0-beta-1/hive-standalone-metastore-common-4.0.0-beta-1.pom (22 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-standalone-metastore/4.0.0-beta-1/hive-standalone-metastore-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-standalone-metastore/4.0.0-beta-1/hive-standalone-metastore-4.0.0-beta-1.pom (25 kB at 132 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-jexl3/3.3/commons-jexl3-3.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-jexl3/3.3/commons-jexl3-3.3.pom (24 kB at 212 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/56/commons-parent-56.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/56/commons-parent-56.pom (82 kB at 762 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.51.0/grpc-netty-shaded-1.51.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.51.0/grpc-netty-shaded-1.51.0.pom (2.0 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-android/guava-31.1-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-android/guava-31.1-android.pom (11 kB at 125 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.1-android/guava-parent-31.1-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.1-android/guava-parent-31.1-android.pom (15 kB at 136 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom (2.1 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom (2.2 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom (11 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom (2.8 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.14.0/error_prone_annotations-2.14.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.14.0/error_prone_annotations-2.14.0.pom (2.2 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.14.0/error_prone_parent-2.14.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.14.0/error_prone_parent-2.14.0.pom (11 kB at 128 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.25.0/perfmark-api-0.25.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.25.0/perfmark-api-0.25.0.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from repository-release: https://repository.apache.org/content/repositories/releases/io/grpc/grpc-core/maven-metadata.xml +[INFO] Downloading from shibboleth: https://build.shibboleth.net/nexus/content/groups/public/io/grpc/grpc-core/maven-metadata.xml +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/maven-metadata.xml +[INFO] Downloading from ossrh-snapshots: https://oss.sonatype.org/content/repositories/snapshots/io/grpc/grpc-core/maven-metadata.xml +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/maven-metadata.xml (6.0 kB at 32 kB/s) +[INFO] Downloading from apache.snapshots: https://repository.apache.org/snapshots/io/grpc/grpc-core/maven-metadata.xml +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.51.0/grpc-core-1.51.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.51.0/grpc-core-1.51.0.pom (2.5 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/maven-metadata.xml +[INFO] Downloading from ossrh-snapshots: https://oss.sonatype.org/content/repositories/snapshots/io/grpc/grpc-api/maven-metadata.xml +[INFO] Downloading from repository-release: https://repository.apache.org/content/repositories/releases/io/grpc/grpc-api/maven-metadata.xml +[INFO] Downloading from shibboleth: https://build.shibboleth.net/nexus/content/groups/public/io/grpc/grpc-api/maven-metadata.xml +[INFO] Downloading from apache.snapshots: https://repository.apache.org/snapshots/io/grpc/grpc-api/maven-metadata.xml +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/maven-metadata.xml (4.4 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.51.0/grpc-api-1.51.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.51.0/grpc-api-1.51.0.pom (2.0 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.51.0/grpc-context-1.51.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.51.0/grpc-context-1.51.0.pom (1.2 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom (8.1 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom (4.5 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.pom (1.8 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.21/animal-sniffer-annotations-1.21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.21/animal-sniffer-annotations-1.21.pom (2.6 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.21/animal-sniffer-parent-1.21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.21/animal-sniffer-parent-1.21.pom (7.8 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/65/mojo-parent-65.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/65/mojo-parent-65.pom (35 kB at 321 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.1/junit-bom-5.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.1/junit-bom-5.8.1.pom (5.6 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.51.0/grpc-protobuf-1.51.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.51.0/grpc-protobuf-1.51.0.pom (2.7 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7.pom (5.4 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.21.7/protobuf-parent-3.21.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.21.7/protobuf-parent-3.21.7.pom (9.0 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.7/protobuf-bom-3.21.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.7/protobuf-bom-3.21.7.pom (3.5 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0.pom (2.2 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.1/protobuf-java-3.21.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.1/protobuf-java-3.21.1.pom (5.4 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.21.1/protobuf-parent-3.21.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.21.1/protobuf-parent-3.21.1.pom (9.0 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.1/protobuf-bom-3.21.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.1/protobuf-bom-3.21.1.pom (3.5 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.51.0/grpc-protobuf-lite-1.51.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.51.0/grpc-protobuf-lite-1.51.0.pom (2.0 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.51.0/grpc-stub-1.51.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.51.0/grpc-stub-1.51.0.pom (1.8 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-core/1.8.3/orc-core-1.8.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-core/1.8.3/orc-core-1.8.3.pom (6.6 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc/1.8.3/orc-1.8.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc/1.8.3/orc-1.8.3.pom (33 kB at 304 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom (20 kB at 177 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-shims/1.8.3/orc-shims-1.8.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-shims/1.8.3/orc-shims-1.8.3.pom (3.8 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.17.3/protobuf-java-3.17.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.17.3/protobuf-java-3.17.3.pom (5.6 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.17.3/protobuf-parent-3.17.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.17.3/protobuf-parent-3.17.3.pom (8.2 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.17.3/protobuf-bom-3.17.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.17.3/protobuf-bom-3.17.3.pom (3.5 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/airlift/aircompressor/0.21/aircompressor-0.21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/airlift/aircompressor/0.21/aircompressor-0.21.pom (6.3 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/airlift/airbase/112/airbase-112.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/airlift/airbase/112/airbase-112.pom (69 kB at 695 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.0-M1/junit-bom-5.8.0-M1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.0-M1/junit-bom-5.8.0-M1.pom (5.7 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom (1.4 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/threeten/threeten-extra/1.7.1/threeten-extra-1.7.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/threeten/threeten-extra/1.7.1/threeten-extra-1.7.1.pom (36 kB at 366 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.0/junit-bom-5.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.0/junit-bom-5.9.0.pom (5.6 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.5/jackson-databind-2.13.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.5/jackson-databind-2.13.5.pom (18 kB at 150 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.13.5/jackson-base-2.13.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.13.5/jackson-base-2.13.5.pom (10 kB at 94 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.5/jackson-annotations-2.13.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.5/jackson-annotations-2.13.5.pom (6.1 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.5/jackson-core-2.13.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.5/jackson-core-2.13.5.pom (6.5 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/joshelser/dropwizard-metrics-hadoop-metrics2-reporter/0.1.2/dropwizard-metrics-hadoop-metrics2-reporter-0.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/joshelser/dropwizard-metrics-hadoop-metrics2-reporter/0.1.2/dropwizard-metrics-hadoop-metrics2-reporter-0.1.2.pom (7.7 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.2/metrics-core-3.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.2/metrics-core-3.1.2.pom (846 B at 8.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.1.2/metrics-parent-3.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.1.2/metrics-parent-3.1.2.pom (12 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/2.6.0/hadoop-common-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/2.6.0/hadoop-common-2.6.0.pom (31 kB at 324 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/2.6.0/hadoop-project-dist-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/2.6.0/hadoop-project-dist-2.6.0.pom (18 kB at 194 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/2.6.0/hadoop-project-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/2.6.0/hadoop-project-2.6.0.pom (43 kB at 341 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/2.6.0/hadoop-main-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/2.6.0/hadoop-main-2.6.0.pom (18 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/2.6.0/hadoop-annotations-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/2.6.0/hadoop-annotations-2.6.0.pom (2.4 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/11.0.2/guava-11.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/11.0.2/guava-11.0.2.pom (5.5 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom (2.0 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xmlenc/xmlenc/0.52/xmlenc-0.52.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xmlenc/xmlenc/0.52/xmlenc-0.52.pom (623 B at 5.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom (7.8 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom (5.3 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom (3.8 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.4/commons-codec-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.4/commons-codec-1.4.pom (10 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.1/commons-net-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.1/commons-net-3.1.pom (18 kB at 217 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 215 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.pom (157 B at 1.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26.pom (6.3 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/project/6.1.26/project-6.1.26.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/project/6.1.26/project-6.1.26.pom (9.2 kB at 110 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom (3.3 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom (16 kB at 211 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-util/6.1.26/jetty-util-6.1.26.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-util/6.1.26/jetty-util-6.1.26.pom (3.9 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.9/jersey-core-1.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.9/jersey-core-1.9.pom (10 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.9/jersey-project-1.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.9/jersey-project-1.9.pom (18 kB at 218 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom (4.7 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.9/jersey-json-1.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.9/jersey-json-1.9.pom (11 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.8.3/jackson-core-asl-1.8.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.8.3/jackson-core-asl-1.8.3.pom (1.0 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.8.3/jackson-mapper-asl-1.8.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.8.3/jackson-mapper-asl-1.8.3.pom (1.2 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.8.3/jackson-jaxrs-1.8.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.8.3/jackson-jaxrs-1.8.3.pom (1.6 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.8.3/jackson-xc-1.8.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.8.3/jackson-xc-1.8.3.pom (1.6 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.9/jersey-server-1.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.9/jersey-server-1.9.pom (12 kB at 143 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/asm/asm/3.1/asm-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm/3.1/asm-3.1.pom (278 B at 3.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/asm/asm-parent/3.1/asm-parent-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm-parent/3.1/asm-parent-3.1.pom (4.2 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/tomcat/jasper-compiler/5.5.23/jasper-compiler-5.5.23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/tomcat/jasper-compiler/5.5.23/jasper-compiler-5.5.23.pom (919 B at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/tomcat/tomcat-parent/5.5.23/tomcat-parent-5.5.23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/tomcat/tomcat-parent/5.5.23/tomcat-parent-5.5.23.pom (898 B at 9.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/tomcat/jasper-runtime/5.5.23/jasper-runtime-5.5.23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/tomcat/jasper-runtime/5.5.23/jasper-runtime-5.5.23.pom (934 B at 9.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.4/servlet-api-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.4/servlet-api-2.4.pom (156 B at 1.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-el/commons-el/1.0/commons-el-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-el/commons-el/1.0/commons-el-1.0.pom (4.1 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 9.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 176 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 557 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jets3t/jets3t/0.9.0/jets3t-0.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jets3t/jets3t/0.9.0/jets3t-0.9.0.pom (2.4 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom (18 kB at 219 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/5/commons-parent-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/5/commons-parent-5.pom (16 kB at 165 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.1.2/httpclient-4.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.1.2/httpclient-4.1.2.pom (6.0 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.1.2/httpcomponents-client-4.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.1.2/httpcomponents-client-4.1.2.pom (11 kB at 134 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.1.1/project-4.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.1.1/project-4.1.1.pom (17 kB at 171 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.1.2/httpcore-4.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.1.2/httpcore-4.1.2.pom (7.4 kB at 94 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.1.2/httpcomponents-core-4.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.1.2/httpcomponents-core-4.1.2.pom (9.8 kB at 127 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jamesmurty/utils/java-xmlbuilder/0.4/java-xmlbuilder-0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jamesmurty/utils/java-xmlbuilder/0.4/java-xmlbuilder-0.4.pom (3.0 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/3/oss-parent-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/3/oss-parent-3.pom (3.4 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom (17 kB at 148 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom (31 kB at 321 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 178 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.6/commons-configuration-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.6/commons-configuration-1.6.pom (13 kB at 153 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 144 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom (357 B at 4.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 1.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 1.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 1.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (156 B at 1.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils-core/1.8.0/commons-beanutils-core-1.8.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils-core/1.8.0/commons-beanutils-core-1.8.0.pom (1.6 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom (2.7 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom (12 kB at 128 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.pom (1.6 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.4/avro-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.4/avro-1.7.4.pom (4.2 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.4/avro-parent-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.4/avro-parent-1.7.4.pom (15 kB at 176 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.4/avro-toplevel-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.4/avro-toplevel-1.7.4.pom (9.6 kB at 102 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.8.8/jackson-core-asl-1.8.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.8.8/jackson-core-asl-1.8.8.pom (1.0 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.8.8/jackson-mapper-asl-1.8.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.8.8/jackson-mapper-asl-1.8.8.pom (1.2 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.4.1/snappy-java-1.0.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.4.1/snappy-java-1.0.4.1.pom (9.3 kB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/2.6.0/hadoop-auth-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/2.6.0/hadoop-auth-2.6.0.pom (7.8 kB at 103 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.2.5/httpclient-4.2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.2.5/httpclient-4.2.5.pom (5.9 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.2.5/httpcomponents-client-4.2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.2.5/httpcomponents-client-4.2.5.pom (15 kB at 168 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/6/project-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/6/project-6.pom (24 kB at 289 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.2.4/httpcore-4.2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.2.4/httpcore-4.2.4.pom (5.7 kB at 65 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.2.4/httpcomponents-core-4.2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.2.4/httpcomponents-core-4.2.4.pom (12 kB at 117 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.6/commons-codec-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.6/commons-codec-1.6.pom (11 kB at 145 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom (42 kB at 349 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M15/apacheds-kerberos-codec-2.0.0-M15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M15/apacheds-kerberos-codec-2.0.0-M15.pom (3.9 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/server/apacheds-parent/2.0.0-M15/apacheds-parent-2.0.0-M15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/server/apacheds-parent/2.0.0-M15/apacheds-parent-2.0.0-M15.pom (43 kB at 453 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/project/project/31/project-31.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/project/project/31/project-31.pom (27 kB at 212 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/server/apacheds-i18n/2.0.0-M15/apacheds-i18n-2.0.0-M15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/server/apacheds-i18n/2.0.0-M15/apacheds-i18n-2.0.0-M15.pom (2.4 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-asn1-api/1.0.0-M20/api-asn1-api-1.0.0-M20.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-asn1-api/1.0.0-M20/api-asn1-api-1.0.0-M20.pom (2.7 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-asn1-parent/1.0.0-M20/api-asn1-parent-1.0.0-M20.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-asn1-parent/1.0.0-M20/api-asn1-parent-1.0.0-M20.pom (1.5 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-parent/1.0.0-M20/api-parent-1.0.0-M20.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-parent/1.0.0-M20/api-parent-1.0.0-M20.pom (27 kB at 300 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-util/1.0.0-M20/api-util-1.0.0-M20.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-util/1.0.0-M20/api-util-1.0.0-M20.pom (2.4 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.6/zookeeper-3.4.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.6/zookeeper-3.4.6.pom (3.4 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom (3.0 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom (9.3 kB at 83 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.6.1/slf4j-log4j12-1.6.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.6.1/slf4j-log4j12-1.6.1.pom (1.7 kB at 9.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.16/log4j-1.2.16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.16/log4j-1.2.16.pom (20 kB at 234 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jline/jline/0.9.94/jline-0.9.94.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jline/jline/0.9.94/jline-0.9.94.pom (6.4 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.pom (26 kB at 285 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.6.0/curator-framework-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.6.0/curator-framework-2.6.0.pom (2.2 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.6.0/apache-curator-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.6.0/apache-curator-2.6.0.pom (30 kB at 304 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.6.0/curator-client-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.6.0/curator-client-2.6.0.pom (2.3 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom (2.7 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom (12 kB at 149 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.42/jsch-0.1.42.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.42/jsch-0.1.42.pom (967 B at 6.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.6.0/curator-recipes-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.6.0/curator-recipes-2.6.0.pom (2.4 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/htrace/htrace-core/3.0.4/htrace-core-3.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/htrace/htrace-core/3.0.4/htrace-core-3.0.4.pom (2.8 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/htrace/htrace/3.0.4/htrace-3.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/htrace/htrace/3.0.4/htrace-3.0.4.pom (6.5 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/12.0.1/guava-12.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/12.0.1/guava-12.0.1.pom (5.3 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/12.0.1/guava-parent-12.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/12.0.1/guava-parent-12.0.1.pom (2.5 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.14/slf4j-api-1.7.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.14/slf4j-api-1.7.14.pom (2.8 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.14/slf4j-parent-1.7.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.14/slf4j-parent-1.7.14.pom (13 kB at 131 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.pom (26 kB at 366 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.pom (846 B at 8.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.1.0/metrics-parent-3.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.1.0/metrics-parent-3.1.0.pom (12 kB at 147 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.pom (967 B at 8.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.pom (1.4 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.4.2/jackson-databind-2.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.4.2/jackson-databind-2.4.2.pom (5.7 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.4/jackson-parent-2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.4/jackson-parent-2.4.pom (6.4 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/16/oss-parent-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/16/oss-parent-16.pom (19 kB at 195 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.4.0/jackson-annotations-2.4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.4.0/jackson-annotations-2.4.0.pom (1.2 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.4.2/jackson-core-2.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.4.2/jackson-core-2.4.2.pom (4.8 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javolution/javolution/5.5.1/javolution-5.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javolution/javolution/5.5.1/javolution-5.5.1.pom (14 kB at 159 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.4/ST4-4.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.4/ST4-4.0.4.pom (9.6 kB at 127 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.pom (4.1 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.3/antlr-master-3.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.3/antlr-master-3.3.pom (9.4 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.pom (7.5 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.pom (632 B at 6.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/derby/derby/10.14.2.0/derby-10.14.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/derby/derby/10.14.2.0/derby-10.14.2.0.pom (2.3 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/derby/derby-project/10.14.2.0/derby-project-10.14.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/derby/derby-project/10.14.2.0/derby-project-10.14.2.0.pom (5.9 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libfb303/0.9.3/libfb303-0.9.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libfb303/0.9.3/libfb303-0.9.3.pom (2.9 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.9.3/libthrift-0.9.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.9.3/libthrift-0.9.3.pom (3.3 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.12/slf4j-api-1.7.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.12/slf4j-api-1.7.12.pom (2.7 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.12/slf4j-parent-1.7.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.12/slf4j-parent-1.7.12.pom (12 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.4.1/httpclient-4.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.4.1/httpclient-4.4.1.pom (6.4 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.4.1/httpcomponents-client-4.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.4.1/httpcomponents-client-4.4.1.pom (16 kB at 201 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/7/project-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/7/project-7.pom (27 kB at 281 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.1/httpcore-4.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.1/httpcore-4.4.1.pom (4.6 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.1/httpcomponents-core-4.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.1/httpcomponents-core-4.4.1.pom (13 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.9/commons-codec-1.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.9/commons-codec-1.9.pom (12 kB at 158 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/32/commons-parent-32.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/32/commons-parent-32.pom (53 kB at 652 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.4/caffeine-2.8.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.4/caffeine-2.8.4.pom (2.1 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.4.0/checker-qual-3.4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.4.0/checker-qual-3.4.0.pom (2.2 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom (2.1 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom (5.4 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/5.2.0/curator-recipes-5.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/5.2.0/curator-recipes-5.2.0.pom (3.6 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.pom (15 kB at 188 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.pom (29 kB at 263 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jline/jline/2.14.6/jline-2.14.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jline/jline/2.14.6/jline-2.14.6.pom (20 kB at 207 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-rewrite/9.4.40.v20210413/jetty-rewrite-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-rewrite/9.4.40.v20210413/jetty-rewrite-9.4.40.v20210413.pom (1.4 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.9/joda-time-2.9.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.9/joda-time-2.9.9.pom (35 kB at 364 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-1.2-api/2.18.0/log4j-1.2-api-2.18.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-1.2-api/2.18.0/log4j-1.2-api-2.18.0.pom (8.8 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.18.0/log4j-2.18.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.18.0/log4j-2.18.0.pom (72 kB at 761 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/5/logging-parent-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/5/logging-parent-5.pom (3.3 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.18.0/log4j-api-2.18.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.18.0/log4j-api-2.18.0.pom (15 kB at 149 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-web/2.18.0/log4j-web-2.18.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-web/2.18.0/log4j-web-2.18.0.pom (7.1 kB at 94 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.18.0/log4j-core-2.18.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.18.0/log4j-core-2.18.0.pom (23 kB at 252 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.18.0/log4j-slf4j-impl-2.18.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.18.0/log4j-slf4j-impl-2.18.0.pom (12 kB at 144 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.23.0/commons-compress-1.23.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.23.0/commons-compress-1.23.0.pom (22 kB at 193 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.10.13/ant-1.10.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.10.13/ant-1.10.13.pom (17 kB at 174 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-parent/1.10.13/ant-parent-1.10.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-parent/1.10.13/ant-parent-1.10.13.pom (6.6 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.pom (3.2 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/sf/jpam/jpam/1.1/jpam-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/sf/jpam/jpam/1.1/jpam-1.1.pom (14 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tez/tez-api/0.10.2/tez-api-0.10.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tez/tez-api/0.10.2/tez-api-0.10.2.pom (7.8 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tez/tez/0.10.2/tez-0.10.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tez/tez/0.10.2/tez-0.10.2.pom (46 kB at 556 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom (11 kB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom (15 kB at 154 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 186 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 958 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.30/slf4j-log4j12-1.7.30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.30/slf4j-log4j12-1.7.30.pom (1.1 kB at 7.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom (1.1 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-client/3.3.1/hadoop-yarn-client-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-client/3.3.1/hadoop-yarn-client-3.3.1.pom (7.2 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.40.v20210413/websocket-client-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.40.v20210413/websocket-client-9.4.40.v20210413.pom (4.6 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-parent/9.4.40.v20210413/websocket-parent-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-parent/9.4.40.v20210413/websocket-parent-9.4.40.v20210413.pom (1.4 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.40.v20210413/jetty-client-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.40.v20210413/jetty-client-9.4.40.v20210413.pom (5.0 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.40.v20210413/websocket-common-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.40.v20210413/websocket-common-9.4.40.v20210413.pom (3.6 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.40.v20210413/websocket-api-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.40.v20210413/websocket-api-9.4.40.v20210413.pom (2.5 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jline/jline/3.9.0/jline-3.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jline/jline/3.9.0/jline-3.9.0.pom (15 kB at 145 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jline/jline-parent/3.9.0/jline-parent-3.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jline/jline-parent/3.9.0/jline-parent-3.9.0.pom (18 kB at 175 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom (21 kB at 207 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/38/commons-parent-38.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/38/commons-parent-38.pom (62 kB at 707 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.pom (3.9 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.3.4/jansi-2.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.3.4/jansi-2.3.4.pom (14 kB at 198 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.12/fusesource-pom-1.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.12/fusesource-pom-1.12.pom (15 kB at 200 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/tdunning/json/1.8/json-1.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/tdunning/json/1.8/json-1.8.pom (5.5 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-serde/4.0.0-beta-1/hive-serde-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-serde/4.0.0-beta-1/hive-serde-4.0.0-beta-1.pom (9.3 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service-rpc/4.0.0-beta-1/hive-service-rpc-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service-rpc/4.0.0-beta-1/hive-service-rpc-4.0.0-beta-1.pom (6.4 kB at 8.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 153 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-vector/12.0.0/arrow-vector-12.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-vector/12.0.0/arrow-vector-12.0.0.pom (10 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-java-root/12.0.0/arrow-java-root-12.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-java-root/12.0.0/arrow-java-root-12.0.0.pom (45 kB at 434 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.13.4/jackson-bom-2.13.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.13.4/jackson-bom-2.13.4.pom (17 kB at 197 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-bom/31.1-jre/guava-bom-31.1-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-bom/31.1-jre/guava-bom-31.1-jre.pom (1.7 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.82.Final/netty-bom-4.1.82.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.82.Final/netty-bom-4.1.82.Final.pom (13 kB at 169 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-bom/1.49.1/grpc-bom-1.49.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-bom/1.49.1/grpc-bom-1.49.1.pom (5.1 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.6/protobuf-bom-3.21.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.6/protobuf-bom-3.21.6.pom (3.5 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-format/12.0.0/arrow-format-12.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-format/12.0.0/arrow-format-12.0.0.pom (1.8 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.pom (4.6 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-core/12.0.0/arrow-memory-core-12.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-core/12.0.0/arrow-memory-core-12.0.0.pom (3.4 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory/12.0.0/arrow-memory-12.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory/12.0.0/arrow-memory-12.0.0.pom (1.4 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.pom (5.5 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.13.4/jackson-base-2.13.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.13.4/jackson-base-2.13.4.pom (9.9 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.pom (6.1 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.pom (16 kB at 111 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.pom (4.9 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.13.4/jackson-modules-java8-2.13.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.13.4/jackson-modules-java8-2.13.4.pom (3.2 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/carrotsearch/hppc/0.7.2/hppc-0.7.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/carrotsearch/hppc/0.7.2/hppc-0.7.2.pom (17 kB at 249 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/carrotsearch/hppc-parent/0.7.2/hppc-parent-0.7.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/carrotsearch/hppc-parent/0.7.2/hppc-parent-0.7.2.pom (20 kB at 253 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.11.1/avro-1.11.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.11.1/avro-1.11.1.pom (9.5 kB at 86 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.11.1/avro-parent-1.11.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.11.1/avro-parent-1.11.1.pom (24 kB at 264 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.11.1/avro-toplevel-1.11.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.11.1/avro-toplevel-1.11.1.pom (25 kB at 241 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom (20 kB at 143 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom (17 kB at 161 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom (7.5 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom (23 kB at 308 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom (5.5 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom (9.3 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7/jackson-databind-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7/jackson-databind-2.12.7.pom (15 kB at 201 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom (6.0 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 187 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/sf/opencsv/opencsv/2.3/opencsv-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/sf/opencsv/opencsv/2.3/opencsv-2.3.pom (5.4 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-hadoop-bundle/1.13.0/parquet-hadoop-bundle-1.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-hadoop-bundle/1.13.0/parquet-hadoop-bundle-1.13.0.pom (2.6 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet/1.13.0/parquet-1.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet/1.13.0/parquet-1.13.0.pom (25 kB at 263 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/esri/geometry/esri-geometry-api/2.2.4/esri-geometry-api-2.2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/esri/geometry/esri-geometry-api/2.2.4/esri-geometry-api-2.2.4.pom (6.1 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.6/jackson-core-2.9.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.6/jackson-core-2.9.6.pom (4.1 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.6/jackson-base-2.9.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.6/jackson-base-2.9.6.pom (5.4 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.6/jackson-bom-2.9.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.6/jackson-bom-2.9.6.pom (12 kB at 148 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.1/jackson-parent-2.9.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.1/jackson-parent-2.9.1.1.pom (8.0 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/33/oss-parent-33.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/33/oss-parent-33.pom (22 kB at 280 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service/4.0.0-beta-1/hive-service-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service/4.0.0-beta-1/hive-service-4.0.0-beta-1.pom (16 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-exec/4.0.0-beta-1/hive-exec-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-exec/4.0.0-beta-1/hive-exec-4.0.0-beta-1.pom (42 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-v2/2.1.0/atlas-client-v2-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-v2/2.1.0/atlas-client-v2-2.1.0.pom (1.7 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client/2.1.0/atlas-client-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client/2.1.0/atlas-client-2.1.0.pom (2.2 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/apache-atlas/2.1.0/apache-atlas-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/apache-atlas/2.1.0/apache-atlas-2.1.0.pom (89 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-intg/2.1.0/atlas-intg-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-intg/2.1.0/atlas-intg-2.1.0.pom (4.8 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.1.1/hadoop-common-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.1.1/hadoop-common-3.1.1.pom (46 kB at 543 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.1.1/hadoop-project-dist-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.1.1/hadoop-project-dist-3.1.1.pom (18 kB at 226 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.1.1/hadoop-project-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.1.1/hadoop-project-3.1.1.pom (68 kB at 805 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.1.1/hadoop-main-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.1.1/hadoop-main-3.1.1.pom (26 kB at 254 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.1.1/hadoop-annotations-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.1.1/hadoop-annotations-3.1.1.pom (1.9 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.2/httpclient-4.5.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.2/httpclient-4.5.2.pom (6.4 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.2/httpcomponents-client-4.5.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.2/httpcomponents-client-4.5.2.pom (16 kB at 184 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.4/httpcore-4.4.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.4/httpcore-4.4.4.pom (5.5 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.4/httpcomponents-core-4.4.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.4/httpcomponents-core-4.4.4.pom (13 kB at 174 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.pom (15 kB at 131 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.pom (22 kB at 255 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/37/commons-parent-37.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/37/commons-parent-37.pom (63 kB at 508 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.1.1/hadoop-auth-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.1.1/hadoop-auth-3.1.1.pom (8.2 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/4.41.1/nimbus-jose-jwt-4.41.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/4.41.1/nimbus-jose-jwt-4.41.1.pom (13 kB at 187 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.pom (9.0 kB at 105 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.3/minidev-parent-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.3/minidev-parent-2.3.pom (8.5 kB at 121 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.pom (12 kB at 124 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom (1.9 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom (5.5 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom (9.5 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.9/zookeeper-3.4.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.9/zookeeper-3.4.9.pom (4.2 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.10.5.Final/netty-3.10.5.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.10.5.Final/netty-3.10.5.Final.pom (29 kB at 412 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.12.0/curator-framework-2.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.12.0/curator-framework-2.12.0.pom (2.5 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.12.0/apache-curator-2.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.12.0/apache-curator-2.12.0.pom (32 kB at 443 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.12.0/curator-client-2.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.12.0/curator-client-2.12.0.pom (4.5 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.pom (4.0 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.pom (3.2 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.12.0/curator-recipes-2.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.12.0/curator-recipes-2.12.0.pom (2.9 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.7.8/jackson-databind-2.7.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.7.8/jackson-databind-2.7.8.pom (5.2 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.7/jackson-parent-2.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.7/jackson-parent-2.7.pom (8.1 kB at 109 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/25/oss-parent-25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/25/oss-parent-25.pom (19 kB at 242 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.7.0/jackson-annotations-2.7.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.7.0/jackson-annotations-2.7.0.pom (1.5 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.7.8/jackson-core-2.7.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.7.8/jackson-core-2.7.8.pom (5.1 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.pom (5.5 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.pom (7.1 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/24/oss-parent-24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/24/oss-parent-24.pom (19 kB at 162 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.6/commons-validator-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.6/commons-validator-1.6.pom (12 kB at 135 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.2/commons-beanutils-1.9.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.2/commons-beanutils-1.9.2.pom (14 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/33/commons-parent-33.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/33/commons-parent-33.pom (53 kB at 717 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.pom (10 kB at 113 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.9/jackson-jaxrs-base-2.9.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.9/jackson-jaxrs-base-2.9.9.pom (1.5 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.9.9/jackson-jaxrs-providers-2.9.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.9.9/jackson-jaxrs-providers-2.9.9.pom (4.1 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.9/jackson-base-2.9.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.9/jackson-base-2.9.9.pom (5.5 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.9/jackson-bom-2.9.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.9/jackson-bom-2.9.9.pom (12 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom (7.9 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/34/oss-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/34/oss-parent-34.pom (23 kB at 295 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.9/jackson-core-2.9.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.9/jackson-core-2.9.9.pom (4.1 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.pom (6.4 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.pom (1.9 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.0/jackson-parent-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.0/jackson-parent-2.9.0.pom (7.8 kB at 94 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/28/oss-parent-28.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/28/oss-parent-28.pom (20 kB at 250 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.9/jackson-jaxrs-json-provider-2.9.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.9/jackson-jaxrs-json-provider-2.9.9.pom (3.9 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.9/jackson-module-jaxb-annotations-2.9.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.9/jackson-module-jaxb-annotations-2.9.9.pom (2.0 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.9.9/jackson-modules-base-2.9.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.9.9/jackson-modules-base-2.9.9.pom (3.0 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.9/jackson-annotations-2.9.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.9/jackson-annotations-2.9.9.pom (2.6 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/4.3.20.RELEASE/spring-context-4.3.20.RELEASE.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/4.3.20.RELEASE/spring-context-4.3.20.RELEASE.pom (5.0 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/4.3.20.RELEASE/spring-aop-4.3.20.RELEASE.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/4.3.20.RELEASE/spring-aop-4.3.20.RELEASE.pom (2.7 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/4.3.20.RELEASE/spring-beans-4.3.20.RELEASE.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/4.3.20.RELEASE/spring-beans-4.3.20.RELEASE.pom (2.5 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/4.3.20.RELEASE/spring-core-4.3.20.RELEASE.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/4.3.20.RELEASE/spring-core-4.3.20.RELEASE.pom (2.5 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/4.3.20.RELEASE/spring-expression-4.3.20.RELEASE.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/4.3.20.RELEASE/spring-expression-4.3.20.RELEASE.pom (1.7 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.10/commons-configuration-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.10/commons-configuration-1.10.pom (21 kB at 259 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/cglib/cglib/2.2.2/cglib-2.2.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/cglib/cglib/2.2.2/cglib-2.2.2.pom (1.5 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1.pom (266 B at 2.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom (4.3 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-common/2.1.0/atlas-client-common-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-common/2.1.0/atlas-client-common-2.1.0.pom (1.9 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.4/httpclient-4.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.4/httpclient-4.5.4.pom (6.2 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.4/httpcomponents-client-4.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.4/httpcomponents-client-4.5.4.pom (15 kB at 163 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/10/httpcomponents-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/10/httpcomponents-parent-10.pom (34 kB at 437 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.7/httpcore-4.4.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.7/httpcore-4.4.7.pom (5.1 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.7/httpcomponents-core-4.4.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.7/httpcomponents-core-4.4.7.pom (14 kB at 148 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/8/project-8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/8/project-8.pom (35 kB at 427 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10.pom (12 kB at 133 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/35/commons-parent-35.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/35/commons-parent-35.pom (58 kB at 621 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/15/apache-15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/15/apache-15.pom (15 kB at 198 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom (7.8 kB at 95 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom (10 kB at 109 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom (4.2 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom (1.8 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom (5.1 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-multipart/1.19/jersey-multipart-1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-multipart/1.19/jersey-multipart-1.19.pom (8.4 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.pom (13 kB at 92 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-dbcp2/2.9.0/commons-dbcp2-2.9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-dbcp2/2.9.0/commons-dbcp2-2.9.0.pom (20 kB at 249 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.10.0/commons-pool2-2.10.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.10.0/commons-pool2-2.10.0.pom (18 kB at 218 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.pom (18 kB at 221 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-vector-code-gen/4.0.0-beta-1/hive-vector-code-gen-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-vector-code-gen/4.0.0-beta-1/hive-vector-code-gen-4.0.0-beta-1.pom (1.7 kB at 5.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-tez/4.0.0-beta-1/hive-llap-tez-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-tez/4.0.0-beta-1/hive-llap-tez-4.0.0-beta-1.pom (8.4 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-client/4.0.0-beta-1/hive-llap-client-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-client/4.0.0-beta-1/hive-llap-client-4.0.0-beta-1.pom (8.0 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1.pom (10.0 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-api/0.10.5/jjwt-api-0.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-api/0.10.5/jjwt-api-0.10.5.pom (1.3 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-root/0.10.5/jjwt-root-0.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-root/0.10.5/jjwt-root-0.10.5.pom (22 kB at 289 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-impl/0.10.5/jjwt-impl-0.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-impl/0.10.5/jjwt-impl-0.10.5.pom (2.0 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-jackson/0.10.5/jjwt-jackson-0.10.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-jackson/0.10.5/jjwt-jackson-0.10.5.pom (1.6 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.pom (6.3 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/1.0.1/aws-secretsmanager-caching-java-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/1.0.1/aws-secretsmanager-caching-java-1.0.1.pom (7.0 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.12.0/commons-io-2.12.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.12.0/commons-io-2.12.0.pom (20 kB at 254 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/57/commons-parent-57.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/57/commons-parent-57.pom (83 kB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom (5.6 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom (21 kB at 274 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom (82 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-registry/3.3.1/hadoop-yarn-registry-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-registry/3.3.1/hadoop-yarn-registry-3.3.1.pom (1.4 kB at 4.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.5.1/ivy-2.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.5.1/ivy-2.5.1.pom (6.8 kB at 99 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.pom (22 kB at 270 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/datanucleus/datanucleus-core/5.2.10/datanucleus-core-5.2.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/datanucleus/datanucleus-core/5.2.10/datanucleus-core-5.2.10.pom (5.1 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/datanucleus/datanucleus-maven-parent/5.0.0/datanucleus-maven-parent-5.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/datanucleus/datanucleus-maven-parent/5.0.0/datanucleus-maven-parent-5.0.0.pom (11 kB at 112 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.pom (1.5 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-netty/12.0.0/arrow-memory-netty-12.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-netty/12.0.0/arrow-memory-netty-12.0.0.pom (2.9 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.pom (9.3 kB at 106 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom (11 kB at 146 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom (3.8 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom (14 kB at 173 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.pom (1.9 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.10/json-smart-2.4.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.10/json-smart-2.4.10.pom (9.2 kB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.pom (11 kB at 149 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.3/asm-9.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.3/asm-9.3.pom (2.4 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/commons-compiler/3.0.11/commons-compiler-3.0.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/commons-compiler/3.0.11/commons-compiler-3.0.11.pom (1.2 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino-parent/3.0.11/janino-parent-3.0.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino-parent/3.0.11/janino-parent-3.0.11.pom (7.0 kB at 83 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino/3.0.11/janino-3.0.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino/3.0.11/janino-3.0.11.pom (2.0 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-server/4.0.0-beta-1/hive-llap-server-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-server/4.0.0-beta-1/hive-llap-server-4.0.0-beta-1.pom (16 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-all/4.1.77.Final/netty-all-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-all/4.1.77.Final/netty-all-4.1.77.Final.pom (33 kB at 287 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.pom (1.6 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.77.Final/netty-parent-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.77.Final/netty-parent-4.1.77.Final.pom (75 kB at 846 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.pom (4.4 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-dns/4.1.77.Final/netty-codec-dns-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-dns/4.1.77.Final/netty-codec-dns-4.1.77.Final.pom (2.1 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-haproxy/4.1.77.Final/netty-codec-haproxy-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-haproxy/4.1.77.Final/netty-codec-haproxy-4.1.77.Final.pom (1.8 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.77.Final/netty-codec-http-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.77.Final/netty-codec-http-4.1.77.Final.pom (3.3 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.77.Final/netty-codec-http2-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.77.Final/netty-codec-http2-4.1.77.Final.pom (3.6 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-memcache/4.1.77.Final/netty-codec-memcache-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-memcache/4.1.77.Final/netty-codec-memcache-4.1.77.Final.pom (2.0 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-mqtt/4.1.77.Final/netty-codec-mqtt-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-mqtt/4.1.77.Final/netty-codec-mqtt-4.1.77.Final.pom (2.1 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-redis/4.1.77.Final/netty-codec-redis-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-redis/4.1.77.Final/netty-codec-redis-4.1.77.Final.pom (2.0 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-smtp/4.1.77.Final/netty-codec-smtp-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-smtp/4.1.77.Final/netty-codec-smtp-4.1.77.Final.pom (2.0 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.77.Final/netty-codec-socks-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.77.Final/netty-codec-socks-4.1.77.Final.pom (2.0 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-stomp/4.1.77.Final/netty-codec-stomp-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-stomp/4.1.77.Final/netty-codec-stomp-4.1.77.Final.pom (2.0 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-xml/4.1.77.Final/netty-codec-xml-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-xml/4.1.77.Final/netty-codec-xml-4.1.77.Final.pom (1.9 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.pom (13 kB at 134 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.pom (3.7 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.77.Final/netty-handler-proxy-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.77.Final/netty-handler-proxy-4.1.77.Final.pom (2.8 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.pom (1.6 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns/4.1.77.Final/netty-resolver-dns-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns/4.1.77.Final/netty-resolver-dns-4.1.77.Final.pom (3.2 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.pom (1.9 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-rxtx/4.1.77.Final/netty-transport-rxtx-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-rxtx/4.1.77.Final/netty-transport-rxtx-4.1.77.Final.pom (1.8 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-sctp/4.1.77.Final/netty-transport-sctp-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-sctp/4.1.77.Final/netty-transport-sctp-4.1.77.Final.pom (2.4 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-udt/4.1.77.Final/netty-transport-udt-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-udt/4.1.77.Final/netty-transport-udt-4.1.77.Final.pom (2.7 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.pom (2.1 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.pom (26 kB at 263 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.77.Final/netty-transport-classes-kqueue-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.77.Final/netty-transport-classes-kqueue-4.1.77.Final.pom (2.1 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.77.Final/netty-resolver-dns-classes-macos-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.77.Final/netty-resolver-dns-classes-macos-4.1.77.Final.pom (2.0 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final.pom (19 kB at 164 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-kqueue/4.1.77.Final/netty-transport-native-kqueue-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-kqueue/4.1.77.Final/netty-transport-native-kqueue-4.1.77.Final.pom (25 kB at 257 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.77.Final/netty-resolver-dns-native-macos-4.1.77.Final.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.77.Final/netty-resolver-dns-native-macos-4.1.77.Final.pom (13 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom (7.8 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/lmax/disruptor/3.3.7/disruptor-3.3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/lmax/disruptor/3.3.7/disruptor-3.3.7.pom (1.3 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-hplsql/4.0.0-beta-1/hive-hplsql-4.0.0-beta-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-hplsql/4.0.0-beta-1/hive-hplsql-4.0.0-beta-1.pom (4.6 kB at 7.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.9.3/antlr4-runtime-4.9.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.9.3/antlr4-runtime-4.9.3.pom (3.6 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.9.3/antlr4-master-4.9.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.9.3/antlr4-master-4.9.3.pom (4.4 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.31/nimbus-jose-jwt-9.31.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.31/nimbus-jose-jwt-9.31.pom (13 kB at 155 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-runner/9.4.40.v20210413/jetty-runner-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-runner/9.4.40.v20210413/jetty-runner-9.4.40.v20210413.pom (4.6 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-plus/9.4.40.v20210413/jetty-plus-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-plus/9.4.40.v20210413/jetty-plus-9.4.40.v20210413.pom (2.5 kB at 7.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jndi/9.4.40.v20210413/jetty-jndi-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jndi/9.4.40.v20210413/jetty-jndi-9.4.40.v20210413.pom (2.6 kB at 7.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-annotations/9.4.40.v20210413/jetty-annotations-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-annotations/9.4.40.v20210413/jetty-annotations-9.4.40.v20210413.pom (2.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.0/asm-9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.0/asm-9.0.pom (2.7 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.pom (3.3 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.pom (2.9 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.pom (3.0 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jaas/9.4.40.v20210413/jetty-jaas-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jaas/9.4.40.v20210413/jetty-jaas-9.4.40.v20210413.pom (3.8 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.40.v20210413/websocket-server-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.40.v20210413/websocket-server-9.4.40.v20210413.pom (4.1 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.40.v20210413/websocket-servlet-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.40.v20210413/websocket-servlet-9.4.40.v20210413.pom (2.2 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jsp/9.4.40.v20210413/apache-jsp-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jsp/9.4.40.v20210413/apache-jsp-9.4.40.v20210413.pom (4.3 kB at 40 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-schemas/3.1.2/jetty-schemas-3.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-schemas/3.1.2/jetty-schemas-3.1.2.pom (5.3 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-toolchain/1.6/jetty-toolchain-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-toolchain/1.6/jetty-toolchain-1.6.pom (17 kB at 208 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jstl/9.4.40.v20210413/apache-jstl-9.4.40.v20210413.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jstl/9.4.40.v20210413/apache-jstl-9.4.40.v20210413.pom (2.3 kB at 9.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.pom (5.3 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard/1.2.5/taglibs-standard-1.2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard/1.2.5/taglibs-standard-1.2.5.pom (4.3 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-parent/3/taglibs-parent-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-parent/3/taglibs-parent-3.pom (7.6 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.pom (6.9 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-saml-opensamlv3/4.5.5/pac4j-saml-opensamlv3-4.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-saml-opensamlv3/4.5.5/pac4j-saml-opensamlv3-4.5.5.pom (10 kB at 106 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j/4.5.5/pac4j-4.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j/4.5.5/pac4j-4.5.5.pom (18 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-core/4.5.5/pac4j-core-4.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-core/4.5.5/pac4j-core-4.5.5.pom (4.8 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-core/3.4.5/opensaml-core-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-core/3.4.5/opensaml-core-3.4.5.pom (2.6 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-parent/3.4.5/opensaml-parent-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-parent/3.4.5/opensaml-parent-3.4.5.pom (6.9 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/parent/7.11.0/parent-7.11.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/shibboleth/parent/7.11.0/parent-7.11.0.pom (48 kB at 503 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/4.3.19.RELEASE/spring-framework-bom-4.3.19.RELEASE.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/4.3.19.RELEASE/spring-framework-bom-4.3.19.RELEASE.pom (5.1 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9/joda-time-2.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9/joda-time-2.9.pom (29 kB at 354 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/utilities/java-support/7.5.1/java-support-7.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/shibboleth/utilities/java-support/7.5.1/java-support-7.5.1.pom (5.9 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.pom (6.8 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/20.0/guava-parent-20.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/20.0/guava-parent-20.0.pom (9.9 kB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-api/3.4.5/opensaml-saml-api-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-api/3.4.5/opensaml-saml-api-3.4.5.pom (2.6 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-api/3.4.5/opensaml-xmlsec-api-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-api/3.4.5/opensaml-xmlsec-api-3.4.5.pom (2.1 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-api/3.4.5/opensaml-security-api-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-api/3.4.5/opensaml-security-api-3.4.5.pom (3.3 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-api/3.4.5/opensaml-messaging-api-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-api/3.4.5/opensaml-messaging-api-3.4.5.pom (1.8 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.pom (6.4 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.3/httpcomponents-client-4.5.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.3/httpcomponents-client-4.5.3.pom (16 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.6/httpcore-4.4.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.6/httpcore-4.4.6.pom (5.1 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.6/httpcomponents-core-4.4.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.6/httpcomponents-core-4.4.6.pom (13 kB at 105 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.1.3/cryptacular-1.1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.1.3/cryptacular-1.1.3.pom (12 kB at 105 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.59/bcprov-jdk15on-1.59.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.59/bcprov-jdk15on-1.59.pom (1.1 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-api/3.4.5/opensaml-soap-api-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-api/3.4.5/opensaml-soap-api-3.4.5.pom (1.7 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-api/3.4.5/opensaml-profile-api-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-api/3.4.5/opensaml-profile-api-3.4.5.pom (2.6 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-api/3.4.5/opensaml-storage-api-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-api/3.4.5/opensaml-storage-api-3.4.5.pom (1.3 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-impl/3.4.5/opensaml-saml-impl-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-impl/3.4.5/opensaml-saml-impl-3.4.5.pom (6.1 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-impl/3.4.5/opensaml-security-impl-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-impl/3.4.5/opensaml-security-impl-3.4.5.pom (2.5 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-impl/3.4.5/opensaml-xmlsec-impl-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-impl/3.4.5/opensaml-xmlsec-impl-3.4.5.pom (3.8 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-impl/3.4.5/opensaml-soap-impl-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-impl/3.4.5/opensaml-soap-impl-3.4.5.pom (2.8 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-impl/3.4.5/opensaml-profile-impl-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-impl/3.4.5/opensaml-profile-impl-3.4.5.pom (3.4 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-impl/3.4.5/opensaml-messaging-impl-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-impl/3.4.5/opensaml-messaging-impl-3.4.5.pom (2.2 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-impl/3.4.5/opensaml-storage-impl-3.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-impl/3.4.5/opensaml-storage-impl-3.4.5.pom (6.4 kB at 84 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ldaptive/ldaptive/1.0.13/ldaptive-1.0.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ldaptive/ldaptive/1.0.13/ldaptive-1.0.13.pom (9.5 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/json/javax.json-api/1.0/javax.json-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/json/javax.json-api/1.0/javax.json-api-1.0.pom (6.4 kB at 70 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/json/1.0/json-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/json/1.0/json-1.0.pom (10 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/spy/spymemcached/2.12.3/spymemcached-2.12.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/spy/spymemcached/2.12.3/spymemcached-2.12.3.pom (1.9 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.pom (9.2 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/json/1.0.4/json-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/json/1.0.4/json-1.0.4.pom (11 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom (11 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom (13 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom (2.4 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.2.4/cryptacular-1.2.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.2.4/cryptacular-1.2.4.pom (13 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.pom +[INFO] Downloading from repository-release: https://repository.apache.org/content/repositories/releases/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.pom +[INFO] Downloading from shibboleth: https://build.shibboleth.net/nexus/content/groups/public/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.pom +[INFO] Downloaded from shibboleth: https://build.shibboleth.net/nexus/content/groups/public/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.pom (6.7 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/parent-v3/9/parent-v3-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/shibboleth/parent-v3/9/parent-v3-9.pom (40 kB at 421 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/utilities/java-support/7.2.0/java-support-7.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/shibboleth/utilities/java-support/7.2.0/java-support-7.2.0.pom (4.4 kB at 59 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.pom (5.7 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom (7.7 kB at 90 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-core/3.2.0/opensaml-core-3.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-core/3.2.0/opensaml-core-3.2.0.pom (2.1 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-parent/3.2.0/opensaml-parent-3.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-parent/3.2.0/opensaml-parent-3.2.0.pom (4.5 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-api/3.2.0/opensaml-security-api-3.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-api/3.2.0/opensaml-security-api-3.2.0.pom (2.2 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-api/3.2.0/opensaml-messaging-api-3.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-api/3.2.0/opensaml-messaging-api-3.2.0.pom (1.5 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.3.6/httpclient-4.3.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.3.6/httpclient-4.3.6.pom (5.2 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.3.6/httpcomponents-client-4.3.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.3.6/httpcomponents-client-4.3.6.pom (16 kB at 170 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.3.3/httpcore-4.3.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.3.3/httpcore-4.3.3.pom (4.6 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.3.3/httpcomponents-core-4.3.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.3.3/httpcomponents-core-4.3.3.pom (13 kB at 150 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.0/cryptacular-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.0/cryptacular-1.0.pom (9.1 kB at 128 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.50/bcprov-jdk15on-1.50.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.50/bcprov-jdk15on-1.50.pom (1.2 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.53/bcprov-jdk15on-1.53.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.53/bcprov-jdk15on-1.53.pom (1.2 kB at 9.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-api/3.2.0/opensaml-xmlsec-api-3.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-api/3.2.0/opensaml-xmlsec-api-3.2.0.pom (1.8 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.pom (9.3 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-impl/3.2.0/opensaml-xmlsec-impl-3.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-impl/3.2.0/opensaml-xmlsec-impl-3.2.0.pom (1.9 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-impl/3.2.0/opensaml-security-impl-3.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-impl/3.2.0/opensaml-security-impl-3.2.0.pom (1.9 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.6/joda-time-2.10.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.6/joda-time-2.10.6.pom (37 kB at 373 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom (10 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom (14 kB at 154 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-master/4/velocity-master-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-master/4/velocity-master-4.pom (7.8 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.pom (30 kB at 330 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom (78 kB at 1.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.pom (1.2 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/santuario/xmlsec/2.3.0/xmlsec-2.3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/santuario/xmlsec/2.3.0/xmlsec-2.3.0.pom (30 kB at 329 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-runtime/2.4.1/jamon-runtime-2.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-runtime/2.4.1/jamon-runtime-2.4.1.pom (1.5 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-java-parent/2.4.1/jamon-java-parent-2.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-java-parent/2.4.1/jamon-java-parent-2.4.1.pom (4.4 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-parent/2.4.1/jamon-parent-2.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-parent/2.4.1/jamon-parent-2.4.1.pom (7.7 kB at 84 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.15.0/libthrift-0.15.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.15.0/libthrift-0.15.0.pom (2.7 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.28/slf4j-api-1.7.28.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.28/slf4j-api-1.7.28.pom (3.8 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.28/slf4j-parent-1.7.28.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.28/slf4j-parent-1.7.28.pom (14 kB at 194 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10.pom (6.6 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.10/httpcomponents-client-4.5.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.10/httpcomponents-client-4.5.10.pom (16 kB at 178 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.pom (5.0 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.12/httpcomponents-core-4.4.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.12/httpcomponents-core-4.4.12.pom (13 kB at 176 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar (15 kB at 181 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar (63 kB at 388 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 256 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-metastore/4.0.0-beta-1/hive-metastore-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar (361 kB at 1.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-common/4.0.0-beta-1/hive-common-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar (123 kB at 627 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-classification/4.0.0-beta-1/hive-classification-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 1.8 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-storage-api/4.0.0-beta-1/hive-storage-api-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar (4.9 MB at 14 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar (587 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-core/1.8.3/orc-core-1.8.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-metastore/4.0.0-beta-1/hive-metastore-4.0.0-beta-1.jar (41 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-shims/1.8.3/orc-shims-1.8.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-classification/4.0.0-beta-1/hive-classification-4.0.0-beta-1.jar (11 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/airlift/aircompressor/0.21/aircompressor-0.21.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-core/1.8.3/orc-core-1.8.3.jar (1.2 MB at 2.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/17.0.0/annotations-17.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-shims/1.8.3/orc-shims-1.8.3.jar (29 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/threeten/threeten-extra/1.7.1/threeten-extra-1.7.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-storage-api/4.0.0-beta-1/hive-storage-api-4.0.0-beta-1.jar (264 kB at 401 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/17.0.0/annotations-17.0.0.jar (19 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.40.v20210413/jetty-http-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/airlift/aircompressor/0.21/aircompressor-0.21.jar (184 kB at 264 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-rewrite/9.4.40.v20210413/jetty-rewrite-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar (269 kB at 357 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.40.v20210413/jetty-webapp-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/threeten/threeten-extra/1.7.1/threeten-extra-1.7.1.jar (257 kB at 309 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.40.v20210413/jetty-xml-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.40.v20210413/jetty-http-9.4.40.v20210413.jar (222 kB at 266 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.9/joda-time-2.9.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.40.v20210413/jetty-webapp-9.4.40.v20210413.jar (140 kB at 164 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-web/2.18.0/log4j-web-2.18.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-rewrite/9.4.40.v20210413/jetty-rewrite-9.4.40.v20210413.jar (45 kB at 49 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tez/tez-api/0.10.2/tez-api-0.10.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.9/joda-time-2.9.9.jar (634 kB at 665 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.1/hadoop-auth-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.1/hadoop-auth-3.3.1.jar (104 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.30/slf4j-log4j12-1.7.30.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.40.v20210413/jetty-xml-9.4.40.v20210413.jar (68 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.1/hadoop-annotations-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-web/2.18.0/log4j-web-2.18.0.jar (36 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-api/3.3.1/hadoop-yarn-api-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.1/hadoop-annotations-3.3.1.jar (25 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.11/jaxb-api-2.2.11.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.30/slf4j-log4j12-1.7.30.jar (12 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tez/tez-api/0.10.2/tez-api-0.10.2.jar (1.1 MB at 898 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-common/3.3.1/hadoop-yarn-common-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-common/4.0.0-beta-1/hive-common-4.0.0-beta-1.jar (597 kB at 484 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-servlet/4.0/guice-servlet-4.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.11/jaxb-api-2.2.11.jar (102 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-servlet/4.0/guice-servlet-4.0.jar (77 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar (1.5 MB at 1.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-guice/1.19/jersey-guice-1.19.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-common/3.3.1/hadoop-yarn-common-3.3.1.jar (3.0 MB at 2.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-client/3.3.1/hadoop-yarn-client-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0.jar (668 kB at 478 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jline/jline/3.9.0/jline-3.9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-api/3.3.1/hadoop-yarn-api-3.3.1.jar (3.6 MB at 2.6 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.19/jersey-json-1.19.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-guice/1.19/jersey-guice-1.19.jar (16 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 3.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.2/jackson-core-asl-1.9.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-client/3.3.1/hadoop-yarn-client-3.3.1.jar (288 kB at 196 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.2/jackson-mapper-asl-1.9.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.19/jersey-json-1.19.jar (165 kB at 110 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.9.2/jackson-jaxrs-1.9.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jline/jline/3.9.0/jline-3.9.0.jar (707 kB at 460 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.9.2/jackson-xc-1.9.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.2/jackson-core-asl-1.9.2.jar (228 kB at 147 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-hdfs-client/3.3.1/hadoop-hdfs-client-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.9.2/jackson-jaxrs-1.9.2.jar (18 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp/okhttp/2.7.5/okhttp-2.7.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar (890 kB at 562 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.6.0/okio-1.6.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.2/jackson-mapper-asl-1.9.2.jar (766 kB at 479 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.3.4/jansi-2.3.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.9.2/jackson-xc-1.9.2.jar (27 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/tdunning/json/1.8/json-1.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.6.0/okio-1.6.0.jar (66 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.3.4/jansi-2.3.4.jar (214 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp/okhttp/2.7.5/okhttp-2.7.5.jar (331 kB at 194 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/tdunning/json/1.8/json-1.8.jar (25 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.5/jackson-databind-2.13.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-hdfs-client/3.3.1/hadoop-hdfs-client-3.3.1.jar (5.5 MB at 3.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.5/jackson-core-2.13.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.jar (112 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/joshelser/dropwizard-metrics-hadoop-metrics2-reporter/0.1.2/dropwizard-metrics-hadoop-metrics2-reporter-0.1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.jar (36 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-serde/4.0.0-beta-1/hive-serde-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.jar (16 kB at 8.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/joshelser/dropwizard-metrics-hadoop-metrics2-reporter/0.1.2/dropwizard-metrics-hadoop-metrics2-reporter-0.1.2.jar (16 kB at 8.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-vector/12.0.0/arrow-vector-12.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.5/jackson-databind-2.13.5.jar (1.5 MB at 825 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-format/12.0.0/arrow-format-12.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.5/jackson-core-2.13.5.jar (375 kB at 198 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.jar (33 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/carrotsearch/hppc/0.7.2/hppc-0.7.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-format/12.0.0/arrow-format-12.0.0.jar (110 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-vector/12.0.0/arrow-vector-12.0.0.jar (1.9 MB at 932 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.11.1/avro-1.11.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar (121 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/sf/opencsv/opencsv/2.3/opencsv-2.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.jar (65 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-hadoop-bundle/1.13.0/parquet-hadoop-bundle-1.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/carrotsearch/hppc/0.7.2/hppc-0.7.2.jar (1.7 MB at 798 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/esri/geometry/esri-geometry-api/2.2.4/esri-geometry-api-2.2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.11.1/avro-1.11.1.jar (610 kB at 288 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-shims/4.0.0-beta-1/hive-shims-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/sf/opencsv/opencsv/2.3/opencsv-2.3.jar (20 kB at 9.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-common/4.0.0-beta-1/hive-shims-common-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/esri/geometry/esri-geometry-api/2.2.4/esri-geometry-api-2.2.4.jar (948 kB at 425 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-0.23/4.0.0-beta-1/hive-shims-0.23-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-serde/4.0.0-beta-1/hive-serde-4.0.0-beta-1.jar (987 kB at 388 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-resourcemanager/3.3.1/hadoop-yarn-server-resourcemanager-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-hadoop-bundle/1.13.0/parquet-hadoop-bundle-1.13.0.jar (6.2 MB at 2.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-common/3.3.1/hadoop-yarn-server-common-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-shims/4.0.0-beta-1/hive-shims-4.0.0-beta-1.jar (11 kB at 4.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/specs/geronimo-jcache_1.0_spec/1.0-alpha-1/geronimo-jcache_1.0_spec-1.0-alpha-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-common/4.0.0-beta-1/hive-shims-common-4.0.0-beta-1.jar (69 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ehcache/ehcache/3.3.1/ehcache-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/specs/geronimo-jcache_1.0_spec/1.0-alpha-1/geronimo-jcache_1.0_spec-1.0-alpha-1.jar (55 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP-java7/2.4.12/HikariCP-java7-2.4.12.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-common/3.3.1/hadoop-yarn-server-common-3.3.1.jar (1.4 MB at 498 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/microsoft/sqlserver/mssql-jdbc/6.2.1.jre7/mssql-jdbc-6.2.1.jre7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ehcache/ehcache/3.3.1/ehcache-3.3.1.jar (1.7 MB at 581 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-applicationhistoryservice/3.3.1/hadoop-yarn-server-applicationhistoryservice-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP-java7/2.4.12/HikariCP-java7-2.4.12.jar (134 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/de/ruedigermoeller/fst/2.50/fst-2.50.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-resourcemanager/3.3.1/hadoop-yarn-server-resourcemanager-3.3.1.jar (2.5 MB at 824 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/microsoft/sqlserver/mssql-jdbc/6.2.1.jre7/mssql-jdbc-6.2.1.jre7.jar (792 kB at 262 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/java-util/1.9.0/java-util-1.9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/de/ruedigermoeller/fst/2.50/fst-2.50.jar (388 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/json-io/2.5.1/json-io-2.5.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-0.23/4.0.0-beta-1/hive-shims-0.23-4.0.0-beta-1.jar (61 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-web-proxy/3.3.1/hadoop-yarn-server-web-proxy-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.jar (54 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.60/bcpkix-jdk15on-1.60.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/json-io/2.5.1/json-io-2.5.1.jar (75 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-applicationhistoryservice/3.3.1/hadoop-yarn-server-applicationhistoryservice-3.3.1.jar (258 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-standalone-metastore-common/4.0.0-beta-1/hive-standalone-metastore-common-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/java-util/1.9.0/java-util-1.9.0.jar (58 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-jexl3/3.3/commons-jexl3-3.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.jar (1.0 MB at 322 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.51.0/grpc-netty-shaded-1.51.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.60/bcpkix-jdk15on-1.60.jar (797 kB at 244 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.25.0/perfmark-api-0.25.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-jexl3/3.3/commons-jexl3-3.3.jar (521 kB at 159 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.51.0/grpc-core-1.51.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-web-proxy/3.3.1/hadoop-yarn-server-web-proxy-3.3.1.jar (57 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.25.0/perfmark-api-0.25.0.jar (6.7 kB at 2.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.51.0/grpc-protobuf-1.51.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.51.0/grpc-core-1.51.0.jar (731 kB at 216 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.51.0/grpc-api-1.51.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.51.0/grpc-protobuf-1.51.0.jar (5.1 kB at 1.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.51.0/grpc-context-1.51.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar (3.1 kB at 892 B/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.51.0/grpc-api-1.51.0.jar (261 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.51.0/grpc-protobuf-lite-1.51.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.51.0/grpc-netty-shaded-1.51.0.jar (9.3 MB at 2.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.51.0/grpc-stub-1.51.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.51.0/grpc-context-1.51.0.jar (31 kB at 8.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.51.0/grpc-stub-1.51.0.jar (51 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0.jar (1.8 MB at 486 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7.jar (1.7 MB at 457 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.4/caffeine-2.8.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar (62 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.4.0/checker-qual-3.4.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar (159 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javolution/javolution/5.5.1/javolution-5.5.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.51.0/grpc-protobuf-lite-1.51.0.jar (7.6 kB at 2.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.4/caffeine-2.8.4.jar (881 kB at 233 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.4.0/checker-qual-3.4.0.jar (212 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar (12 kB at 3.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.jar (2.6 MB at 664 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (8.8 kB at 2.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/derby/derby/10.14.2.0/derby-10.14.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javolution/javolution/5.5.1/javolution-5.5.1.jar (395 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libfb303/0.9.3/libfb303-0.9.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (3.5 kB at 881 B/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service/4.0.0-beta-1/hive-service-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.jar (58 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service-rpc/4.0.0-beta-1/hive-service-rpc-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libfb303/0.9.3/libfb303-0.9.3.jar (314 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-server/4.0.0-beta-1/hive-llap-server-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/derby/derby/10.14.2.0/derby-10.14.2.0.jar (3.2 MB at 794 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service/4.0.0-beta-1/hive-service-4.0.0-beta-1.jar (853 kB at 188 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-api/0.10.5/jjwt-api-0.10.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-api/0.10.5/jjwt-api-0.10.5.jar (75 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-impl/0.10.5/jjwt-impl-0.10.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-standalone-metastore-common/4.0.0-beta-1/hive-standalone-metastore-common-4.0.0-beta-1.jar (19 MB at 4.1 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-jackson/0.10.5/jjwt-jackson-0.10.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-impl/0.10.5/jjwt-impl-0.10.5.jar (68 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-client/4.0.0-beta-1/hive-llap-client-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-jackson/0.10.5/jjwt-jackson-0.10.5.jar (4.7 kB at 996 B/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-all/4.1.77.Final/netty-all-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-all/4.1.77.Final/netty-all-4.1.77.Final.jar (4.4 kB at 906 B/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service-rpc/4.0.0-beta-1/hive-service-rpc-4.0.0-beta-1.jar (1.8 MB at 369 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar (304 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-dns/4.1.77.Final/netty-codec-dns-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-dns/4.1.77.Final/netty-codec-dns-4.1.77.Final.jar (65 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-haproxy/4.1.77.Final/netty-codec-haproxy-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar (337 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.77.Final/netty-codec-http-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-haproxy/4.1.77.Final/netty-codec-haproxy-4.1.77.Final.jar (36 kB at 7.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.77.Final/netty-codec-http2-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.77.Final/netty-codec-http-4.1.77.Final.jar (639 kB at 125 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-memcache/4.1.77.Final/netty-codec-memcache-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1.jar (661 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-mqtt/4.1.77.Final/netty-codec-mqtt-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-memcache/4.1.77.Final/netty-codec-memcache-4.1.77.Final.jar (43 kB at 8.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-redis/4.1.77.Final/netty-codec-redis-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.77.Final/netty-codec-http2-4.1.77.Final.jar (474 kB at 91 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-smtp/4.1.77.Final/netty-codec-smtp-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-redis/4.1.77.Final/netty-codec-redis-4.1.77.Final.jar (45 kB at 8.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.77.Final/netty-codec-socks-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-mqtt/4.1.77.Final/netty-codec-mqtt-4.1.77.Final.jar (100 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-stomp/4.1.77.Final/netty-codec-stomp-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-smtp/4.1.77.Final/netty-codec-smtp-4.1.77.Final.jar (20 kB at 3.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-xml/4.1.77.Final/netty-codec-xml-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-stomp/4.1.77.Final/netty-codec-stomp-4.1.77.Final.jar (29 kB at 5.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.77.Final/netty-codec-socks-4.1.77.Final.jar (119 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.77.Final/netty-handler-proxy-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-xml/4.1.77.Final/netty-codec-xml-4.1.77.Final.jar (18 kB at 3.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-client/4.0.0-beta-1/hive-llap-client-4.0.0-beta-1.jar (154 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns/4.1.77.Final/netty-resolver-dns-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar (653 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar (38 kB at 6.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-rxtx/4.1.77.Final/netty-transport-rxtx-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.77.Final/netty-handler-proxy-4.1.77.Final.jar (24 kB at 4.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-sctp/4.1.77.Final/netty-transport-sctp-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar (481 kB at 86 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-udt/4.1.77.Final/netty-transport-udt-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns/4.1.77.Final/netty-resolver-dns-4.1.77.Final.jar (157 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-rxtx/4.1.77.Final/netty-transport-rxtx-4.1.77.Final.jar (18 kB at 3.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-server/4.0.0-beta-1/hive-llap-server-4.0.0-beta-1.jar (880 kB at 157 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.77.Final/netty-transport-classes-kqueue-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-sctp/4.1.77.Final/netty-transport-sctp-4.1.77.Final.jar (49 kB at 8.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.77.Final/netty-resolver-dns-classes-macos-4.1.77.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-udt/4.1.77.Final/netty-transport-udt-4.1.77.Final.jar (32 kB at 5.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar (43 kB at 7.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.77.Final/netty-resolver-dns-classes-macos-4.1.77.Final.jar (9.1 kB at 1.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-kqueue/4.1.77.Final/netty-transport-native-kqueue-4.1.77.Final-osx-x86_64.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.77.Final/netty-transport-classes-kqueue-4.1.77.Final.jar (108 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-kqueue/4.1.77.Final/netty-transport-native-kqueue-4.1.77.Final-osx-aarch_64.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar (140 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.77.Final/netty-resolver-dns-native-macos-4.1.77.Final-osx-x86_64.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar (39 kB at 6.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.77.Final/netty-resolver-dns-native-macos-4.1.77.Final-osx-aarch_64.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar (38 kB at 6.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-kqueue/4.1.77.Final/netty-transport-native-kqueue-4.1.77.Final-osx-aarch_64.jar (25 kB at 4.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.40.v20210413/jetty-util-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-kqueue/4.1.77.Final/netty-transport-native-kqueue-4.1.77.Final-osx-x86_64.jar (26 kB at 4.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/lmax/disruptor/3.3.7/disruptor-3.3.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.77.Final/netty-resolver-dns-native-macos-4.1.77.Final-osx-x86_64.jar (19 kB at 3.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1-tests.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.77.Final/netty-resolver-dns-native-macos-4.1.77.Final-osx-aarch_64.jar (19 kB at 3.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-hplsql/4.0.0-beta-1/hive-hplsql-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.jar (90 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.9.3/antlr4-runtime-4.9.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/lmax/disruptor/3.3.7/disruptor-3.3.7.jar (86 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.31/nimbus-jose-jwt-9.31.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.40.v20210413/jetty-util-9.4.40.v20210413.jar (572 kB at 96 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.9.3/antlr4-runtime-4.9.3.jar (337 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/sf/jpam/jpam/1.1/jpam-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar (4.7 kB at 778 B/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.40.v20210413/jetty-server-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/sf/jpam/jpam/1.1/jpam-1.1.jar (12 kB at 2.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.40.v20210413/jetty-io-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.31/nimbus-jose-jwt-9.31.jar (759 kB at 125 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.40.v20210413/jetty-servlet-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.40.v20210413/jetty-io-9.4.40.v20210413.jar (170 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.40.v20210413/jetty-security-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.40.v20210413/jetty-servlet-9.4.40.v20210413.jar (146 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.40.v20210413/jetty-util-ajax-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.40.v20210413/jetty-security-9.4.40.v20210413.jar (118 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-runner/9.4.40.v20210413/jetty-runner-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.40.v20210413/jetty-server-9.4.40.v20210413.jar (711 kB at 113 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-plus/9.4.40.v20210413/jetty-plus-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.40.v20210413/jetty-util-ajax-9.4.40.v20210413.jar (65 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-annotations/9.4.40.v20210413/jetty-annotations-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-plus/9.4.40.v20210413/jetty-plus-9.4.40.v20210413.jar (66 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.0/asm-9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1-tests.jar (45 kB at 7.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-annotations/9.4.40.v20210413/jetty-annotations-9.4.40.v20210413.jar (87 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.jar (72 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.0/asm-9.0.jar (122 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jaas/9.4.40.v20210413/jetty-jaas-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.jar (53 kB at 7.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.40.v20210413/websocket-server-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.jar (33 kB at 5.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.40.v20210413/websocket-common-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.40.v20210413/websocket-common-9.4.40.v20210413.jar (214 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.40.v20210413/websocket-api-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jaas/9.4.40.v20210413/jetty-jaas-9.4.40.v20210413.jar (48 kB at 7.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.40.v20210413/websocket-client-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-runner/9.4.40.v20210413/jetty-runner-9.4.40.v20210413.jar (9.2 MB at 1.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.40.v20210413/jetty-client-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.40.v20210413/websocket-server-9.4.40.v20210413.jar (45 kB at 6.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.40.v20210413/websocket-servlet-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-hplsql/4.0.0-beta-1/hive-hplsql-4.0.0-beta-1.jar (755 kB at 110 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jndi/9.4.40.v20210413/jetty-jndi-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.40.v20210413/websocket-api-9.4.40.v20210413.jar (52 kB at 7.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jsp/9.4.40.v20210413/apache-jsp-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.40.v20210413/jetty-client-9.4.40.v20210413.jar (323 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-schemas/3.1.2/jetty-schemas-3.1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.40.v20210413/websocket-servlet-9.4.40.v20210413.jar (30 kB at 4.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jstl/9.4.40.v20210413/apache-jstl-9.4.40.v20210413.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.40.v20210413/websocket-client-9.4.40.v20210413.jar (46 kB at 6.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-schemas/3.1.2/jetty-schemas-3.1.2.jar (200 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jsp/9.4.40.v20210413/apache-jsp-9.4.40.v20210413.jar (21 kB at 3.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.jar (40 kB at 5.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/5.2.0/curator-framework-5.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.jar (206 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/5.2.0/curator-client-5.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (96 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/5.2.0/curator-recipes-5.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/5.2.0/curator-framework-5.2.0.jar (336 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-saml-opensamlv3/4.5.5/pac4j-saml-opensamlv3-4.5.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jndi/9.4.40.v20210413/jetty-jndi-9.4.40.v20210413.jar (47 kB at 6.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-core/4.5.5/pac4j-core-4.5.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/5.2.0/curator-recipes-5.2.0.jar (316 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-core/3.4.5/opensaml-core-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/5.2.0/curator-client-5.2.0.jar (3.0 MB at 410 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/utilities/java-support/7.5.1/java-support-7.5.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jstl/9.4.40.v20210413/apache-jstl-9.4.40.v20210413.jar (13 kB at 1.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-api/3.4.5/opensaml-saml-api-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-core/4.5.5/pac4j-core-4.5.5.jar (230 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-api/3.4.5/opensaml-storage-api-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-core/3.4.5/opensaml-core-3.4.5.jar (182 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-impl/3.4.5/opensaml-saml-impl-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/shibboleth/utilities/java-support/7.5.1/java-support-7.5.1.jar (272 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-impl/3.4.5/opensaml-soap-impl-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-api/3.4.5/opensaml-saml-api-3.4.5.jar (408 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-api/3.4.5/opensaml-soap-api-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-api/3.4.5/opensaml-storage-api-3.4.5.jar (24 kB at 3.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-api/3.4.5/opensaml-xmlsec-api-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-impl/3.4.5/opensaml-soap-impl-3.4.5.jar (403 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-api/3.4.5/opensaml-security-api-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-impl/3.4.5/opensaml-saml-impl-3.4.5.jar (1.2 MB at 156 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-impl/3.4.5/opensaml-security-impl-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-api/3.4.5/opensaml-soap-api-3.4.5.jar (170 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-api/3.4.5/opensaml-profile-api-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-api/3.4.5/opensaml-security-api-3.4.5.jar (67 kB at 8.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-impl/3.4.5/opensaml-profile-impl-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-api/3.4.5/opensaml-xmlsec-api-3.4.5.jar (210 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-api/3.4.5/opensaml-messaging-api-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-impl/3.4.5/opensaml-security-impl-3.4.5.jar (112 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-impl/3.4.5/opensaml-messaging-impl-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-api/3.4.5/opensaml-profile-api-3.4.5.jar (31 kB at 4.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-impl/3.4.5/opensaml-storage-impl-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-saml-opensamlv3/4.5.5/pac4j-saml-opensamlv3-4.5.5.jar (193 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ldaptive/ldaptive/1.0.13/ldaptive-1.0.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-api/3.4.5/opensaml-messaging-api-3.4.5.jar (56 kB at 7.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/json/javax.json-api/1.0/javax.json-api-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-impl/3.4.5/opensaml-profile-impl-3.4.5.jar (27 kB at 3.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/spy/spymemcached/2.12.3/spymemcached-2.12.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-impl/3.4.5/opensaml-messaging-impl-3.4.5.jar (20 kB at 2.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-impl/3.4.5/opensaml-storage-impl-3.4.5.jar (75 kB at 9.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-impl/3.4.5/opensaml-xmlsec-impl-3.4.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/json/javax.json-api/1.0/javax.json-api-1.0.jar (20 kB at 2.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.2.4/cryptacular-1.2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar (85 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/spy/spymemcached/2.12.3/spymemcached-2.12.3.jar (474 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-impl/3.4.5/opensaml-xmlsec-impl-3.4.5.jar (297 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ldaptive/ldaptive/1.0.13/ldaptive-1.0.13.jar (798 kB at 102 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.2.4/cryptacular-1.2.4.jar (162 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/santuario/xmlsec/2.3.0/xmlsec-2.3.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.jar (64 kB at 8.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-runtime/2.4.1/jamon-runtime-2.4.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.jar (531 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-exec/4.0.0-beta-1/hive-exec-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-runtime/2.4.1/jamon-runtime-2.4.1.jar (25 kB at 3.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-v2/2.1.0/atlas-client-v2-2.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/santuario/xmlsec/2.3.0/xmlsec-2.3.0.jar (1.1 MB at 141 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/cglib/cglib/2.2.2/cglib-2.2.2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.jar (4.8 MB at 591 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-common/2.1.0/atlas-client-common-2.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-v2/2.1.0/atlas-client-v2-2.1.0.jar (23 kB at 2.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.19/jersey-client-1.19.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/cglib/cglib/2.2.2/cglib-2.2.2.jar (287 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-intg/2.1.0/atlas-intg-2.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1.jar (44 kB at 5.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.19/jersey-client-1.19.jar (134 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.1.1/hadoop-common-3.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-intg/2.1.0/atlas-intg-2.1.0.jar (560 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 71 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar (307 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.1.1/hadoop-common-3.1.1.jar (4.0 MB at 481 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19/jersey-server-1.19.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-common/2.1.0/atlas-client-common-2.1.0.jar (38 kB at 4.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.jar (129 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar (101 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar (246 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19/jersey-server-1.19.jar (703 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar (490 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.jar (617 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar (128 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar (281 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar (20 kB at 2.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar (113 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar (31 kB at 3.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.jar (1.5 MB at 172 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar (205 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar (227 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar (102 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar (65 kB at 7.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar (41 kB at 4.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar (116 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar (37 kB at 4.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar (19 kB at 2.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar (83 kB at 9.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar (20 kB at 2.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar (29 kB at 3.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.6/commons-validator-1.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar (162 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar (513 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.9/jackson-jaxrs-base-2.9.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.6/commons-validator-1.6.jar (186 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.9/jackson-jaxrs-json-provider-2.9.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar (81 kB at 8.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.9/jackson-module-jaxb-annotations-2.9.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar (146 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.9/jackson-annotations-2.9.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.9/jackson-jaxrs-base-2.9.9.jar (32 kB at 3.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.9/jackson-jaxrs-json-provider-2.9.9.jar (16 kB at 1.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/4.3.20.RELEASE/spring-context-4.3.20.RELEASE.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.9/jackson-annotations-2.9.9.jar (67 kB at 7.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/4.3.20.RELEASE/spring-aop-4.3.20.RELEASE.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 268 B/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/4.3.20.RELEASE/spring-beans-4.3.20.RELEASE.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.9/jackson-module-jaxb-annotations-2.9.9.jar (33 kB at 3.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/4.3.20.RELEASE/spring-core-4.3.20.RELEASE.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/4.3.20.RELEASE/spring-aop-4.3.20.RELEASE.jar (380 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/4.3.20.RELEASE/spring-expression-4.3.20.RELEASE.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/4.3.20.RELEASE/spring-context-4.3.20.RELEASE.jar (1.1 MB at 122 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.10/commons-configuration-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/4.3.20.RELEASE/spring-beans-4.3.20.RELEASE.jar (763 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/4.3.20.RELEASE/spring-expression-4.3.20.RELEASE.jar (275 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-dbcp2/2.9.0/commons-dbcp2-2.9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/4.3.20.RELEASE/spring-core-4.3.20.RELEASE.jar (1.1 MB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.10/commons-configuration-1.10.jar (363 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar (284 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-vector-code-gen/4.0.0-beta-1/hive-vector-code-gen-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-dbcp2/2.9.0/commons-dbcp2-2.9.0.jar (211 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-tez/4.0.0-beta-1/hive-llap-tez-4.0.0-beta-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar (146 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/1.0.1/aws-secretsmanager-caching-java-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar (2.2 MB at 229 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.12.0/commons-io-2.12.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/1.0.1/aws-secretsmanager-caching-java-1.0.1.jar (17 kB at 1.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.12.0/commons-io-2.12.0.jar (474 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar (751 kB at 76 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-1.2-api/2.18.0/log4j-1.2-api-2.18.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar (238 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.18.0/log4j-api-2.18.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-1.2-api/2.18.0/log4j-1.2-api-2.18.0.jar (350 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.18.0/log4j-core-2.18.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.18.0/log4j-api-2.18.0.jar (315 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.18.0/log4j-slf4j-impl-2.18.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.18.0/log4j-core-2.18.0.jar (1.9 MB at 183 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.4/ST4-4.0.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.18.0/log4j-slf4j-impl-2.18.0.jar (25 kB at 2.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-vector-code-gen/4.0.0-beta-1/hive-vector-code-gen-4.0.0-beta-1.jar (49 kB at 4.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.4/ST4-4.0.4.jar (237 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.jar (149 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.10.13/ant-1.10.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar (164 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.jar (445 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.23.0/commons-compress-1.23.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.jar (21 kB at 2.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-registry/3.3.1/hadoop-yarn-registry-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.10.13/ant-1.10.13.jar (2.3 MB at 219 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-registry/3.3.1/hadoop-registry-3.3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-tez/4.0.0-beta-1/hive-llap-tez-4.0.0-beta-1.jar (151 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-daemon/commons-daemon/1.0.13/commons-daemon-1.0.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-registry/3.3.1/hadoop-registry-3.3.1.jar (192 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.23.0/commons-compress-1.23.0.jar (1.1 MB at 100 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-daemon/commons-daemon/1.0.13/commons-daemon-1.0.13.jar (24 kB at 2.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.5.1/ivy-2.5.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar (308 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.7.1/zookeeper-3.7.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar (3.4 MB at 312 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.7.1/zookeeper-jute-3.7.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.7.1/zookeeper-3.7.1.jar (1.3 MB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.7.1/zookeeper-jute-3.7.1.jar (256 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.76.Final/netty-handler-4.1.76.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-registry/3.3.1/hadoop-yarn-registry-3.3.1.jar (7.8 kB at 716 B/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.76.Final/netty-transport-native-epoll-4.1.76.Final.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.jar (21 kB at 1.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.76.Final/netty-transport-native-epoll-4.1.76.Final.jar (5.5 kB at 499 B/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/datanucleus/datanucleus-core/5.2.10/datanucleus-core-5.2.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.76.Final/netty-handler-4.1.76.Final.jar (528 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.5.1/ivy-2.5.1.jar (1.4 MB at 127 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar (249 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-netty/12.0.0/arrow-memory-netty-12.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/datanucleus/datanucleus-core/5.2.10/datanucleus-core-5.2.10.jar (2.2 MB at 198 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-core/12.0.0/arrow-memory-core-12.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-netty/12.0.0/arrow-memory-netty-12.0.0.jar (39 kB at 3.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.jar (27 kB at 2.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-core/12.0.0/arrow-memory-core-12.0.0.jar (111 kB at 9.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.jar (130 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.jar (852 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.jar (7.2 MB at 635 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/commons-compiler/3.0.11/commons-compiler-3.0.11.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar (278 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino/3.0.11/janino-3.0.11.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar (30 kB at 2.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-multipart/1.19/jersey-multipart-1.19.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar (120 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/commons-compiler/3.0.11/commons-compiler-3.0.11.jar (38 kB at 3.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19/jersey-core-1.19.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino/3.0.11/janino-3.0.11.jar (847 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-exec/4.0.0-beta-1/hive-exec-4.0.0-beta-1.jar (83 MB at 7.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.15.0/libthrift-0.15.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-multipart/1.19/jersey-multipart-1.19.jar (53 kB at 4.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar (46 kB at 4.0 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.jar (62 kB at 5.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19/jersey-core-1.19.jar (437 kB at 38 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10.jar (775 kB at 67 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.15.0/libthrift-0.15.0.jar (306 kB at 26 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar (27 kB at 2.3 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.jar (328 kB at 28 kB/s) +[INFO] Downloading from repository-release: https://repository.apache.org/content/repositories/releases/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.jar +[INFO] Downloading from shibboleth: https://build.shibboleth.net/nexus/content/groups/public/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.jar +[INFO] Downloaded from shibboleth: https://build.shibboleth.net/nexus/content/groups/public/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.jar (39 kB at 112 kB/s) +[INFO] +[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 9.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 96 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom (4.1 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 90 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 106 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar (226 kB at 2.2 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 kB at 96 kB/s) +[INFO] Deleting /home/cc/sosp24-ae/wasabi/wasabi-testing/target +[INFO] +[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (2.6 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2.0 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3.0 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 5.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2.0 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (2.6 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (1.9 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (1.9 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (6.7 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom (1.9 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (1.8 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (1.4 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 4.2 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (3.9 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (1.7 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (2.1 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom (2.0 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom (1.3 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 151 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom (5.8 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 91 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 103 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom (889 B at 8.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (2.9 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3.0 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5.0 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom (890 B at 7.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom (2.8 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 180 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar (57 kB at 657 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar (116 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar (35 kB at 309 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar (152 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar (29 kB at 213 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar (21 kB at 120 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar (9.9 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar (5.9 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar (24 kB at 98 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar (14 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar (37 kB at 118 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 111 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar (87 kB at 251 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar (49 kB at 133 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar (10 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar (86 kB at 204 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 453 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar (223 kB at 468 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 252 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar (43 kB at 83 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar (61 kB at 117 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (6.8 kB at 13 kB/s) +[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! +[INFO] Copying 220 resources +[INFO] Copying 9 resources +[INFO] +[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 61 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 492 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 143 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 46 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 209 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 7.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 47 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 166 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom (5.0 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom (4.1 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 208 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom (2.4 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 192 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom (1.1 kB at 8.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom (8.4 kB at 63 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom (2.7 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 86 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom (1.1 kB at 9.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 6.3 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 34 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 252 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom (1.2 kB at 9.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom (1.3 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 43 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 2.0 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 124 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar (55 kB at 488 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 1.3 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar (27 kB at 142 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 1.6 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar (267 kB at 1.2 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar (122 kB at 549 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar (4.7 kB at 18 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar (23 kB at 87 kB/s) +[INFO] Changes detected - recompiling the module! :dependency +[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! +[INFO] Compiling 9 source files with javac [debug target 1.8] to target/classes +[INFO] +[INFO] --- aspectj-maven-plugin:1.13:compile (default) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom (2.3 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 232 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 96 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 156 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 82 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 391 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom (3.0 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom (26 kB at 224 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 460 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom (4.1 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom (5.3 kB at 69 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom (2.4 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 213 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom (4.2 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom (14 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 94 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 209 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom (2.6 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom (14 kB at 169 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 162 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 124 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 96 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom (4.6 kB at 39 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom (3.4 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom (1.4 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom (1.9 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom (2.5 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 77 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 72 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom (8.8 kB at 96 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom (1.9 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 284 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 333 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 168 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 89 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 114 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 54 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 204 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom (4.3 kB at 38 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom (2.6 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom (19 kB at 155 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom (2.7 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom (2.8 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom (4.2 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom (3.8 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom (14 kB at 138 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 60 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 551 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom (11 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom (16 kB at 156 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom (7.8 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom (10 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom (4.2 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom (1.9 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom (21 kB at 161 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom (1.6 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom (18 kB at 149 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom (1.6 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom (3.0 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5.1 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 283 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 80 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 224 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 258 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (18 kB at 222 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 25 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom (7.7 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom (14 kB at 146 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom (4.5 kB at 36 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 131 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 717 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 67 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 108 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom (3.4 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 6.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 57 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom (3.0 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom (2.0 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom (2.7 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom (2.0 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 92 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 48 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 153 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 11 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 2.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 44 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 101 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 1.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 1.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom (7.6 kB at 87 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 62 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 24 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 66 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 22 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (4.9 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom (1.5 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom (15 kB at 206 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (41 kB at 399 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom (1.5 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom (3.4 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom (14 kB at 159 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom (748 B at 7.6 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom (3.8 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom (22 kB at 291 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (3.8 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom (4.1 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom (4.9 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom (9.4 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom (13 kB at 123 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom (3.0 kB at 33 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom (6.7 kB at 53 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom (3.0 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom (1.6 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom (2.6 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 8.8 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom (9.0 kB at 88 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom (653 B at 8.1 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom (4.3 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom (9.8 kB at 81 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom (12 kB at 133 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom (3.4 kB at 29 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom (145 B at 1.7 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom (3.1 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom (2.9 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 50 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar (47 kB at 547 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar (11 kB at 109 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 1.5 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar (215 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar (58 kB at 313 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar (205 kB at 769 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar (379 kB at 1.4 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 152 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar (288 kB at 779 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 131 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar (15 MB at 32 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar (14 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar (192 kB at 406 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar (44 kB at 92 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar (42 kB at 86 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar (38 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 23 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar (521 kB at 833 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar (2.6 MB at 3.9 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar (634 kB at 865 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar (66 kB at 90 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar (32 kB at 42 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar (41 kB at 55 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar (180 kB at 216 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar (27 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar (149 kB at 175 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar (14 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar (169 kB at 196 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 92 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar (12 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar (55 kB at 58 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar (4.2 kB at 4.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar (12 kB at 12 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar (65 kB at 64 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar (183 kB at 172 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar (218 kB at 204 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 312 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 710 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 294 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar (16 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar (60 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar (17 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar (18 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 6.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar (237 kB at 190 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 9.4 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 349 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 197 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 107 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 255 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 177 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 318 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar (53 kB at 37 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 45 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 62 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 329 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar (18 kB at 12 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar (165 kB at 106 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 134 kB/s) +[INFO] Showing AJC message detail for messages of types: [error, warning, fail] +[WARNING] no match for this type name: org.apache.hadoop.hive.druid.DruidStorageHandlerUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:176 +(withincode(* org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hive.druid.DruidStorageHandlerUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:178 +(withincode(* org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hive.druid.DruidStorageHandlerUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:202 +(withincode(* org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hive.hcatalog.templeton.LauncherDelegator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:204 +(withincode(* org.apache.hive.hcatalog.templeton.LauncherDelegator.killTempletonJobWithRetry(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hive.hcatalog.templeton.LauncherDelegator [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:205 +call(* org.apache.hive.hcatalog.templeton.LauncherDelegator.killJob(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hive.kafka.RetryUtils [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:206 +(withincode(* org.apache.hadoop.hive.kafka.RetryUtils.retry(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:234 +(withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:236 +(withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:238 +(withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:240 +(withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hive.jdbc.HiveConnection [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:309 +((withincode(* org.apache.hive.jdbc.HiveConnection.HiveConnection(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hive.jdbc.HiveConnection [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:310 +call(* org.apache.hive.jdbc.HiveConnection.executeInitSql(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hive.jdbc.HiveConnection [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:311 +(withincode(* org.apache.hive.jdbc.HiveConnection.HiveConnection(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hive.jdbc.HiveConnection [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:312 +call(* org.apache.hive.jdbc.HiveConnection.openSession(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hive.jdbc.HiveConnection [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:313 +(withincode(* org.apache.hive.jdbc.HiveConnection.HiveConnection(..)) && + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] no match for this type name: org.apache.hive.jdbc.HiveConnection [Xlint:invalidAbsoluteTypeName] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:314 +call(* org.apache.hive.jdbc.HiveConnection.openTransport(..) throws *Exception*)) || + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHive has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:331 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHive has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:252 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHive has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:135 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHive has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:93 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHive has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:76 + +[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHive has not been applied [Xlint:adviceDidNotMatch] + /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:58 + +[INFO] +[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ wasabi --- +[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! +[INFO] skip non existing resourceDirectory /home/cc/sosp24-ae/wasabi/wasabi-testing/src/test/resources +[INFO] +[INFO] --- aspectj-maven-plugin:1.13:test-compile (default) @ wasabi --- +[WARNING] No sources found skipping aspectJ compile +[INFO] +[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (1.5 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 kB at 134 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 kB at 78 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom (3.0 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom (2.5 kB at 31 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom (5.5 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom (1.6 kB at 13 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom (16 kB at 174 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (1.6 kB at 9.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 35 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 182 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (2.7 kB at 17 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (2.1 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (3.1 kB at 28 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (2.0 kB at 20 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (2.7 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (1.9 kB at 14 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2.0 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (7.8 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2.0 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (1.8 kB at 18 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (1.5 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (1.7 kB at 19 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (2.1 kB at 15 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (1.3 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom (3.5 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom (17 kB at 158 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom (3.7 kB at 30 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 68 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 119 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 10 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar (35 kB at 361 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar (263 kB at 2.6 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar (316 kB at 1.7 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar (31 kB at 159 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar (232 kB at 1.2 MB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 445 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar (118 kB at 523 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 126 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 163 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 287 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 318 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 74 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 395 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 51 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 134 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 73 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 27 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 46 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar (10 kB at 18 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar (38 kB at 65 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 17 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar (14 kB at 22 kB/s) +[INFO] Tests are skipped. +[INFO] +[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom (4.5 kB at 52 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom (2.8 kB at 32 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom (1.7 kB at 16 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom (2.7 kB at 26 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 kB at 143 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom (1.0 kB at 8.9 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 56 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar (22 kB at 266 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (38 kB at 364 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar (60 kB at 441 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar (184 kB at 1.1 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar (208 kB at 1.2 MB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar (58 kB at 315 kB/s) +[INFO] Building jar: /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar +[INFO] +[INFO] --- maven-install-plugin:2.4:install (default-install) @ wasabi --- +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom (2.5 kB at 21 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom (19 kB at 129 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom (1.1 kB at 9.5 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom (5.0 kB at 41 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 85 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom (7.3 kB at 75 kB/s) +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar +[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar (12 kB at 125 kB/s) +[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar (230 kB at 1.5 MB/s) +[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.jar +[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/pom.xml to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.pom +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 02:38 min +[INFO] Finished at: 2025-10-03T02:20:03Z +[INFO] ------------------------------------------------------------------------ From d79f851dce6b9783c7e7ba1571e422a453c0b867 Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Mon, 17 Nov 2025 15:29:56 -0600 Subject: [PATCH 04/15] fix: addressing compilation issues and some format compatibility issues --- .../data/benchmark/artifact_tasks.jsonl | 2 +- benchmarks/arteval_bench/src/main.py | 35 +++++++++++++------ 2 files changed, 25 insertions(+), 12 deletions(-) diff --git a/benchmarks/arteval_bench/data/benchmark/artifact_tasks.jsonl b/benchmarks/arteval_bench/data/benchmark/artifact_tasks.jsonl index b3806aef..30b688c4 100644 --- a/benchmarks/arteval_bench/data/benchmark/artifact_tasks.jsonl +++ b/benchmarks/arteval_bench/data/benchmark/artifact_tasks.jsonl @@ -1 +1 @@ -{"task_id": "sosp24_wasabi", "task_file": "sosp24/wasabi/README.md", "test_method": "wasabi/_agent_eval/main.py", "expected_score": 4, "test_results": "", "difficulty": "easy", "docker_env": "xuafeng/swe-go-python:latest", "repo_url": "https://github.com/bastoica/wasabi/tree/sosp24-ae", "local_path": "sosp24/"} \ No newline at end of file +{"task_id": "sosp24_wasabi", "task_file": "data/benchmark/sosp24_wasabi/wasabi/README.md", "test_method": "data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py", "expected_score": 4, "test_results": "", "difficulty": "easy", "docker_env": "xuafeng/swe-ubuntu:latest", "repo_url": "https://github.com/bastoica/wasabi/tree/sosp24-ae", "local_path": "data/benchmark/"} \ No newline at end of file diff --git a/benchmarks/arteval_bench/src/main.py b/benchmarks/arteval_bench/src/main.py index ce3afdd4..9432a39e 100644 --- a/benchmarks/arteval_bench/src/main.py +++ b/benchmarks/arteval_bench/src/main.py @@ -16,7 +16,7 @@ from datetime import datetime from statistics import median from statistics import mean -from loguru import logger +from typing import Iterable, Tuple sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '../../../'))) @@ -26,11 +26,12 @@ from sdk.evaluator import Evaluator from sdk.executor import Executor - +from sdk.logger import logger +from sdk.llm import LLM ARTIFACT_STAGES = ("prep_environment", "build_code", "prep_benchmarks", "run_experiments") -class BasicExecutor(Executor): +class ArtEvalExecutor(Executor): """Example class for one simple LLM module.""" def __init__(self, _model_name, _sys_prompt) -> None: @@ -45,7 +46,7 @@ def run(self, nl, lang=''): return ans -class ArtifactValidator(Evaluator): +class ArtEvalValidator(Evaluator): """Validation class for evaluating the model's ability to install, run, and test a given artifact.""" def __init__(self) -> None: @@ -110,26 +111,36 @@ def main(input_file, output_dir, model_name, agent_name): logger.info(f"============ {artifact['task_id']} ============") system_prompt = ( - f"You are an expert software engineer with experience with artifact evaluation tasks for computer science conferences.\n" - + f"You are asked to setup, install, and run experiments following instructions provided in the artifact's README.md file.\n" + f"You are an experienced software engineer.\n" + + f"You are asked to follow the step-by-step instructions in README.md below to set-up," + + f"install, compile, and reproduce the results of Wasabi" + + f"Note that you are in a docker env with root access. If sudo is needed," + + f"please remove sudo command in the install file." + + f"Note that you can ignore branch siwitch instructions in the README as you are already" + + f"in the correct branch. So do not use git branch at all." ) + logger.info("Reading task...") + task_file = artifact['task_file'] with open(task_file, encoding='utf-8') as f: lines = f.readlines() task = "\n".join(lines) user_prompt = 'Below is the README of the artifact:\n\n' + task - prompt = f"{system_prompt}\n {user_prompt}" if agent_name == 'llm': - executor = BasicExecutor(model_name, prompt) + executor = ArtEvalExecutor(model_name, prompt) else: raise ValueError(f'Unknown agent name: {agent_name}') + logger.info("Calling LLM with user prompt...") + response = executor.run(user_prompt, lang='json') response = json.loads(response) + logger.info("Parsing LLM's answer...") + answer = str(response.get('answer', '')) explanation = response.get('explanation', '') logger.info(f'Model Answer: {answer}') @@ -137,7 +148,9 @@ def main(input_file, output_dir, model_name, agent_name): test_method = artifact['test_method'] - evaluator = ArtifactValidator() + logger.info("Interaction with LLM succesful. Proceeding to validation...") + + evaluator = ArtEvalValidator() metrics = evaluator.eval(cmd=test_method) result = { @@ -159,7 +172,7 @@ def main(input_file, output_dir, model_name, agent_name): except Exception as e: logger.error(f"Error processing instance {artifact['task_id']}: {e}") result = { - 'id': artifact['instance_id'], + 'id': artifact['task_id'], 'system_prompt': locals().get('system_prompt'), 'user_prompt': locals().get('user_prompt'), 'llm_answer': None, @@ -222,7 +235,7 @@ def main(input_file, output_dir, model_name, agent_name): '-i', '--input_file', help='Benchmark input file', - default='./data/benchmark/example_bench_benchmark_timestamp.jsonl', + default='./data/benchmark/arteval_tasks.jsonl', ) parser.add_argument('-o', '--save_path', help='Result save path', default=None) parser.add_argument('-a', '--agent', help='Agent Name', default='llm') From f9c355283dbf905f70f73429768f56930152fb64 Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 19 Nov 2025 01:44:20 -0600 Subject: [PATCH 05/15] feature: consolidated AI agent oracles --- .../oracle_artifact_build.cpython-312.pyc | Bin 0 -> 8434 bytes .../oracle_benchmark_prep.cpython-312.pyc | Bin 0 -> 8060 bytes .../oracle_env_setup.cpython-312.pyc | Bin 0 -> 8570 bytes .../oracle_experiment_runs.cpython-312.pyc | Bin 0 -> 6180 bytes .../__pycache__/utils.cpython-312.pyc | Bin 0 -> 1408 bytes .../wasabi/_agent_eval/check_env.py | 71 ---- .../wasabi/_agent_eval/check_hadoop_bug.py | 140 -------- .../_agent_eval/check_hadoop_weaving.py | 105 ------ .../wasabi/_agent_eval/check_wasabi_build.py | 169 ---------- .../wasabi/_agent_eval/checker.log | 305 ------------------ .../sosp24_wasabi/wasabi/_agent_eval/main.py | 27 ++ .../_agent_eval/oracle_artifact_build.py | 159 +++++++++ .../_agent_eval/oracle_benchmark_prep.py | 258 ++++++++------- .../wasabi/_agent_eval/oracle_env_setup.py | 250 ++++++-------- .../_agent_eval/oracle_experiment_runs.py | 121 +++++++ .../sosp24_wasabi/wasabi/_agent_eval/utils.py | 31 ++ 16 files changed, 573 insertions(+), 1063 deletions(-) create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_artifact_build.cpython-312.pyc create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_benchmark_prep.cpython-312.pyc create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_env_setup.cpython-312.pyc create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_experiment_runs.cpython-312.pyc create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/utils.cpython-312.pyc delete mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_env.py delete mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_bug.py delete mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_weaving.py delete mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_wasabi_build.py delete mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/checker.log create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_artifact_build.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_experiment_runs.py create mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/utils.py diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_artifact_build.cpython-312.pyc b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_artifact_build.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..751a111496b048f0f8fa91295d482b0bb3c059a8 GIT binary patch literal 8434 zcmbU`TW}LucDL0}y(Pae80^Lmu&|Nm!DFC|8Dqm>z-AUR3^>dxLfy7yWXW{5!B({w zu}c-!4vFlKjWwB}#*<3bdUvu_&L8`=q;@}2m7f+eg{H$+kz`WI{G=Frt1?SIl5<;9 z%l62ym0P8w+xKzqx#ym9?m6fFlhbKKQ2tfg6|Sm6=-=>1u~3D|+9jwgAOQ(P1dS6R z3xUQhLnM)Jp@t~vu|()`W{5G`NT{XxuL_>sthAaYc7Y&hu z1t2BZ1nMp^MC0{_7=Z!E3M@cQ-~d_$D?r;c>9gyV=cQmMB6dqkcsLkRPE3X)LWo$m z9$t=w-`XByImPS}h`1fW#xYb;z??IUeB?l!^pC%#+az%!CWn=nH0`rU7>iyp9=s_= z0~5i}_27so2ZXSM_b!W(VHu;~U;eCPG&U}FTnoxdEF21UOh~aYF{H>Hp-D*+qe{oP zEbW)4<#1FHBa!fk7!AQ_fTQC<>AKtzloau1FcL7DI)tDSEcJHCF?r&x1A$vXIe0DH zQTPi0B~c}SXLZC3b_4*4!H>W-%n<*?w9W+r;b>S11mZi(u*_fV#nL2K0!W}|^^J=k zd=go@nyEjM=zT)ftwA#iVKx*C4HbjA6|naOq!I~Ynox-`lbOYVz+%gnh1MBTCGYG} z$+4m&lm;PbNBQe@RFGM2J`Wo|AnF> zAFWfv;i#Zfia4d{w5&+s37rItP@jl|6(1vkd?TF_BjUKU4OfYqIvpAXvCs)c#@xab z^1S3Q#!ZcgO1!q5h~OS4jFA%n66ghoI7dRwIla$0N6MPC&NY4PN_6K~E-{n#eqQs} zH94m%bt!o%bv1eQ;~#2F-E(jCDkAB9vvkhpPWh6)R7bKS-ITtOwe4PP%-C8I!JO4L z8~V65=c!(>&D$P(`1G}>?!6iJ-mKgAnDf10VLB}A@JKEoVqk+Xve04(V<#Nk0K^4Vui*q7dI7^5~!jG%`jVzq0KSumSaq#I>T)_hArYL2q8CP1tG;J zvZ)AGb7wZycIS;PFxrF?W%ez{lqhqktW2qP$)eh4Se1ji1L_W-*dpyyS)j^GfSQlF zH<1IMuu@U^Vdg7GGUiAQ3<>vrTq>cmDx-3$Rj_@=45B8am@40lq+OuKTg(#(mHrex zun3mV$dKg<637|)NAzIf{}yozO_5j7Ey8Dye`Lcd(G!bAu<16mbT}LlWge_{j2FU& z8V99mz7sBhc77r@-p-FmvB`-(p`9-pUtGT_N;32t*F`uw(q-U{doTB&gGNafc~O#L z(ox<=>Lj4jNkFC3M&p2PD`C>v0(zarD8Y#6RuijEjs+#10fcZ5fW|if*CZZ;CJY)e zXvUxgfREEHCok%>u{@v^6)6@|bnD5fkT`*@le8BP-Gu>o6i6pwh|iffBOH(im!C4K zJCxW&pkSnAFh7zg>Xd_o;gjQMSrye)za0*3;yWPDdS zgJgEs!+hBf5{9i3MPDJFIo+wt$;)%2S!Y8+027tBK?wnDM@7xT_WAAU1B*MeUVq|D z&Q*~LC&Otf9nQL16YqWR+f%h*owuf&7wuV3`(w|+WjfLK957xv>^xBSOQp(tKPK`m=7#n)=ms+ z7eCMjFKO?7m~mcy!d(8J7bG6>QpRWe;YoyDEBX$lrMgsQ<2p1{hj@ z1)7)rA(*zX&borWVY|Dj2&R24YV;uTSq5IRaGw6D@rci&Gja@^9YLq1kx1+sxLEnC z3S1{q#w!;uB`dz-upG$c1;Om@fk|==0PtSy-nr(5ee?U$SF#m*v-VbvYBes65Vej_ zT*tJp2>`GIQ_giM?PP|sfUj8YHW^!wwXnblQmMZoRLeY}lJmr`n7;(K0CRxw`$(x4 z21(f4(z&r%IEr=3M;i>-q_l>nDzc2(ZzxDXIk0bPsA74ZnBCwPAsHW80_7Z)ss3bt zx+&|ZPn^uz+hz|uwKrz$jZf`u8GD;%KfUw;faNm)9D2D)~N)X`3#N$HxYn81%$UeMM&)gDk*h2^?>xjfx5w1 zU=;Phbi)hE)C0;yV`YK}jKa#C_ek(g@{Ujs)CRB!%ag;y;VB6lN$EWRV3|+jdLIVo z0c=n-=`6Iwk8LHb;i#+x!DST8_`8g%eTb1>1&~*@Rb+9uJa@TY(8%LWO(mz&hcfQn zaEE(N5q~@K^Vk=$oXwuvliV|RDSa+e?bE9EE$v=9wR|MgeoSlYdMIiYy=x?~_Y|>a z%=s4M`=b%p{iK`iwhW43B0QZpjO9$^&w@4HD{r-6&9IU~L z`u%Oi_xAsM)4kk`))NGe$ zZa954Q?pO2Zd-bD>C$pvW`CE~e*B@LRrY3Fy-%I}8E1did0u1AgD$TbtgNhFI6Qwi zeK=d$^amPv0j-Xf7sx`lm!_Od7L`t}DJfmKY(vRiAkef0 z%tV>&Ln#eayr8hoycRQA9E~xTa0rH>n6ZQr15nxQg~4|eQ8z;_;@tKhuMurt=z%y+6RSYnrI zg#eo>;kw^QA*HgwK%k@8BRH=2f&prI4OVygxpAA}D0&{49K-qm(qe<3U8R9?0jS2Q zl4!uI8p9o%N(r|_-0xBC<*)-zLpOk5 z6;Lm_y0~6&fghN<2In^n=Vy~4=_38tYq(Xpjyjt(_L|XE>qoGnW$%>jrCm+$@YM~({l-(rQT|kS-#LCik7H)O@YDeLDGAb6@M^(FV+ubU zn~Vyl;zu@4h{kZ%3J2nRKC@*E<6$Tys`C#E`xQ}EAZaDx=uz5@K@$ee0DOex$Mr@4 z@dM*w8QwESiYYMshG9HE^a&k>91kBHhOhl@6PI0?IqTaNN^n)mzt_-{NWiAEgvk~kXo^uz>_H=aB4Oo=z}{ROgctHPh@ zzJT+0kZ#8@U&qmJz>0ul%VWF@pGUgioKxI_F~x|N_#bt^qYz(u6WX-s``v?s7a>uG z9ao(Zr^2!#OPF+>3P*<_$p=;G00!;Gh~UJ82$_2lJVu?2h*9Z%+)P3WU%CV}pR14# z!Fdmz!>Ki#0x{TL_=G4+XY-+!3@hSHqAc+k3o)*f@U6QGCsT<2WZhG2C^&VpP5=ob z!J9Hps6&LduH<7iQksm$x0UnvpySVAlDr*UD4cMqOdU@iU$O6e#yIX>zjIxyII+U? zKoIua?oM?jyFP2p+M5!+U)kN}fc_O`00w;R-j?=d+)atoxytIqxg6`hcl*xm6}C3# ztzM{~uV3V{USDDq@?JQPm)^VLY|O!GoypF$b;aJ8Yi?hB^>>*|No*&}_L_soj( ztcgL}c|ofge8OFP&bd>rq-*ZR6K?wpFVOI972;ebPdZnaW4W50=?m%L+!(|GY-_T0 zwrN&=2Bg@N_PG$em{g~)EmkhlTGgH>++N7$v8`WQ9kZ7{uA95@(}v|)pKXnDx&FG_R&8JR28Mt9bwfl}(F1ix;%YR=h~_Y)=sZl^#r=oQpiM zHQ_~?VG+&UkhSxRZ#}lR6bHd7TGQLvh6BqNG7X2d`gb1ET20rA?f7$$Wy*H%?47fk zr*Va9%GupU&>@`!J%QJ1c!b62oIpUg1p;}+g}NgUxG@=w0s&nm*uK=Oajvq852 literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_benchmark_prep.cpython-312.pyc b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_benchmark_prep.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df6924e3bc4710e3f09b653513a33279af53e866 GIT binary patch literal 8060 zcmb_hYiu0Xb-wf1HrrFKs?-Q4hE%PDVn5Xix#yR&dffj-JR8) zSxKA@<5l9qWFSLySuH|;CNIvzmI|v$D7=eABvNTK zYUk7_Wxdm*G~{%e$*`j=McSCOE8`w@TV)o?o>32!U7}m`h~5vFQEvi?zF$zIJ{lcH zqW=vf20o$fnMVDSRJ7tN@-h&mOm>i0laTuk^$qkKiS-^Gf){sMP9!88rL{;>RddSz zj*di1P3Fhj1v%5f=XfD0btHLFmUHdUV0!j+?%T6hl%PZNLpqG}ie$_0dsg80#=Ag% z`$ObY7fRw%=RSTPe@vDOC%TS5oTdQ|UZZ z^La(mJfv2g$Y}vm7?5NPO6NolAEl`Bq4YEp)p zW*H~ic_k+a>O?!vXVp|jYR6JM4HfPEyr9Z>Qfu8zD3yhAvwXU}+nTK>Ei152tzo@v zn$ITMkIAX*ApEP^jt93zhE-lo34=UVwa5msK`aZBB&M>7wZS${G@MFgd6g`pWy1&q za<{d~L*!)oE(uajP03loRwz4lmtIyUpztn|5Yb)GTj~uo%7`?itjI{NI4!bou%m9# zC4sg|o;WLd;N2^FB_C-QeUdNk290G${bIn9uYhvEX$ScryjO^oFk*1BDjG6tPhnn2 zONXSakj(J-+#r^60<~^!MDZE;U*#YHh*3I3QQEA` z@Rwpjnpc#Vn8Jz~F274qm6I^3COA^0bX*|=ad&^(k(4u12WY4&rv$zuhvf;-2&F^F zV=QIWj*Noalu3msK{}mEz{)||S-;W&pHaHNr(;%Chsdk^T5E?QE4gR7Vi$RZA5V3Z zvKSA8s4>#3L$;2??o7@j2Dr$z=O#^WEJiR9i)oFU99g^5x)b)G)Id@|#fGLr?@e}V zk&6_1|G+k_LM;+XhJ=(6`Rvx&_QKZRMLwjK&vIhDoF$BqPN}65LKBYZE7u_O@K%xf zTl$kyuPIumCmf|)Hv-gp*S(gCmnek>1IbJTHnx3Is)C*s8(aS;J>$$UYDQ|M(>sE2 z{S+gD!mHIzoz8qxI+-{l(5JyzPcc7$es+G5x`-|@r_n_!>ef2^96Uq$EXQ-8LrD&d zZidf_Tmp<8R4N>g6Zs5$@ODdbgxEzz73I8YakGSD1lG0_f_ z5i+7l3ptaL6!KBXqA|EP=m-^6Tg&yF8^lYxAL!LW8~GFfzyTYVzBD!*v#16&_}1=JN>iR_3g`zyA~UFEj8|5 zpnvQ8weKIQZVWB&9a!8uu(Ws32o4(V!EbH_8t)*=)l>|IX1Bj1%su{-_;laS(D4(2K5m1Udl-9}B^V9^Io*SKMkDGrGrF<=ga? z8Wv4?LB=b3$jAcVOQ5Gb7g5x!?Y8u?KLt7q))7pfj8l@rsYzZ1WzMR6D$BK7MwN?$ zjw!Ytn=H}xyG&bJxLdCz<($g3DO@(6PAAgx_;Vl%<7rT-PUa*o&b4LvjKsCH+9S2V zy9|vv;4@I!L5N02>xSCQGn-TKl!VPXAjjr=Vg>W+| z(^xPW0$zq7m&%ze@iYqgPy|!fV*{&-EMT2C(waAe)qO%;FplywNDAoRy(n07_4v&3 z516?l?+2GEb{6_>yDN(BzzRzRLd8(s^u-lKZ*5*-7+++?=L@(CJu6`pu3xT=F4jh` zH!sz;Up`SdG|fy87d^h|mwtE=U^si=TJ0|yt~1vvjOsQc*k-uficQ={XWu)!)YSIJ zz^*y!)9Nd|v(;}MHUhf}y^s_GRkJnI`wFMNy~Ci2E`=E0&$fBG_p_h11R*s8mUc*% z(=}b`R3@bgw?01GNzw>af^H97oCA=|Zys;0!8|!Glg*QMOXur$Gn?mbu1&{*> zbAJcIyz3C=)xGy2%_;#kgbJZGcWLHXoU zT*=D-+vM^&PL(-p91xVV@l+y@`SG*_pw5iLfO332{&5u6gNYBoPeP(?dmz$nTw0*~ zig?w5s24v)`n8dy3_;vZUWwY6Oj^pC3~;w-z((O7(gctVK4%e<~!W7qsk^F7Ai?->oR82(oaJ;mCs4@TnK0${O_Dn9o3N7?tXOOLhx zv7&3P`qRg+jLbg%)+#o7Lu%v}H6%SL5$K`I79g%jW2@uA>u8?E)8LlO2fE(oc~fKN2HNSDY(NCE=| zd0LdM9r1*fUQvge#df>nq%YmVZ^=6>d zO$4&F4&<~05pp9=xSY3p+@!~Hlflvq-g{i7J(H_M{d}7_UuTWPNp1%CHRp`0M8CC* zfbJ11#9#x09aZXJZa#$D5D-9nk5%hhL!?!#{?JX@qcz&N1)=XrI2E4+Cn|A3=w%Lk zsY6A$6mUYIhia(>{N$0o?p`j#t8i0?wk+p-9E(hX;L%<{D)~OP@9o!i?&tcukDlP3 z5Ylp1igImb*FDJ*#~LRra6e}x*3$u*qJX8Xvl4a1Pm>lPobUzmB}W}vYcteI72CF9ZV8&BM5Fv2H{;0eQh;&vJP zyXPanVHS@3WAMgb7$c)b>uXE3XEu1{(io?V!Qn3kM~zoTKi7@$86$YcaG$wdQT5}a zv(GFC8W#hNOM%A1i(pt7nDTmyL#J=DQY{g_`+i=bv0SZ5$pm z`p+7*F(Vi=+_BrvDxaQ@%qt7@e02WNg_Fjy?;A&XgC94-f)Nx9w}9(lgQnlULKAX! z4{s)?X&Hn&P)k6^AME)!-EfMJ)1d2 zODBlaj3s#`X2;QD&hDO1%L1QP4z`yEQDAI^+)}^!H}p*beNlH{u6w?Fq4v`w@9>Lt z2fnqS`6FMLddm~0Mxu1T&Coq2I{^VSv#NV|u&-z2SnOo?(DA;Z;msI>$-;V7#~d7o zxl9k}EQ!^vBMF2bm>%1>iuS(OS%nvEtI+tc-D#cw+w(X_Ha|r+ZyAfKnybl~XI9J}uO3}5`|vXW{V8UO)miND z0Y+!be1Ivl1oj@5u%30msgVb_sO4+)8mxirZz5|^>nfcA6R~M~1Iki51E#>$i^hP= z!POgW$^%Hf75%r@;G~W*fZkw8fJLB*GR1dfAY4|ya9gL~1)5GS3=MF#C%nj``yln| z9-B+pS8xh0AuPIboOPIm&%XLc{o1p(sS$t#WAyGX1DkM?=eMG@=Y~;pn-y6tv z+hhf(fZ$l%q~&v_yJXXd9yrv&xj$6ftbj1N(&`^Z9@dGGFqzT>pnCv$ICNv*jaDOk z(g>b3+$V2uX;|LUy11qF`o5(tU6)T4j?FS(di-Uo(RN+9{<0C?WdwH_?pdGxc z#_(&#&>15zRDOqyF8j%9L;=jBs0C=*wQ+yE^lpJ zgulR(hWdj-@9j|d4q{y=sA;ws3NMFtEQWSm6R-C!Kh?MRRNqpl{|;h2(7L@?_sDYH zp2fO7^LVLl|BQc{p6)jT!D4mYT=QI=@z}EqI~VG2)ZM^0L}Tl5qx$$w|M9Oqr0)tt z#$TyG71guDvwg-RV@AzcBXHJW&)NoS{UxIuIS5$>OQfdO#iRj_mjI6Rng`cujW|MP zEi$ds*1g$E!7QPPax@RVNa@jO9gNf`#2dn6ffwQhYvyOO7`5(pxD5qy@=Fwkh??#K z7mPNGT9X+ZBl3S6|BA-Ke3+V~CYdNZFoK_jCHIrS)==NzsbNg4BR)nFvQd*wWx-64 zA5Z`>gf*KUB`=V`@)~_MtDNgbi4fy4BFJQvghEVk2?Um-#7$74ZQaZtLVWltG%6&4 zA0sMj3Wsl1fj0SF+oqXY)eUpQZ*MCk|E0cZPI%9M?dkV|1=&)uor|HJ*Oco==4DW? z%ZbAHbn`8D#hd3YpPOyI>E2QdZT+jtxkH5nsOECW5nc-IexT^(#7Z4Z`gJ|>R)Igf z9SB)^H4v>NKdO*0WGrU-W3h}Z=7G(`%!*j-e4bC+EjSG8w{IUrAuJ1HG7x68jf)ko zu+EoQ80%!MGr_0GD`C&}IT8PWNfLp7aa?rRV0qYJJ(6`@+X SQ1u@XouaDmfId_9V*eXD<^8_^ literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_env_setup.cpython-312.pyc b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_env_setup.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f6816ec7bfd6826037c956bda4e780c44510355 GIT binary patch literal 8570 zcmb_BTToj^miHy;>IDd}0fXZUI0nUl{I=r<2{zzhC)hD0V`FDjvhD>0db#h#7+GxO z#8ZJywk&5-gPcdju1!^NoUM@EsS5k3+T?4qwLcK2;MrLF-$P5@Y zJHXODH^9-FAK;9H~|)pIm*bktBh>F!x@-6M#T)cV6IDc$c~Sl zxiN|1Oxa=BdbapfJev4oDUlkpEn*UMFpj8@C|R|BIPty`f2&0e5 zn;sdJWcTyUxU%n%d7xaWP+a(hN~OH{Ak_4`9*6JRk~{mrx(U|Z^bH=h*Ujoy z*{AvZL7%F+d0p($6yiG{RCMt~R0~AHzMyXEABzSRm?@m}X~R&9r@Bs_@OJi`g0?vr z85&YZTR*l3NhGF({YW`i_-tdDKx2kc7<}6S?gd8S6+ve4gtWzBOXdemidnJH^9!<& z#fgC9vp7>0X9b)si!*0&_EqyNh@0TuqHgO{qDokXb4}<%*cVcC^Z7v7M<#l8-XD^6 zd(=l%#Y>bS<&th8%7w82QFMzx5`qE6?a)Q97ngaxy3OkiMdYy{wjEyYg)v_+JHo3P z(M!EvUpO4me0XuH*Go#_48#OL7lHwpQHFgN_8l)OM1@)OYDqbuZZpdOnTJWwa3rL7 z&ihm?67c&xQ4$$Z{F>_Vj}fATHBU$-t?Gmt2y03(7#M=@g4qCvLq0O9dVEAvF8YFA zit^ywu8exrh#K9o%RBB$=MX#!8W6`$g1aZKzC@6u3 z+6CYj%mdN>sykzIzPdG2U6*J~TuKU8{%nz}%WP^)Y@NE4;-@DUxyH=q=0wxfzT~qD z_WDJxIa9ldc8^RSy31`MwK=*vKNQg196_x>a1-4W@?BKIIv=_ij&ZFQW7Qo|pMO}9 zo`vwJ%NVt?A(iFFOg_iLM`J1PAt(%94PYx=v@}sma zpeP`*%>ceZ-JtWnuoe?rFB&fvtH?IiEaJ%HI3G2hZi!B4!;$dLn6)*(sQe_w6|9k9 zI%&c+!ievpZ#C(L=CeO~^bVp~`$*$hcuHGX(U43h04X0pP{s6#= ztjQHJe^me-Dky?tLYa|SlrqJnmKh{jrK)~GlTXt8M<@O zEL&mJF548VY={32I>Rw2%1*#L<&vw+0O&^0wyaWS>MNZ+@Q4LNBYjLG&3n*Bg7> zGo}(xFmT>8axvt=J8s?A8Ub}MB9FHELh_zno)M67p3vKMDVL%kYKrV7k%;D%14J*+ zqj0eoo|P&>RS6ENxU)p+0HTTrgaew_8>?FTJ#D#x{V+{MIZrV6H$I-|yen+TJl2)y z{Ebj+2m3`msphpJIli;wfC!rpqU#T=CHVMk9v9RQmK>db%VOhfe21`iI#NQ&Rnj9I^Xsr<9mVjr1N*i6+5BAG!jMEy% zbwN`uX*vUH;$_&EJedP-i*8fL&VzFGE2^sVWGoEkt>%Nv5H29-Rfj=Cd$V5>lL|QFks0kkK>Znj z1hXUxrkeZqb=TUb+f$7njC>fm75Rsee~kQXB;9}duKi5ne8yRN?WO6LQitE~xzY3X ziP`emQ=goO*Aa-odvp~)v+cdOzw8-352Kd5~>#x)@pYyv$tSi`DOBQmY zolMRP%VGK$+0@6l&9QO%=v|jIP#~J5fpr)R5LJ`1>bW%-7*!-KGOC0n@Jm9HkDL#{ zTrwdcPZ%uI9U+o($rl11YLNz^a}1<>ztpt7ZC~3q@2(v?nxxitsd;;gw68_l=B7Kw zDw@y9TbrNSf36K`_vLLZJ15<1)D_AR^2YKG0LK{??l8{01dKAtuG}TuTJ~Ol#m=xS z^M*?RrS(@lNCJy)84m{D&FNg*Hl4ksqQGZ)>!I}^*lW;Bq&>E~fTs*sCVK;3LpBZu zBYs~{ZEwpj>jh$JC4m28{+M9CD%+dtc&j4${LK1=vc3PU;^|*mSH)7Z^N?*L8vx-p z=^S`PW>xVK|FCYNq;=B}iGa>FsnH-9@T@=}JLzm_tvpl|Ia#dXr%(S35L2H9kYK*I zF;@FE>$Ejp-aNZ`QS>A_zCLj9joonQo30P5ZdJ{?{&K^;`t1w#+vge=>-XF(+q-Dr zn-)4hZva4*ESP4W1`cl6kHVTO$gWh;z736^V)r=rQ;POZmi8nc=T&xsjq^nXfXhAq zq!4F{2|+wB1aV=I1D5AwJ17HoM5Dn8P>SHMO4;v`BB(R7?+!YW1j0iGhlBfo@26YF z!lU8Hc$mJb+eCT*Nsi$N+e4nk&Itf8K$RN4AvuWvc}2GXWiL=w@v1<_<+NNW2og%4 zH@kD}v4R&Z7)Ofg5diR-V)iwYO{rZUlz&)xt8!7?0#9mpWSko^C8gJfriYTg*GCdZ zGxpMZ_QnN!FLwm+xbhTPX4TsK6R*OprN_SE zE;hCbm#2~4-}EQ!pWo{T>B0VSUgk%^^CG6W5I13~4{icl=dk4#Vy{xRJYob)IWANs zB>+m9fC`pEKFvRjiq@|I=QcMf7nT?8r@HFqGaYQA7lk#no1fGQ0U1>#MlFzgG{ zX+#-RAO`X)!0!ss0aw4toz>(7RV3L802EO*R5~Ao5W?(>V)O?Q0cGqLaT3~CavGhwD$ zi3^F2`!?s4@AWNj?Mz3)CL>a%CGX5$D5U;AB6lEF~*fu+N63jg4sUmJ6WsMpwZ^l;) z+lakj6X@p5IS3*De>jn_>O|mdz=`rM<;q@n)>>RhYiPr&7oukW zXlz3P53d><1d3_|00buGl`~IVe`2QXdRw}F$K2t?^1X@U8AnxW*S*^93$@$7a%}&# zJbz$u&(V8(dKdQe-raLDr$2XYPK!ZZ2QWw z?brSD?!WQg+kJdt_wl>CpUXJi8GD7Hzj;}SuJJuF!k|q1ufTXeX^h!okxot@CraaN zF@}8ywDEgjP+=5zD=3K?z!!;R5>CJuVYURCcxD8{fPzw-z7Y`(F}YKogRhH=mLf>5coW)O>cc{eT<1)2LgpK^*kIZ-A-MF2xH>nXk5+RBdQXpw0 zqpi~h9H`hpTz)I!4v6jexU1O@|O zV1Wu++*4g0ozHclna$f?!;tpIL@5+dA-_2EkhR4s@_USh!5+()8>Ut^#vM8og48E|hSWR+jfbo|R%v_*((^~cgMpzjqR8%22qT8av;bt5$A<&{VVd$Y z5_Tv>D_K&~0bPhLz@3fKyd8M~$A6AkVI&g31fefV)M+(J{7H%;RaA>1oCC{ExaoiAKO%*OA9BUE>%0h z( z>c&&)+8uN1XO};{oZfpZ<8(c!sJd6-UZ`--Hh$7{yXm9Wxl@Z3`>s5jI6TEq^<^BT z$<5QpQWXo1I>Sv~v_pRBfyMUP%da5818*Og-TBFZj}Ack^UD- z?OrffCj!Z;ubt~NzI@0UYu|Lvgym3^r^n|Mx64X#C2_WdU$FeU9~lBZ%GR+ zKjPKA3HLn13}H|WEu(ZYFF`sL(h$rD8j*q$&-(#JZ1zSKD1ai)dOV+;fUw*xfT182 zGWbHp;85be@1kwcge9EPpiq{oz-kQ;ApsYR*Ai-od)Fqy|Ut0Se!<#lv@fk& zqGL*j93QVYqE2u=Xy_Sc(Jl6?QBY$n{t+Vjc18U z5bt;S8R}W$8^Dc2yRhU87Bv`P*m_#&%pw>-Tzr(zj ze?b<_cag->${WLsqH*<~cqa4z@0m2zGPJC44q+!O6QbMN8!J6YAABsJ1~f(8FF{VS zqpwdFx;uKFjqy^eL_Nru;fb}pMh*f#R$jnikfZ!1;MI2k0AH1qC5}EQDZf`DEtE)$B@I`Oq7J$* z*j_t+<#^I_`|zzTbKU>kH?Mr||GUxji>DWMok`aZq|46U70zV@`)j>ddXqcu3hOD2 z#}-N+TP%^*(rCJM_{Nsm?l1c0lzIPOkA8W6q2>8>&8c)*-(8`9HHqI_Y*Tx$#!)@m z%cz!sOos=K+3T((6;P8(1nAt5T?hmOXetPDFX=>p_JyFYK$9QTy6D3BNF+#Y48cn@ ze*HovVMuWTTXc;@CGRp$Tce6{P$k*K5H+$sPp(O^Ib1%&A z{G9*1Z~oB2?w)1DELEEMF7~E>iNSg{xJ>J%GLheNvk}+qnd50SZ<-H&c_iI_VqxD& zT)Ahd(#G$&=~!Z*nm4L1kI)_@ikA`lUA2X;Tq>{TTW>zG#6UGyJ>U50#${}Nw@c(J zmn%znm+>KZeD`|dhssD0MX_}NfNszKO01{^WnVXI6H#yyjEkiggcnOwY{T%2ixJJ3 z(9Wy$=M~DM#=X-kM_<}dj~J~JbQ6tB+<>iG1n8(e6b~A|xwezPfG#Q-bsa#+X|wF_ z8S8KHpYykj>vv53zcDQfOv~?>>i=Xm0DMqdne0n7CQnbloN#>2+LD{^vQ>ZJ%&Y_# z%}UEW!&NU~_uEQ_cV?_5$+7Qwju$`~Vz(@{4spViGu_yZ5zW~576C?Wbkvn<&RAW^ zU1_m8z2(3o!$1oc+tOlf+Wl0C~Xy|jB%1D9}2$;tg7J7&-6`tiT$>pE^e<)e9*LLifc0}5;W5`Jn>%Rm7FL_v*)MvGc*5=4ifb&wo#=%If=krqXZwg<9QAYz*WDw-a0Q=|e0+)Ll= zYDwCmnjAWU-n@D9=FPmvnQz|gpF<%(g7Q6&msO(*FTGr?Fg26*>`+v458dnP;u7=& zT|gO;2I>|W$usE^-LEqfUeN;*maKcix4=exX3G`K3rXq1jf{lll$6#+XVa=cRZj#w z4gXsth_}%K`hXhwfOyELQgTuys@(k_#S%(Nie2YbO_2pYmch!jBxq_(n8g^Z#!@Qo zQ5RG>tx3tGJSC+C&<2`F@pwj!@mQ1Q_+;D?#YA4?E4?vQQ8T?K;`6-9UzcOsRh$PS zTAYlEDV7g$sq91?gBQ`vg2~3?a$45nalN~iqfw_j0A8qWAd9HPuv@?&!3i*FkN{Xg zcme#qjSOn~;Shm>NPW01#ct7MP;(Tf7U&&xnX)dm;NC&UM-Mn@NPniiTPE&5462W241tExOHODd-& zBrd54ye2DY4mOu0a=^%%%4M)LDc^`%1N1fpPeu6*FC?UBf)^Df6HSPdsvaJb1SKu< zcwvN3Nh69VMMdRB1<#m_)n8-W0*})sL#V#%t5#Dy%qz|ck{;fv)AUu8+P|ulAYPbm ztE#zfc}{}W0o7ZoMhg%UJ}qM2^p#n?u}Z;q+w|DA-6cUFHCa$49t#OG^kCCFo1RH4 z^JzH9epQ3>r_Re-BI3d!*vTdhQCGn(*^%I$~8Mpu2YYW*XtzQ^)Mzx79oa_?ju}{oUt|pb96+S#wrc8T(C|+;I^!y}20aJZar2z$Gial(52OZ~ZgnhGYNL!w*?Ple1c@c1 zp3v#`ik8Dwv?+8m#ULLN{p8Q_8Kl2v(9J(E$Z(CJ{pc7{sd*QLt|1EkZvN>8eGSc1 zk%0cH1w3Qc$pW03R4{jac8bGNM!_04DJMY)=au89rm!@{YtV##AP$BBvdNg!7BZ5h zXPKK%$U=hSGnph@p%&yN_&JHYE=g&aVHV8EX&dnb$01UaeMh3b#Q~|_pIZ3_b9T!Z z!sMp=z=g>mlU5}S2Z6ITy>-yzM^k2` zv}&?oB2Ion(@Qvrgh|gx3#PA<*bp!wcUpC^0k!VIK-g$B5rDAt<6E(X}71)j?Z>}+Sq14pAiJH8pmL4eu z>fbv1=Go=8PXpX%ZQURI0s`!`Ts;MB@1rEte4 z3WZMPm{McsvRG)`x1#*K<*x_NmO8rM>%7zXcGp_RkwV9jy933JqdCv|uDvUJ@0`xD zrA}_8@lGV?U2ogH(q3pgl%q?{ZOaF5oh>zWmUi#Wd2;Hlz&SbFlV@Ko0K%nci3P#F6yHUTNG~=?*aW3|QEPx%a>Ov*X1_Pi?~--cROxgb=b( zFgdgMAdnF~IKZdVipCM3;`CMyE)9Y%9Faj@slt0E8euKW!%;FUM#xb@jsY=!7j6hr zh6D$b{bVw7dQyq_EM&8`w;8NnIX**1K1m30W)Yi59{4IGYQfl3`+<)uZ(xH+K zHcQcxzb$v8;OAC43jQN&{#d~u`?&5?|G6&%#Na)e%&^gdg5f;Vey_E<^`C!xQ4l7k z$eKLCH)dX&$z5LQSPA5hoX!wuj?)q*U;Eh7guYW91zGMG8*bMzr$WDTDVo@M<8 zQ#G^SfhTKb=H@6QS<{eYf$uYiU{|(jLCf|+lbitEWztRt?VOIE;^nleS!&e~X``P7BKn>Yg{$tf$MbW%oaC=3 zrRb3E8M44tXE|jS5N49oTWX9rq|?#f1G*~`)x)Eb3ZJJ`lCxrkylKTV+;jb7W3_vR z`iCz^yrx^$q?8KJLrAq~fC#)7f@h%-zCbu~r$$0HA{{4!As}Xx<^BV(Y6fhX6$2ZU z{FSuH!YZ?^8qF$bWrnu1EgQVdrWCIU3CJL;R9HcolQ4WDGCdi1I!mHT?z1w+5yr+j zzW{NAmn|fN`ktELR#A8nOsI{pyRCO@=dL`{R%&WqytK|ew#M}qxZWan0wByCE3jQl zZ0>L=c6u##t`Iv{jP-9K#tX1?WGRwwJyK#j-x2cro+$1pk`kyAr-Q*4hG*yx*qFMVKlgN8{r z>JZzx{QO_NySH&H-*kM{bD|V#TCeZScgG6#vBhUTWBhMidhJr~;PS5J(8^2s==pq4 zf4=`}{)LzG@$31kLSB&a4U?DhpeXouOOK2XMLf74)ZuBQVax!B$xV-mJNPP)2=mb9#^WGWiDqR} z(eU|E57*pH(DMoza1jW6YYfz{1$Gw#yWde)_rqK1L^1IABDwz7ntKY(Js%0Hy#vMQ zV6pka;^k7P@vZoq@#XQAzGCR;;?O_5ArP$x8m!=tMEvAqC;2WDkDLB@JOyVOUM_Jn z7>~a)%O~v~OrHAIv&eE2lPzs~NSwnj5%S=J5EEp!2+0uDM}fSKHeD3$+w`>3?VHhV zx?$s~Mml_VYzslPd9a;s+B(6~jrOCG42SQ`0YOP7;fpXNFRGp4M4-cT&uVf~wF7O% zm;i{4C)T_Vt_2>awp&l(mqCy0HRBw1P6h<5GpW%x;;eBvXKf_~|TM5&+c}c{`Bqm_u zf6o2z64t013J_N2ZNJ+`_H8>1!|CVIao>~bNKdyfiB3!++H^Yh$_YtRwr@+uJ9Zcu zXz$}?=^GizRn_*7WUvaGwH;kHcaa@1A!=zDb>6AA>PV`aMyshv*lgjQEPjmZXDMIa zE0IHKMaB@TI<$S7QAdJff{#^%C1ba0<&YEAiEzW{ZJkX$E$ zomlE&CZ%Um%3^BcZff&xs?vG)L9UWpDP(f%`I3;yf0-+8=LEh?k_DXnU+Xx1#SZL| z{xr2}lKBR7b>cW>|l{!m)7|5 zW=^o#)trzYD@+~YBH=;P_B(tcX+%uUb=Xs@`IYT;J6ypgl=Tg{sc6I>sToaVXi(Z2 z8GMD(8gGXPZOt%s8DkQ}Okhw}lo9t=aO!-bH$QOB9dK0{VMDFS+@5JPU=1U#)-p}l z#GH=I3~D2_iJ_*cbus}Y`g{&J*~IXXtVynkBNr`Cyxf1rh&!7iP9k5hi6w`{wXmw8 z>|Xl~{kd)^Ee(EQIuFTt0_Y{#UVABu`iBP8m0=*-#Ru*E_V?d*eFHYq<1F_2vrjGd zqb@xNMSJ(G(2ZwbS)toqW-xR0P_<^3`XD+;EcD;IVd4?W`S6bBdJa22lFq!nP@@) literal 0 HcmV?d00001 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_env.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_env.py deleted file mode 100644 index de77f959..00000000 --- a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_env.py +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/env python3 -import os -import sys -import shutil -import subprocess -from pathlib import Path - -HOME = Path.home() -REPO_DIR = HOME / "sosp24-ae" / "wasabi" -EXPECTED_REMOTE_SUBSTR = "github.com/bastoica/wasabi" -EXPECTED_BRANCH = "sosp24-ae" -EXPECTED_WASABI_ROOT = str(REPO_DIR) -EXPECTED_JAVA_HOME = "/usr/lib/jvm/java-8-openjdk-amd64/jre" - -PREREQS = ["tree", "mvn", "gradle", "ant", "python3", "java", "git"] - -def repo_check(): - # path exists - if not REPO_DIR.exists(): - return False, "repo path missing" - # git repo - r = subprocess.run(["git", "-C", str(REPO_DIR), "rev-parse", "--is-inside-work-tree"], - stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) - if r.returncode != 0 or r.stdout.strip() != "true": - return False, "not a git repo" - # correct branch - r = subprocess.run(["git", "-C", str(REPO_DIR), "rev-parse", "--abbrev-ref", "HEAD"], - stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) - if r.returncode != 0 or r.stdout.strip() != EXPECTED_BRANCH: - return False, f"wrong branch (got '{(r.stdout or '').strip()}')" - # correct remote - r = subprocess.run(["git", "-C", str(REPO_DIR), "remote", "-v"], - stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) - if r.returncode != 0 or EXPECTED_REMOTE_SUBSTR not in r.stdout: - return False, "remote not pointing to bastoica/wasabi" - return True, "" - -def prereqs_check(): - missing = [cmd for cmd in PREREQS if shutil.which(cmd) is None] - if missing: - return False, f"missing: {', '.join(missing)}" - return True, "" - -def paths_check(): - wasabi_root = os.environ.get("WASABI_ROOT_DIR", "") - if not (wasabi_root == EXPECTED_WASABI_ROOT and Path(wasabi_root).exists()): - return False, "WASABI_ROOT_DIR incorrect" - java_home = os.environ.get("JAVA_HOME", "") - if not (java_home == EXPECTED_JAVA_HOME and Path(java_home).exists()): - return False, "JAVA_HOME incorrect" - return True, "" - -def main(): - results = [] - ok, why = repo_check() - print(f"Repository: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") - results.append(ok) - - ok, why = prereqs_check() - print(f"Prerequisites: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") - results.append(ok) - - ok, why = paths_check() - print(f"Paths: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") - results.append(ok) - - sys.exit(0 if all(results) else 1) - -if __name__ == "__main__": - main() - diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_bug.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_bug.py deleted file mode 100644 index 26b41e79..00000000 --- a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_bug.py +++ /dev/null @@ -1,140 +0,0 @@ -#!/usr/bin/env python3 -import os -import sys -import subprocess -from pathlib import Path -from collections import deque -from typing import List, Tuple, Optional - -# ---------------- Configuration ---------------- -TIMEOUT = 60 * 60 # seconds; adjust if your tests take longer - -HADOOP_DIR = Path.home() / "sosp24-ae" / "benchmarks" / "hadoop" -CONFIG_FILE = Path.home() / "sosp24-ae" / "wasabi" / "wasabi-testing" / "config" / "hadoop" / "example.conf" -TEST_NAME = "TestFSEditLogLoader" - -ERROR_PATTERN = "NullPointerException" -BEFORE_CONTEXT = 2 -AFTER_CONTEXT = 10 -# ------------------------------------------------ - - -def run_command_with_timeout(cmd: List[str], dir_path: str): - """ - Run a command with a timeout of {TIMEOUT} seconds. - - Parameters: - cmd (list): The command to run as a list of arguments. - - Returns: - subprocess.CompletedProcess | None: The result of the command execution, or None if timed out. - """ - try: - # capture_output=True -> stdout/stderr are bytes; we decode later - result = subprocess.run(cmd, cwd=dir_path, shell=False, capture_output=True, timeout=TIMEOUT) - return result - except subprocess.TimeoutExpired: - return None - - -def build_maven_surefire_cmd(config_file: Path, test_name: str) -> List[str]: - """Construct the surefire command exactly as in the README (without tee/log).""" - return [ - "mvn", "surefire:test", - "-fn", "-B", - f"-DconfigFile={str(config_file)}", - f"-Dtest={test_name}", - ] - - -def decode_output(cp: subprocess.CompletedProcess) -> List[str]: - """Decode combined stdout+stderr to a list of text lines (no trailing newlines).""" - # Combine, prefer preserving original order? We can concatenate; Maven lines are mostly on stdout. - stdout = cp.stdout or b"" - stderr = cp.stderr or b"" - text = stdout + b"\n" + stderr - return text.decode(errors="replace").splitlines() - - -def scan_lines_for_pattern( - lines: List[str], - pattern: str, - before_ctx: int, - after_ctx: int -) -> Tuple[bool, List[str]]: - """ - Scan lines line-by-line for `pattern`, returning (found, context_block). - - Context block emulates `grep -B{before_ctx} -A{after_ctx}` for the *first* match. - """ - before = deque(maxlen=before_ctx) - after_remaining = 0 - context: List[str] = [] - - for idx, line in enumerate(lines): - if after_remaining > 0: - context.append(line) - after_remaining -= 1 - if after_remaining == 0: - break # done collecting after-context - - if pattern in line: - # capture before-context - context.extend(list(before)) - # the matched line itself (print just the pattern like grep, or the full line?) - # README's example shows just the word "NullPointerException" on its own line. - # To be faithful, insert the pattern token as its own line: - context.append(pattern) - # then after-context - after_remaining = after_ctx - - before.append(line) - - found = any(pattern == l for l in context) - return found, context - - -def validate_paths() -> Optional[str]: - """Ensure required paths exist; return error message if not.""" - if not HADOOP_DIR.is_dir(): - return f"Hadoop directory not found: {HADOOP_DIR}" - if not CONFIG_FILE.is_file(): - return f"Config file not found: {CONFIG_FILE}" - return None - - -def main(): - # Basic path sanity - path_err = validate_paths() - if path_err: - print(f"RunCheck: FAIL - {path_err}") - sys.exit(2) - - cmd = build_maven_surefire_cmd(CONFIG_FILE, TEST_NAME) - - # Execute with timeout, capture output in-memory (no log file) - result = run_command_with_timeout(cmd, str(HADOOP_DIR)) - if result is None: - print(f"RunCheck: FAIL - command timed out after {TIMEOUT} seconds") - sys.exit(2) - - # Decode and scan line-by-line (no saved logfile) - lines = decode_output(result) - found, ctx = scan_lines_for_pattern(lines, ERROR_PATTERN, BEFORE_CONTEXT, AFTER_CONTEXT) - - if found: - print("RunCheck: PASS - NullPointerException detected") - if BEFORE_CONTEXT or AFTER_CONTEXT: - print("---- Context ----") - for l in ctx: - print(l) - print("---- End Context ----") - sys.exit(0) - else: - print("RunCheck: FAIL - NullPointerException NOT detected") - sys.exit(1) - - -if __name__ == "__main__": - main() - diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_weaving.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_weaving.py deleted file mode 100644 index 9fc7d9a7..00000000 --- a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_hadoop_weaving.py +++ /dev/null @@ -1,105 +0,0 @@ -#!/usr/bin/env python3 -import sys -import shlex -import subprocess -from pathlib import Path - -# --- Config: adjust if your tree lives elsewhere --- -HADOOP_DIR = Path.home() / "sosp24-ae" / "benchmarks" / "hadoop" -MAX_CLASS_DIRS = 200 # safety cap; 0 means no cap -MAX_CLASSES_PER_DIR = 2000 # safety cap per classes/ dir; 0 means no cap -ASPECTJ_MARKERS = [ - # Synthetic members commonly injected by ajc - "ajc$preClinit", - "ajc$initFailureCause", - "ajc$tjp", # JoinPoint static part fields - "ajc$before$", # woven advice methods - "ajc$after$", - "ajc$around$", - "ajc$interField$", # inter-type field stubs - "ajc$interMethod$", # inter-type method stubs - - # Runtime references that appear in woven bytecode - "org.aspectj.runtime.reflect.Factory", - "org.aspectj.runtime.internal.AroundClosure", - "org.aspectj.lang.JoinPoint", - "org.aspectj.lang.JoinPoint$StaticPart", - "org.aspectj.lang.ProceedingJoinPoint", - "org.aspectj.lang.Signature", - "org.aspectj.lang.NoAspectBoundException", -] -# --------------------------------------------------- - -def run(cmd): - """Run a shell-safe command; return (rc, stdout, stderr).""" - try: - cp = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) - return cp.returncode, (cp.stdout or "").strip(), (cp.stderr or "").strip() - except FileNotFoundError as e: - return 127, "", str(e) - -def find_classes_dirs(root: Path): - """Find all target/classes directories in the build tree.""" - cmd = ["bash", "-lc", f"shopt -s nullglob; find {shlex.quote(str(root))} -type d -path '*/target/classes' | sort"] - rc, out, err = run(cmd) - if rc != 0: - return [], f"find failed: {err or out}" - dirs = [Path(p) for p in out.splitlines() if p] - return dirs, "" - -def iter_class_files(classes_dir: Path, limit: int): - """Yield up to `limit` .class files from a classes/ directory (recursive).""" - # Use find for speed and to avoid Python recursion cost - q = shlex.quote(str(classes_dir)) - cmd = ["bash", "-lc", f"shopt -s nullglob; find {q} -type f -name '*.class' | sort"] - rc, out, err = run(cmd) - if rc != 0 or not out: - return [] - files = [Path(p) for p in out.splitlines() if p] - if limit and len(files) > limit: - # sample evenly - step = max(len(files) // limit, 1) - files = files[::step][:limit] - return files - -def classfile_has_aspect_markers(class_path: Path): - """ - Stream a .class through `strings` and search for AspectJ markers. - Return (bool, matched_marker_or_empty). - """ - pattern = "|".join(ASPECTJ_MARKERS) - cmd = ["bash", "-lc", f"strings {shlex.quote(str(class_path))} | grep -a -E '{pattern}' -m 1"] - rc, out, err = run(cmd) - if rc == 0 and out: - # Return the first matched marker token if possible - matched = next((m for m in ASPECTJ_MARKERS if m in out), out) - return True, matched - return False, "" - -def main(): - if not HADOOP_DIR.is_dir(): - print(f"Weaving (class scan): FAIL - Hadoop directory not found: {HADOOP_DIR}") - sys.exit(2) - - class_dirs, err = find_classes_dirs(HADOOP_DIR) - if not class_dirs: - print(f"Weaving (class scan): FAIL - no target/classes directories found under {HADOOP_DIR}") - sys.exit(1) - - if MAX_CLASS_DIRS and len(class_dirs) > MAX_CLASS_DIRS: - class_dirs = class_dirs[:MAX_CLASS_DIRS] - - for cdir in class_dirs: - class_files = iter_class_files(cdir, MAX_CLASSES_PER_DIR) - for cf in class_files: - ok, marker = classfile_has_aspect_markers(cf) - if ok: - print(f"Weaving (class scan): PASS - marker '{marker}' in {cf}") - sys.exit(0) - - print("Weaving (class scan): FAIL - scanned .class files but found no AspectJ markers (ajc$…/org.aspectj…)") - sys.exit(1) - -if __name__ == "__main__": - main() - diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_wasabi_build.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_wasabi_build.py deleted file mode 100644 index de23fa48..00000000 --- a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/check_wasabi_build.py +++ /dev/null @@ -1,169 +0,0 @@ -#!/usr/bin/env python3 -import sys -import os -from pathlib import Path -import xml.etree.ElementTree as ET -import fnmatch - -BASE = Path.home() / "sosp24-ae" / "wasabi" / "wasabi-testing" -M2 = Path.home() / ".m2" / "repository" - -# XML namespace-safe helper -def xget(elem, tag): - # Handle tags with or without default namespace - if elem is None: - return None - # Try direct - v = elem.find(tag) - if v is not None and v.text: - return v.text.strip() - # Try any namespace - for child in elem: - t = child.tag.split('}', 1)[-1] # strip "{ns}" - if t == tag: - return (child.text or "").strip() - return None - -def parse_pom(pom_path, top_defaults=None): - """ - Returns dict with keys: dir, pom, groupId, artifactId, version, packaging - Inherits groupId/version from parent or provided top_defaults. - """ - try: - tree = ET.parse(pom_path) - root = tree.getroot() - except Exception as e: - return {"dir": pom_path.parent, "pom": pom_path, "error": f"XML parse error: {e}"} - - # Maven POM default packaging is "jar" - artifactId = xget(root, "artifactId") - groupId = xget(root, "groupId") - version = xget(root, "version") - packaging = xget(root, "packaging") or "jar" - - parent = root.find("parent") - if parent is not None: - p_groupId = xget(parent, "groupId") - p_version = xget(parent, "version") - # artifactId of parent is irrelevant for inheritance here - if not groupId and p_groupId: - groupId = p_groupId - if not version and p_version: - version = p_version - - if top_defaults: - groupId = groupId or top_defaults.get("groupId") - version = version or top_defaults.get("version") - - return { - "dir": pom_path.parent, - "pom": pom_path, - "groupId": groupId, - "artifactId": artifactId, - "version": version, - "packaging": packaging - } - -def find_poms(base): - return sorted(base.rglob("pom.xml")) - -def repo_path(groupId, artifactId, version): - parts = groupId.split(".") - return M2.joinpath(*parts, artifactId, version) - -def has_target_jar(module): - if module["packaging"] == "pom": - return True # no jar expected - target = module["dir"] / "target" - if not target.is_dir(): - return False - # look for artifactId-version*.jar (allow classifiers, shaded, etc.) - pattern = f"{module['artifactId']}-{module['version']}*.jar" - return any(fnmatch.fnmatch(p.name, pattern) for p in target.glob("*.jar")) - -def has_installed_artifact(module): - rp = repo_path(module["groupId"], module["artifactId"], module["version"]) - if module["packaging"] == "pom": - return (rp / f"{module['artifactId']}-{module['version']}.pom").is_file() - # prefer exact jar; allow classifiers - return any(p.suffix == ".jar" and fnmatch.fnmatch( - p.name, f"{module['artifactId']}-{module['version']}*.jar") - for p in rp.glob("*.jar")) - -def main(): - # Basic presence - if not BASE.exists(): - print("Build: FAIL - base project directory not found") - sys.exit(1) - - poms = find_poms(BASE) - if not poms: - print("Build: FAIL - no pom.xml files found under wasabi-testing") - sys.exit(1) - - # Establish top-level defaults (groupId/version) from the root POM (closest to BASE) - root_pom = BASE / "pom.xml" - top_defaults = {} - if root_pom.exists(): - root_mod = parse_pom(root_pom) - if not root_mod.get("error"): - if root_mod.get("groupId"): - top_defaults["groupId"] = root_mod["groupId"] - if root_mod.get("version"): - top_defaults["version"] = root_mod["version"] - - modules = [] - errors = [] - for pom in poms: - m = parse_pom(pom, top_defaults=top_defaults) - if m.get("error"): - errors.append((pom, m["error"])) - continue - # Sanity: must have these - if not all([m.get("artifactId"), m.get("groupId"), m.get("version")]): - errors.append((pom, "missing groupId/artifactId/version after inheritance")) - else: - modules.append(m) - - if errors: - # Parsing problems → cannot reliably assert build - print("Build: FAIL - POM parsing errors present") - for pom, err in errors[:5]: - print(f" - {pom}: {err}") - if len(errors) > 5: - print(f" ... {len(errors)-5} more") - sys.exit(1) - - # Evaluate modules - missing_targets = [] - missing_installs = [] - - for m in modules: - # skip aggregator-only modules that are 'pom' packaging for target check - if not has_target_jar(m): - missing_targets.append(str(m["dir"])) - if not has_installed_artifact(m): - missing_installs.append(f"{m['groupId']}:{m['artifactId']}:{m['version']}") - - # Decide overall result - if missing_targets or missing_installs: - print("Build: FAIL") - if missing_targets: - print(" Missing built JARs in target/:") - for d in missing_targets[:10]: - print(f" - {d}") - if len(missing_targets) > 10: - print(f" ... {len(missing_targets)-10} more") - if missing_installs: - print(" Missing artifacts in local ~/.m2 repository:") - for gav in missing_installs[:10]: - print(f" - {gav}") - if len(missing_installs) > 10: - print(f" ... {len(missing_installs)-10} more") - sys.exit(1) - else: - print("Build: PASS") - sys.exit(0) - -if __name__ == "__main__": - main() diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/checker.log b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/checker.log deleted file mode 100644 index 1584fef8..00000000 --- a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/checker.log +++ /dev/null @@ -1,305 +0,0 @@ -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-cos/target/classes/org/apache/hadoop/fs/cosn/CosNFileReadTask.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-cos/target/classes/org/apache/hadoop/fs/cosn/CosNativeFileSystemStore.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-huaweicloud/target/classes/org/apache/hadoop/fs/obs/OBSCommonUtils.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-huaweicloud/target/classes/org/apache/hadoop/fs/obs/OBSFileSystem.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-huaweicloud/target/classes/org/apache/hadoop/fs/obs/OBSInputStream.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-huaweicloud/target/classes/org/apache/hadoop/fs/obs/OBSObjectBucketUtils.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-cloud-storage-project/hadoop-huaweicloud/target/classes/org/apache/hadoop/fs/obs/OBSPosixBucketUtils.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/crypto/key/kms/LoadBalancingKMSClientProvider.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/CachingGetSpaceUsed$RefreshThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/FSInputChecker.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/FileUtil.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/TrashPolicyDefault$Emptier.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/TrashPolicyDefault.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/impl/prefetch/CachingBlockManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/impl/prefetch/Retryer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/shell/SetReplication.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/shell/Tail.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/fs/shell/Truncate.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ha/ActiveStandbyElector.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ha/HealthMonitor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ha/ZKFailoverController.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/http/HttpServer2$Builder.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/http/HttpServer2.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/io/retry/AsyncCallHandler$AsyncCallQueue$Processor$1.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/io/retry/RetryInvocationHandler$Call.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/CallQueueManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Client$Connection$1.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Client$Connection.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Client.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/DecayRpcScheduler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/ExternalCall.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/RPC.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/RetryCache.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Server$ConnectionManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Server$Listener.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Server$Responder.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/ipc/Server.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/metrics2/impl/MetricsSinkAdapter.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/metrics2/impl/MetricsSystemImpl.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/metrics2/impl/SinkQueue.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/metrics2/sink/RollingFileSystemSink.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-common/target/classes/org/apache/hadoop/net/unix/DomainSocket.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-minikdc/target/classes/org/apache/hadoop/minikdc/MiniKdc.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-common-project/hadoop-registry/target/classes/org/apache/hadoop/registry/server/dns/RegistryDNS.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DFSClient.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DFSInotifyEventInputStream.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DFSInputStream.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DFSOutputStream.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DFSStripedInputStream.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DFSStripedOutputStream.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DataStreamer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/DeadNodeDetector.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/FileChecksumHelper$ReplicatedFileChecksumComputer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/FileChecksumHelper$StripedFileNonStripedChecksumComputer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/LocatedBlocksRefresher.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/PeerCache.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/client/impl/LeaseRenewer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-client/target/classes/org/apache/hadoop/hdfs/protocol/CacheDirectiveIterator.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-nfs/target/classes/org/apache/hadoop/hdfs/nfs/nfs3/OpenFileCtx$Dumper.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-nfs/target/classes/org/apache/hadoop/hdfs/nfs/nfs3/OpenFileCtx.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-nfs/target/classes/org/apache/hadoop/hdfs/nfs/nfs3/OpenFileCtxCache$StreamMonitor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs-rbf/target/classes/org/apache/hadoop/hdfs/rbfbalance/RouterFedBalance.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/qjournal/client/QuorumCall.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/qjournal/server/JournalNodeSyncer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/balancer/Balancer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/balancer/Dispatcher$Source.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/balancer/Dispatcher.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/balancer/KeyManager$BlockKeyUpdater.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/BlockManager$MarkedDeleteBlockScrubber.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/BlockManager$RedundancyMonitor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/BlockManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/BlockManagerSafeMode$SafeModeMonitor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/DatanodeAdminDefaultMonitor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/DatanodeManager$1.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/HeartbeatManager$Monitor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/blockmanagement/PendingReconstructionBlocks$PendingReconstructionMonitor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/BPServiceActor$LifelineSender.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/BPServiceActor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/BlockReceiver$PacketResponder.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/BlockReceiver.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DataNode$5.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DataNode.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DataXceiver.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DataXceiverServer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DirectoryScanner$ReportCompiler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DirectoryScanner.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/DiskBalancer$DiskBalancerMover.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/IncrementalBlockReportManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/VolumeScanner.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/checker/AbstractFuture.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/checker/TimeoutFuture.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/FsDatasetCache$UncachingTask.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/FsDatasetCache.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/FsDatasetImpl$LazyWriter.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/FsVolumeList.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/datanode/metrics/DataNodeDiskMetrics$1.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/mover/Mover.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/BackupImage.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/BackupNode.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/Checkpointer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ContentSummaryComputationContext.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSDirEncryptionZoneOp$EDEKCacheLoader.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSEditLog.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSEditLogAsync$SyncEdit.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSEditLogAsync.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSNamesystem$LazyPersistFileScrubber.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSNamesystem$NameNodeEditLogRoller.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FSNamesystem$NameNodeResourceMonitor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/FsImageValidation.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/INodeReferenceValidation.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/LeaseManager$Monitor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/NamenodeFsck.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ReencryptionHandler$ReencryptionPendingInodeIdCollector.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ReencryptionHandler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ReencryptionUpdater.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/SecondaryNameNode.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ha/EditLogTailer$MultipleNameNodeProxy.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ha/EditLogTailer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-hdfs-project/hadoop-hdfs/target/classes/org/apache/hadoop/hdfs/server/namenode/ha/StandbyCheckpointer$CheckpointerThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapred/YarnChild.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/jobhistory/JobHistoryEventHandler$MetaInfo.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/JobEndNotifier.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/MRAppMaster.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/TaskHeartbeatHandler$PingChecker.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/commit/CommitterEventHandler$EventProcessor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/commit/CommitterEventHandler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/job/impl/JobImpl$TaskCompletedTransition.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/local/LocalContainerAllocator.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/rm/RMCommunicator$AllocatorRunnable.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/target/classes/org/apache/hadoop/mapreduce/v2/app/rm/RMCommunicator.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/IndexCache.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/JobClient.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/JobEndNotifier.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/StatisticsCollector.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/Task$TaskReporter$DiskLimitCheck.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/Task$TaskReporter.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/Task.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapred/pipes/OutputHandler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/Job.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/lib/chain/Chain$ChainBlockingQueue.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/lib/jobcontrol/JobControl.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/lib/output/FileOutputCommitter.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/task/reduce/EventFetcher.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/task/reduce/Fetcher.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/task/reduce/MergeThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/task/reduce/ShuffleSchedulerImpl.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/tools/CLI.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/target/classes/org/apache/hadoop/mapreduce/util/ProcessTree.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/target/classes/org/apache/hadoop/mapreduce/v2/hs/HistoryFileManager$HistoryFileInfo.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/target/classes/org/apache/hadoop/mapreduce/v2/hs/HistoryFileManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/target/classes/org/apache/hadoop/mapred/ClientServiceDelegate.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/target/classes/org/apache/hadoop/mapred/YARNRunner.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-nativetask/target/classes/org/apache/hadoop/mapred/nativetask/StatusReportChecker.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-uploader/target/classes/org/apache/hadoop/mapred/uploader/FrameworkUploader.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-examples/target/classes/org/apache/hadoop/examples/pi/DistSum$MixMachine.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-mapreduce-project/hadoop-mapreduce-examples/target/classes/org/apache/hadoop/examples/pi/Util.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-aliyun/target/classes/org/apache/hadoop/fs/aliyun/oss/AliyunOSSFileReaderTask.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-aws/target/classes/org/apache/hadoop/fs/s3a/Invoker.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/AzureNativeFileSystemStore.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/BlockBlobAppendStream.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/ClientThrottlingAnalyzer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/PageBlobOutputStream.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/SelfRenewingLease$Renewer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/SelfRenewingLease.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/SelfThrottlingIntercept.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/WasbRemoteCallHelper.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azure/metrics/BandwidthGaugeUpdater$UploadBandwidthUpdater.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azurebfs/oauth2/AzureADAuthenticator.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azurebfs/oauth2/CustomTokenProviderAdapter.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azurebfs/services/AbfsClient.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azurebfs/services/AbfsClientThrottlingAnalyzer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azurebfs/services/AbfsRestOperation.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-azure/target/classes/org/apache/hadoop/fs/azurebfs/services/ReadBufferManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-benchmark/target/classes/org/apache/hadoop/benchmark/VectoredReadBenchmark$Joiner.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-datajoin/target/classes/org/apache/hadoop/contrib/utils/join/DataJoinJob.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-distcp/target/classes/org/apache/hadoop/tools/SimpleCopyListing$FileStatusProcessor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-distcp/target/classes/org/apache/hadoop/tools/SimpleCopyListing$TraverseDirectory.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-distcp/target/classes/org/apache/hadoop/tools/util/RetriableCommand.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-distcp/target/classes/org/apache/hadoop/tools/util/ThrottledInputStream.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/target/classes/org/apache/hadoop/tools/dynamometer/ApplicationMaster.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/target/classes/org/apache/hadoop/tools/dynamometer/Client.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/target/classes/org/apache/hadoop/tools/dynamometer/DynoInfraUtils.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-infra/target/classes/org/apache/hadoop/tools/dynamometer/SimulatedDataNodes.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-workload/target/classes/org/apache/hadoop/tools/dynamometer/workloadgenerator/CreateFileMapper.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-workload/target/classes/org/apache/hadoop/tools/dynamometer/workloadgenerator/audit/AuditReplayMapper.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-dynamometer/hadoop-dynamometer-workload/target/classes/org/apache/hadoop/tools/dynamometer/workloadgenerator/audit/AuditReplayThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-federation-balance/target/classes/org/apache/hadoop/tools/fedbalance/FedBalance.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-federation-balance/target/classes/org/apache/hadoop/tools/fedbalance/procedure/BalanceJob.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/Gridmix.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/JobMonitor$MonitorThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/JobSubmitter$SubmitTask.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/LoadJob$ResourceUsageMatcherRunner.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/LoadJob$StatusReporter.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/SleepJob$SleepMapper.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/SleepJob$SleepReducer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/StressJobFactory$StressReaderThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-gridmix/target/classes/org/apache/hadoop/mapred/gridmix/emulators/resourceusage/CumulativeCpuUsageEmulatorPlugin.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-tools/hadoop-sls/target/classes/org/apache/hadoop/yarn/sls/NMRunner.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/target/classes/org/apache/hadoop/yarn/applications/distributedshell/ApplicationMaster.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/target/classes/org/apache/hadoop/yarn/applications/distributedshell/Client.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-unmanaged-am-launcher/target/classes/org/apache/hadoop/yarn/applications/unmanagedamlauncher/UnmanagedAMLauncher.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/target/classes/org/apache/hadoop/yarn/service/ClientAMService$1.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/target/classes/org/apache/hadoop/yarn/service/ServiceScheduler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/target/classes/org/apache/hadoop/yarn/service/client/ServiceClient.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/target/classes/org/apache/hadoop/yarn/service/monitor/ComponentHealthThresholdMonitor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/target/classes/org/apache/hadoop/yarn/service/utils/ServiceApiUtil.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/target/classes/org/apache/hadoop/yarn/service/utils/ServiceUtils$ProcessTerminationHandler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/AMRMClient.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/ContainerShellWebSocket.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/async/AMRMClientAsync.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/async/impl/AMRMClientAsyncImpl$HeartbeatThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/impl/AMRMClientImpl.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/impl/ContainerManagementProtocolProxy.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/api/impl/YarnClientImpl.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/cli/LogsCLI$ClientConnectionRetry.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/cli/RMAdminCLI.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-client/target/classes/org/apache/hadoop/yarn/client/cli/TopCLI.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/client/api/impl/FileSystemTimelineWriter$LogFDsCache.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/client/api/impl/TimelineConnector$TimelineClientConnectionRetry.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/client/api/impl/TimelineV2ClientImpl.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/event/AsyncDispatcher.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/logaggregation/AggregatedLogDeletionService.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController$FSAction.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/LogAggregationIndexedFileController.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/nodelabels/store/AbstractFSNodeStore.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/security/client/ClientToAMTokenSecretManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/util/AbstractLivelinessMonitor$PingChecker.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/util/AdHocLogDumper.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/util/Log4jWarningErrorMetricsAppender$ErrorAndWarningsCleanup.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/util/Log4jWarningErrorMetricsAppender.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/util/ProcfsBasedProcessTree.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/webapp/Dispatcher.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/target/classes/org/apache/hadoop/yarn/webapp/WebApps$Builder.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-applicationhistoryservice/target/classes/org/apache/hadoop/yarn/server/timeline/LeveldbTimelineStore$EntityDeletionThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-applicationhistoryservice/target/classes/org/apache/hadoop/yarn/server/timeline/RollingLevelDBTimelineStore$EntityDeletionThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/target/classes/org/apache/hadoop/yarn/server/AMHeartbeatRequestHandler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/target/classes/org/apache/hadoop/yarn/server/AMRMClientRelayer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/target/classes/org/apache/hadoop/yarn/server/federation/retry/FederationActionRetry.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/target/classes/org/apache/hadoop/yarn/server/uam/UnmanagedApplicationManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/ContainerExecutor$DelayedProcessKiller.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/ContainerExecutor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/DeletionService.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/LocalDirsHandlerService.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/NodeResourceMonitorImpl$MonitoringThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/NodeStatusUpdaterImpl$StatusUpdaterRunnable.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/amrmproxy/AMRMProxyTokenSecretManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/amrmproxy/FederationInterceptor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/AuxServices.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/ContainerManagerImpl.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/container/ContainerImpl$RetryFailureTransition$1.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/launcher/ContainerLaunch.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/linux/resources/CGroupElasticMemoryController.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/linux/resources/CGroupsHandlerImpl.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/linux/resources/DefaultOOMHandler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/linux/resources/gpu/GpuResourceAllocator.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/localizer/ContainerLocalizer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/logaggregation/AppLogAggregatorImpl.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/loghandler/NonAggregatingLogHandler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/monitor/ContainerMetrics.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/monitor/ContainersMonitorImpl$LogMonitorThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/monitor/ContainersMonitorImpl$MonitoringThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/containermanager/resourceplugin/deviceframework/DeviceMappingManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/health/TimedHealthReporterService.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/logaggregation/tracker/NMLogAggregationStatusTracker.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/nodelabels/AbstractNodeDescriptorsProvider.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/recovery/NMLeveldbStateStoreService.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/target/classes/org/apache/hadoop/yarn/server/nodemanager/util/CgroupsLCEResourcesHandler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/ActiveStandbyElectorBasedElectorService.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/CuratorBasedElectorService.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/DBManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/DecommissioningNodesWatcher.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/NodesListManager$CachedResolver.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/NodesListManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/ResourceManager$SchedulerEventDispatcher$EventProcessorMonitor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/metrics/TimelineServiceV1Publisher$PutEventThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/nodelabels/RMDelegatedNodeLabelsUpdater.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/preprocessor/SubmissionContextPreProcessor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/recovery/FileSystemRMStateStore$FSAction.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/recovery/ZKRMStateStore$VerifyActiveStatusThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/rmapp/attempt/RMAppAttemptImpl$1.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/AbstractYarnScheduler$UpdateThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/AbstractYarnScheduler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/activities/ActivitiesManager$1.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/activities/ActivitiesManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/CapacityScheduler$AsyncScheduleThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/CapacityScheduler.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/fair/AllocationFileLoaderService.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/fair/FSPreemptionThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/scheduler/fair/FairScheduler$ContinuousSchedulingThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/AMRMTokenSecretManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/DelegationTokenRenewer$DelayedTokenRemovalRunnable.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/DelegationTokenRenewer$DelegationTokenCancelThread.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/DelegationTokenRenewer$DelegationTokenRenewerPoolTracker.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/DelegationTokenRenewer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/NMTokenSecretManagerInRM.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/security/RMContainerTokenSecretManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/target/classes/org/apache/hadoop/yarn/server/resourcemanager/volume/csi/VolumeManagerImpl.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-router/target/classes/org/apache/hadoop/yarn/server/router/clientrm/FederationClientInterceptor.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-sharedcachemanager/target/classes/org/apache/hadoop/yarn/server/sharedcachemanager/CleanerTask.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/target/classes/org/apache/hadoop/yarn/server/timelineservice/collector/NodeTimelineCollectorManager$CollectorTokenRenewer.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/target/classes/org/apache/hadoop/yarn/server/timelineservice/collector/NodeTimelineCollectorManager.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/target/classes/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/target/classes/org/apache/hadoop/yarn/server/timelineservice/collector/TimelineCollector.class -Weaving (class scan): PASS - marker ''Lorg/aspectj/lang/JoinPoint$StaticPart;' in /home/cc/sosp24-ae/benchmarks/hadoop/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/target/classes/org/apache/hadoop/yarn/server/timelineservice/storage/FileSystemTimelineWriterImpl$FSAction.class -Weaving (class scan): FAIL - scanned .class files but found no AspectJ markers (ajc$…/org.aspectj…) diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py new file mode 100644 index 00000000..fd20cdba --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python3 +import sys +from typing import Dict + +from oracle_artifact_build import OracleArtifactBuild +from oracle_env_setup import OracleEnvSetup +from oracle_benchmark_prep import OracleBenchmarkPrep +from oracle_experiment_runs import OracleExperimentRuns + +from utils import logger + +def main(): + results: Dict[str, int] = {} + + for cls in (OracleEnvSetup, OracleArtifactBuild, OracleBenchmarkPrep, OracleExperimentRuns): + checker = cls() + ok = checker.run() + name = cls.__name__ + logger.info(f"{name}: {'PASS' if ok else 'FAIL'}") + results[name] = 1 if ok else 0 + + logger.info(f"Agent scores: {results}") + return results + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_artifact_build.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_artifact_build.py new file mode 100644 index 00000000..a3a3ed8a --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_artifact_build.py @@ -0,0 +1,159 @@ +#!/usr/bin/env python3 +import xml.etree.ElementTree as ET +import fnmatch + +from utils import HOME +from utils import REPO_DIR +from utils import logger + +class OracleArtifactBuild: + def __init__(self): + self.maven_packages_dir = HOME / ".m2" / "repository" + + def xget(self, elem, tag): + """ + Helper function to handle POM tags with or without default namespace + """ + if elem is None: + return None + # Search the namespace + v = elem.find(tag) + if v is not None and v.text: + return v.text.strip() + # search any namespace + for child in elem: + t = child.tag.split('}', 1)[-1] + if t == tag: + return (child.text or "").strip() + return None + + def parse_pom(self, pom_path, top_defaults=None): + """ + Collects POM files into dictionary + """ + try: + tree = ET.parse(pom_path) + root = tree.getroot() + except Exception as e: + return {"dir": pom_path.parent, "pom": pom_path, "error": f"XML parse error: {e}"} + + artifactId = self.xget(root, "artifactId") + groupId = self.xget(root, "groupId") + version = self.xget(root, "version") + packaging = self.xget(root, "packaging") or "jar" + + parent = root.find("parent") + if parent is not None: + p_groupId = self.xget(parent, "groupId") + p_version = self.xget(parent, "version") + if not groupId and p_groupId: + groupId = p_groupId + if not version and p_version: + version = p_version + + if top_defaults: + groupId = groupId or top_defaults.get("groupId") + version = version or top_defaults.get("version") + + return { + "dir": pom_path.parent, + "pom": pom_path, + "groupId": groupId, + "artifactId": artifactId, + "version": version, + "packaging": packaging + } + + def find_poms(self, base): + return sorted(base.rglob("pom.xml")) + + def repo_path(self, groupId, artifactId, version): + parts = groupId.split(".") + return self.maven_packages_dir.joinpath(*parts, artifactId, version) + + def has_target_jar(self, module): + if module["packaging"] == "pom": + return True # no jar expected + target = module["dir"] / "target" + if not target.is_dir(): + return False + pattern = f"{module['artifactId']}-{module['version']}*.jar" + return any(fnmatch.fnmatch(p.name, pattern) for p in target.glob("*.jar")) + + def has_installed_artifact(self, module): + rp = self.repo_path(module["groupId"], module["artifactId"], module["version"]) + if module["packaging"] == "pom": + return (rp / f"{module['artifactId']}-{module['version']}.pom").is_file() + return any(p.suffix == ".jar" and fnmatch.fnmatch( + p.name, f"{module['artifactId']}-{module['version']}*.jar") + for p in rp.glob("*.jar")) + + def run(self): + if not REPO_DIR.exists(): + logger.info("Build: FAIL - base project directory not found") + return False + + poms = self.find_poms(REPO_DIR) + if not poms: + logger.info("Build: FAIL - no pom.xml files found under wasabi-testing") + return False + + root_pom = REPO_DIR / "pom.xml" + top_defaults = {} + if root_pom.exists(): + root_mod = self.parse_pom(root_pom) + if not root_mod.get("error"): + if root_mod.get("groupId"): + top_defaults["groupId"] = root_mod["groupId"] + if root_mod.get("version"): + top_defaults["version"] = root_mod["version"] + + modules = [] + errors = [] + for pom in poms: + m = self.parse_pom(pom, top_defaults=top_defaults) + if m.get("error"): + errors.append((pom, m["error"])) + continue + if not all([m.get("artifactId"), m.get("groupId"), m.get("version")]): + errors.append((pom, "missing groupId/artifactId/version after inheritance")) + else: + modules.append(m) + + if errors: + logger.info("Build: FAIL - POM parsing errors present") + for pom, err in errors[:5]: + logger.info(f" - {pom}: {err}") + if len(errors) > 5: + logger.info(f" ... {len(errors)-5} more") + return False + + missing_targets = [] + missing_installs = [] + + for m in modules: + # skip aggregator-only modules that are 'pom' packaging for target check + if not self.has_target_jar(m): + missing_targets.append(str(m["dir"])) + if not self.has_installed_artifact(m): + missing_installs.append(f"{m['groupId']}:{m['artifactId']}:{m['version']}") + + if missing_targets or missing_installs: + logger.info("Code build: FAIL") + if missing_targets: + logger.info(" Missing built JARs in target/:") + for d in missing_targets[:10]: + logger.info(f" - {d}") + if len(missing_targets) > 10: + logger.info(f" ... {len(missing_targets)-10} more") + if missing_installs: + logger.info(" Missing artifacts in local ~/.m2 repository:") + for gav in missing_installs[:10]: + logger.info(f" - {gav}") + if len(missing_installs) > 10: + logger.info(f" ... {len(missing_installs)-10} more") + + return False + + logger.info("Code build: PASS") + return True diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_benchmark_prep.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_benchmark_prep.py index 32253df4..0810bcb3 100644 --- a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_benchmark_prep.py +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_benchmark_prep.py @@ -1,18 +1,18 @@ #!/usr/bin/env python3 import sys import shlex -import argparse import subprocess from pathlib import Path +from utils import BENCH_DIR +from utils import logger + + -BENCH_ROOT = Path.home() / "sosp24-ae" / "benchmarks" REPOS = { "hadoop": ("https://github.com/apache/hadoop.git", "60867de"), "hbase": ("https://github.com/apache/hbase.git", "89ca7f4"), "hive": ("https://github.com/apache/hive.git", "e08a600"), -# "cassandra": ("https://github.com/apache/cassandra.git", "f0ad7ea"), -# "elasticsearch": ("https://github.com/elastic/elasticsearch.git", "5ce03f2"), } ASPECTJ_MARKERS = [ @@ -33,130 +33,128 @@ "org.aspectj.lang.NoAspectBoundException", ] -MAX_CLASS_DIRS = 200 -MAX_CLASSES_PER_DIR = 2000 - -SUCCESS_CODE = 0 -FAIL_CODE = 255 - -def run(cmd): - """ - Run a bash command given as argument. - """ - try: - cp = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) - return cp.returncode, (cp.stdout or "").strip(), (cp.stderr or "").strip() - except FileNotFoundError as e: - return 127, "", str(e) - -def find_class_dirs(app_root: Path): - """ - Find directories that contain .class files. - """ - qroot = shlex.quote(str(app_root)) - cmd = [ - "bash", - "-lc", - ( - f"shopt -s nullglob; " - f"find {qroot} -type f -name '*.class' " - f"-not -path '*/.git/*' -not -path '*/.m2/*' -not -path '*/.gradle/*' " - f"-printf '%h\n' | sort -u" - ), - ] - rc, out, err = run(cmd) - if rc != 0: - return [], f"find failed: {err or out}" - dirs = [Path(p) for p in out.splitlines() if p] - return dirs, "" - -def iter_class_files(classes_dir: Path, limit: int): - """ - Iterate over .class files from a class directory, processing up to - a configurable number of files. - """ - q = shlex.quote(str(classes_dir)) - cmd = ["bash", "-lc", f"shopt -s nullglob; find {q} -type f -name '*.class' | sort"] - rc, out, err = run(cmd) - if rc != 0 or not out: - return [] - files = [Path(p) for p in out.splitlines() if p] - if limit and len(files) > limit: - step = max(len(files) // limit, 1) - files = files[::step][:limit] - return files - -def check_repo_commit(app: str, app_root: Path, expected_commit_prefix: str): - """ - Verify the repo at app_root is a git repo and HEAD matches an expected commit ID prefix. - """ - if not app_root.is_dir(): - return False, f"{app}: FAIL - directory not found: {app_root}" - - rc, out, err = run(["git", "-C", str(app_root), "rev-parse", "HEAD"]) - if rc != 0: - return False, f"{app}: FAIL - not a git repo or unreadable HEAD: {err or out}" - - head = (out or "").strip() - if head.startswith(expected_commit_prefix): - return True, f"{app}: PASS - commit {head[:12]} matches {expected_commit_prefix}" - else: - return False, f"{app}: FAIL - HEAD {head[:12]} != expected {expected_commit_prefix}*" - - -def classfile_has_aspect_markers(class_path: Path): - """ - Search through a decoded .class for AspectJ markers. - """ - pattern = "|".join(ASPECTJ_MARKERS) - cmd = ["bash", "-lc", f"strings {shlex.quote(str(class_path))} | grep -a -E '{pattern}' -m 1"] - rc, out, err = run(cmd) - if rc == 0 and out: - matched = next((m for m in ASPECTJ_MARKERS if m in out), out) - return True, matched - return False, "" - -def check_app_weaving(app: str, app_root: Path): - """ - Scan compiled .class files for AspectJ markers. - """ - if not app_root.is_dir(): - return False, f"{app}: FAIL - directory not found: {app_root}" - - class_dirs, err = find_class_dirs(app_root) - if err: - return False, f"{app}: FAIL - {err}" - if not class_dirs: - return False, f"{app}: FAIL - no compiled .class files found under {app_root}" - - dirs = class_dirs[:MAX_CLASS_DIRS] if (MAX_CLASS_DIRS and len(class_dirs) > MAX_CLASS_DIRS) else class_dirs - - for cdir in dirs: - for cf in iter_class_files(cdir, MAX_CLASSES_PER_DIR): - ok, marker = classfile_has_aspect_markers(cf) - if ok: - return True, f"{app}: PASS - marker '{marker}' in {cf}" - - return False, f"{app}: FAIL - scanned .class files but found no AspectJ markers" - - -def main(): - success = True - for app in REPOS: - app_root = BENCH_ROOT / app +class OracleBenchmarkPrep: + + def __init__(self): + self.max_class_dirs = 200 + self.max_classess_per_dir = 2000 + + def run_shell_command(self, cmd): + """ + Run a bash command given as argument. + """ + try: + cp = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + return cp.returncode, (cp.stdout or "").strip(), (cp.stderr or "").strip() + except FileNotFoundError as e: + return 127, "", str(e) + + def find_class_dirs(self, app_root: Path): + """ + Find directories that contain .class files. + """ + qroot = shlex.quote(str(app_root)) + cmd = [ + "bash", + "-lc", + ( + f"shopt -s nullglob; " + f"find {qroot} -type f -name '*.class' " + f"-not -path '*/.git/*' -not -path '*/.m2/*' -not -path '*/.gradle/*' " + f"-printf '%h\n' | sort -u" + ), + ] + rc, out, err = self.run_shell_command(cmd) + if rc != 0: + return [], f"find failed: {err or out}" + dirs = [Path(p) for p in out.splitlines() if p] + return dirs, "" + + def iter_class_files(self, classes_dir: Path, limit: int): + """ + Iterate over .class files from a class directory, processing up to + a configurable number of files. + """ + q = shlex.quote(str(classes_dir)) + cmd = ["bash", "-lc", f"shopt -s nullglob; find {q} -type f -name '*.class' | sort"] + rc, out, err = self.run_shell_command(cmd) + if rc != 0 or not out: + return [] + files = [Path(p) for p in out.splitlines() if p] + if limit and len(files) > limit: + step = max(len(files) // limit, 1) + files = files[::step][:limit] + return files + + def check_repo_commit(self, app: str, app_root: Path, expected_commit_prefix: str): + """ + Verify the repo at app_root is a git repo and HEAD matches an expected commit ID prefix. + """ + if not app_root.is_dir(): + return False, f"{app}: FAIL (clone) - directory not found: {app_root}" + + rc, out, err = self.run_shell_command(["git", "-C", str(app_root), "rev-parse", "HEAD"]) + if rc != 0: + return False, f"{app}: FAIL (clone) - not a git repo or unreadable HEAD: {err or out}" + + head = (out or "").strip() + if head.startswith(expected_commit_prefix): + return True, f"{app}: PASS (clone) - commit {head[:12]} matches {expected_commit_prefix}" + else: + return False, f"{app}: FAIL (clone) - HEAD {head[:12]} != expected {expected_commit_prefix}*" + + + def classfile_has_aspect_markers(self, class_path: Path): + """ + Search through a decoded .class for AspectJ markers. + """ + pattern = "|".join(ASPECTJ_MARKERS) + cmd = ["bash", "-lc", f"strings {shlex.quote(str(class_path))} | grep -a -E '{pattern}' -m 1"] + rc, out, err = self.run_shell_command(cmd) + if rc == 0 and out: + matched = next((m for m in ASPECTJ_MARKERS if m in out), out) + return True, matched + return False, "" + + def check_app_weaving(self, app: str, app_root: Path): + """ + Scan compiled .class files for AspectJ markers. + """ + if not app_root.is_dir(): + return False, f"{app}: FAIL (waving) - directory not found: {app_root}" + + class_dirs, err = self.find_class_dirs(app_root) + if err: + return False, f"{app}: FAIL (waving) - {err}" + if not class_dirs: + return False, f"{app}: FAIL (waving) - no compiled .class files found under {app_root}" + + dirs = class_dirs[:self.max_class_dirs] if (self.max_class_dirs and len(class_dirs) > self.max_class_dirs) else class_dirs + + for cdir in dirs: + for cf in self.iter_class_files(cdir, self.max_classess_per_dir): + ok, marker = self.classfile_has_aspect_markers(cf) + if ok: + return True, f"{app}: PASS (weaving) - marker '{marker}' in {cf}" + + return False, f"{app}: FAIL (weaving) - scanned .class files but found no AspectJ markers" + + + def run(self): + success = True + for app in REPOS: + app_root = BENCH_DIR / app + + expected_commit = REPOS[app][1] + ok, msg = self.check_repo_commit(app, app_root, expected_commit) + logger.info(msg) + success = success and ok + + ok, msg = self.check_app_weaving(app, app_root) + logger.info(msg) + success = success and ok + + if success: + return True - expected_commit = REPOS[app][1] - ok, msg = check_repo_commit(app, app_root, expected_commit) - print(msg) - success = success and ok - print(success) - - ok, msg = check_app_weaving(app, app_root) - print(msg) - success = success and ok - print(success) - - sys.exit(SUCCESS_CODE if success else FAIL_CODE) - -if __name__ == "__main__": - main() + return False diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_env_setup.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_env_setup.py index bf2da7e7..fab44948 100644 --- a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_env_setup.py +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_env_setup.py @@ -1,15 +1,5 @@ #!/usr/bin/env python3 -""" -Environment Setup Checker (configurable & pythonic) - -- Repository: branch/remote checks -- Prerequisites: driven by a declarative DEPENDENCIES table -- Paths: WASABI_ROOT_DIR and JAVA_HOME - -Change versions or add tools by editing DEPENDENCIES below. -""" import os -import sys import re import shutil import subprocess @@ -17,16 +7,8 @@ from typing import Iterable, Optional, Tuple from pathlib import Path -# ---------------------- Constants ---------------------- -HOME = Path.home() -REPO_DIR = HOME / "sosp24-ae" / "wasabi" -EXPECTED_REMOTE_SUBSTR = "github.com/bastoica/wasabi" -EXPECTED_BRANCH = "sosp24-ae" -EXPECTED_WASABI_ROOT = str(REPO_DIR) -EXPECTED_JAVA_HOME = "/usr/lib/jvm/java-8-openjdk-amd64/jre" - -SUCCESS_CODE = 0 -FAIL_CODE = 255 +from utils import REPO_DIR +from utils import logger VersionTuple = Tuple[int, ...] @dataclass(frozen=True) @@ -71,127 +53,109 @@ class Dependency: ), ] -def run(cmd: Iterable[str]) -> Tuple[int, str, str]: - """ - Run a command and return (rc, stdout, stderr) tuple. - """ - try: - cp = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) - return cp.returncode, cp.stdout or "", cp.stderr or "" - except FileNotFoundError: - return 127, "", "" - -def parse_version_tuple(text: str) -> VersionTuple: - """ - Extract the first version-like token from arbitrary text. - For example, for Java: '1.8.0_422' -> (1, 8, 0) - """ - m = re.search(r"(\d+(?:\.\d+){0,3})", text) - return tuple(int(x) for x in m.group(1).split(".")) if m else () - -def extract_version(text: str, pattern: str) -> Tuple[VersionTuple, str]: - """ - Apply regex pattern on a version string. - """ - m = re.search(pattern, text, re.I) - if not m: - return (), "unknown" - ver_str = m.group(1) - return parse_version_tuple(ver_str), ver_str - -def cmp_versions(found: VersionTuple, required: VersionTuple, mode: str) -> bool: - """ - Compare versions either to match exactly ('eq') - or the installed version is greather than the reference one ('gte'). - """ - if not found: +class OracleEnvSetup: + + def __init__(self) -> None: + self.expected_root_dir = REPO_DIR + self.expected_java_hone = "/usr/lib/jvm/java-8-openjdk-amd64/jre" + + def run_shell_command(self, cmd: Iterable[str]) -> Tuple[int, str, str]: + """ + Run a command and return (rc, stdout, stderr) tuple. + """ + try: + cp = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) + return cp.returncode, cp.stdout or "", cp.stderr or "" + except FileNotFoundError: + return 127, "", "" + + def parse_version_tuple(self, text: str) -> VersionTuple: + """ + Extract the first version-like token from arbitrary text. + For example, for Java: '1.8.0_422' -> (1, 8, 0) + """ + m = re.search(r"(\d+(?:\.\d+){0,3})", text) + return tuple(int(x) for x in m.group(1).split(".")) if m else () + + def extract_version(self, text: str, pattern: str) -> Tuple[VersionTuple, str]: + """ + Apply regex pattern on a version string. + """ + m = re.search(pattern, text, re.I) + if not m: + return (), "unknown" + ver_str = m.group(1) + return self.parse_version_tuple(ver_str), ver_str + + def cmp_versions(self, found: VersionTuple, required: VersionTuple, mode: str) -> bool: + """ + Compare versions either to match exactly ('eq') + or the installed version is greather than the reference one ('gte'). + """ + if not found: + return False + f, r = list(found), list(required) + while len(f) < len(r): f.append(0) + while len(r) < len(f): r.append(0) + return (f == r) if mode == "eq" else (f >= r) + + def paths_check(self): + wasabi_root = os.environ.get("WASABI_ROOT_DIR", "") + if not (wasabi_root == self.expected_root_dir and Path(wasabi_root).exists()): + return False, "WASABI_ROOT_DIR incorrect" + java_home = os.environ.get("JAVA_HOME", "") + if not (java_home == self.expected_java_home and Path(java_home).exists()): + return False, "JAVA_HOME incorrect" + return True, "" + + def check_dependency(self, dep: Dependency) -> Optional[str]: + """ + Core method that checks whether a certain dependency of a version + equal or greather than that specified in the README is installed. + """ + if shutil.which(dep.binary) is None: + return f"{dep.name} missing" + + + if dep.cmd is None and dep.parse_regex is None and dep.require is None: + return None + + rc, out, err = self.run_shell_command(dep.cmd or []) + text = (out + "\n" + err).strip() + + if dep.parse_regex and dep.require and dep.compare: + ver_tuple, ver_str = self.extract_version(text, dep.parse_regex) + if not ver_tuple: + return f"{dep.name} version unreadable" + ok = self.cmp_versions(ver_tuple, dep.require, dep.compare) + cmp_word = "==" if dep.compare == "eq" else ">=" + want = ".".join(map(str, dep.require)) + return None if ok else f"{dep.name} {cmp_word} {want} not met (got {ver_str})" + + return f"{dep.name} check misconfigured" + + def prereqs_check(self): + problems: list[str] = [] + for dep in DEPENDENCIES: + msg = self.check_dependency(dep) + if msg: + problems.append(msg) + if problems: + return False, "; ".join(problems) + return True, "" + + def run(self): + results = [] + + ok, why = self.prereqs_check() + logger.info(f"Prerequisites: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") + results.append(ok) + + ok, why = self.paths_check() + logger.info(f"Paths: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") + results.append(ok) + + if all(results): + return True + return False - f, r = list(found), list(required) - while len(f) < len(r): f.append(0) - while len(r) < len(f): r.append(0) - return (f == r) if mode == "eq" else (f >= r) - -def repo_check(): - if not REPO_DIR.exists(): - return False, "repo path missing" - - r = subprocess.run(["git", "-C", str(REPO_DIR), "rev-parse", "--is-inside-work-tree"], - stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) - if r.returncode != 0 or r.stdout.strip() != "true": - return False, "not a git repo" - - r = subprocess.run(["git", "-C", str(REPO_DIR), "rev-parse", "--abbrev-ref", "HEAD"], - stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) - if r.returncode != 0 or r.stdout.strip() != EXPECTED_BRANCH: - return False, f"wrong branch (got '{(r.stdout or '').strip()}')" - - r = subprocess.run(["git", "-C", str(REPO_DIR), "remote", "-v"], - stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) - if r.returncode != 0 or EXPECTED_REMOTE_SUBSTR not in r.stdout: - return False, "remote not pointing to bastoica/wasabi" - return True, "" - -def paths_check(): - wasabi_root = os.environ.get("WASABI_ROOT_DIR", "") - if not (wasabi_root == EXPECTED_WASABI_ROOT and Path(wasabi_root).exists()): - return False, "WASABI_ROOT_DIR incorrect" - java_home = os.environ.get("JAVA_HOME", "") - if not (java_home == EXPECTED_JAVA_HOME and Path(java_home).exists()): - return False, "JAVA_HOME incorrect" - return True, "" - -def check_dependency(dep: Dependency) -> Optional[str]: - """ - Core method that checks whether a certain dependency of a version - equal or greather than that specified in the README is installed. - """ - if shutil.which(dep.binary) is None: - return f"{dep.name} missing" - - - if dep.cmd is None and dep.parse_regex is None and dep.require is None: - return None - - rc, out, err = run(dep.cmd or []) - text = (out + "\n" + err).strip() - - if dep.parse_regex and dep.require and dep.compare: - ver_tuple, ver_str = extract_version(text, dep.parse_regex) - if not ver_tuple: - return f"{dep.name} version unreadable" - ok = cmp_versions(ver_tuple, dep.require, dep.compare) - cmp_word = "==" if dep.compare == "eq" else ">=" - want = ".".join(map(str, dep.require)) - return None if ok else f"{dep.name} {cmp_word} {want} not met (got {ver_str})" - - return f"{dep.name} check misconfigured" - -def prereqs_check(): - problems: list[str] = [] - for dep in DEPENDENCIES: - msg = check_dependency(dep) - if msg: - problems.append(msg) - if problems: - return False, "; ".join(problems) - return True, "" - -def main(): - results = [] - - ok, why = repo_check() - print(f"Repository: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") - results.append(ok) - - ok, why = prereqs_check() - print(f"Prerequisites: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") - results.append(ok) - - ok, why = paths_check() - print(f"Paths: {'PASS' if ok else 'FAIL' + (' - ' + why if why else '')}") - results.append(ok) - - sys.exit(SUCCESS_CODE if all(results) else FAIL_CODE) - -if __name__ == "__main__": - main() diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_experiment_runs.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_experiment_runs.py new file mode 100644 index 00000000..e37e0d42 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/oracle_experiment_runs.py @@ -0,0 +1,121 @@ +from collections import defaultdict +import os + +from utils import RESULTS_ROOT_DIR +from utils import GROUND_TRUTH_FILE +from utils import SIMILARITY_RATIO + +from utils import logger + +class OracleExperimentRuns: + def __init__(self): + pass + + def get_benchmark_name(self, loc): + """ + Classifies the location based on its prefix. + """ + if loc.startswith("org.apache.hadoop.hdfs") and "SecondaryNameNode.doWork" not in loc: + return "hdfs" + elif loc.startswith("org.apache.hadoop.yarn"): + return "yarn" + elif loc.startswith("org.apache.hadoop.mapreduce") or loc.startswith("org.apache.hadoop.mapred"): + return "mapreduce" + elif loc.startswith("org.apache.hadoop.hbase"): + return "hbase" + elif loc.startswith("org.apache.hadoop.hive"): + return "hive" + elif loc.startswith("org.apache.cassandra"): + return "cassandra" + elif loc.startswith("org.apache.hadoop") or "SecondaryNameNode.doWork" in loc: # initialy found in hadoop-common, added here to match Table 3 + return "hadoop" + elif loc.startswith("org.elasticsearch"): + return "elasticsearch" + else: + return "unknown" + + def aggregate_bugs(self, root_dir): + """ + Searches for bug report files and aggregates bugs based on their type and + which application have been found in. + """ + bugs = defaultdict(lambda: defaultdict(set)) + unique = dict() + + for dirpath, _, files in os.walk(root_dir): + for file in files: + if file.endswith(".csv"): + file_path = os.path.join(dirpath, file) + + with open(file_path, 'r') as f: + for line in f: + if "how-bug" in line or "when-missing-" in line: + tokens = line.strip().split(",") + + bug_type = tokens[1] + bug_loc = tokens[2] + + key = bug_type + bug_loc + if key in unique: + continue + unique[key] = "x" + + benchmark = self.get_benchmark_name(bug_loc) + bugs[bug_type][benchmark].add(bug_loc) + + return bugs + + def get_ground_truth_bugs(self, file_path: str): + """ + Reads the ground truth values from a file into a dictionary. + """ + ground_truth = defaultdict(lambda: defaultdict(set)) + + try: + with open(file_path, 'r') as f: + for line in f: + tokens = line.strip().split(",") + benchmark = tokens[0] + bug_type = tokens[1] + retry_location = tokens[2] + ground_truth[bug_type][benchmark].add(retry_location) + except Exception: + logger.info(f"Cannot open {file_path} or file not present.") + + return ground_truth + + def count_bugs(self, bugs, ground_truth): + """ + Compares the total number of bugs found against the ground truth. + """ + total_ground_truth = 0 + total_found = 0 + + for bug_type, benchmarks in ground_truth.items(): + for benchmark, ground_truth_locations in benchmarks.items(): + total_ground_truth += len(ground_truth_locations) + bug_locations = bugs.get(bug_type, {}).get(benchmark, set()) + matching_locations = ground_truth_locations & bug_locations + total_found += len(matching_locations) + + if total_ground_truth == 0: + logger.info("No ground truth bugs available.") + return False + + coverage = total_found / total_ground_truth + logger.info(f"Found {total_found} out of {total_ground_truth} ground truth bugs ({coverage:.2%}).") + + passed = coverage >= SIMILARITY_RATIO + logger.info("Results reproduced: PASS" if passed else "Results reproduced: FAIL") + return passed + + + def run(self): + bugs = self.aggregate_bugs(str(RESULTS_ROOT_DIR)) + ground_truth = self.get_ground_truth_bugs(str(GROUND_TRUTH_FILE)) + passed = self.count_bugs(bugs, ground_truth) + + if passed: + return True + + return False \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/utils.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/utils.py new file mode 100644 index 00000000..12194a79 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/utils.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python3 + +# --- CONSTANTS --- # +from pathlib import Path + +HOME = Path.home() +REPO_DIR = HOME / "sosp24_wasabi"/ "wasabi" +BENCH_DIR = HOME / "sosp24_wasabi" / "benchmarks" +RESULTS_ROOT_DIR = REPO_DIR / "results" +GROUND_TRUTH_FILE = REPO_DIR / "bugs_ground_truth.txt" +SIMILARITY_RATIO = 0.75 + + +# --- CUSTOM LOGGER --- # +import logging +import os +from datetime import datetime + +os.makedirs('logs', exist_ok=True) + +LOG_FORMAT = '%(asctime)s | %(levelname)s | %(name)s | %(message)s' +DATE_FORMAT = '%Y-%m-%d %H:%M:%S' + +logger = logging.getLogger("WASABI-AGENT-EVALUATOR") +logger.setLevel(logging.DEBUG) + +console_handler = logging.StreamHandler() +console_handler.setLevel(logging.INFO) +console_handler.setFormatter(logging.Formatter(LOG_FORMAT, datefmt=DATE_FORMAT)) + +logger.addHandler(console_handler) \ No newline at end of file From 949a3daa5985bb937252ebe27b93fe79331a461d Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 19 Nov 2025 01:50:07 -0600 Subject: [PATCH 06/15] feature: add .gitignore --- benchmarks/arteval_bench/.gitignore | 119 ++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 benchmarks/arteval_bench/.gitignore diff --git a/benchmarks/arteval_bench/.gitignore b/benchmarks/arteval_bench/.gitignore new file mode 100644 index 00000000..64b18d31 --- /dev/null +++ b/benchmarks/arteval_bench/.gitignore @@ -0,0 +1,119 @@ +# ---------------------- +# General +# ---------------------- +*.lock +*.log +*.bak +*.pkl +*.png +*.jpg +*.jpeg +*.pdf +*.xls +*.csv +*.doc + +# Logs / temp +logs/ +log/ +*.tmp +*.temp +*.swp +*.swo +*.orig + +# Trash / scratch areas +__pycache__/ +trash/ + +# OS files +.DS_Store +Thumbs.db + +# ---------------------- +# Python +# ---------------------- + +# Byte-compiled / optimized / DLL files +*.py[cod] +*$py.class + +# Virtual environments +.venv/ +venv/ +env/ +ENV/ + +# Distribution / packaging +build/ +dist/ +eggs/ +*.egg-info/ +.eggs/ +pip-wheel-metadata/ +*.whl + +# Test / coverage +.pytest_cache/ +.coverage +.coverage.* +htmlcov/ +.tox/ +.nox/ + +# Type checking / tooling +.mypy_cache/ +.pyre/ +.pytype/ + +# ---------------------- +# Java +# ---------------------- + +# Compiled files +*.class + +# Build outputs +target/ +bin/ +out/ + +# Maven / Gradle +.mvn/ +.settings/ +.gradle/ +build/ + +# IDE project files +*.iml +.idea/ +.project +.classpath + +# Archives +*.jar +*.war +*.ear + +# ---------------------- +# C / C++ +# ---------------------- + +# Object / compiled files +*.o +*.obj +*.so +*.dll +*.dylib +*.a +*.lib +*.lo + +# Executables +a.out +*.exe +*.out + +# Build directories +build/ +cmake-build-*/ From dd49df28ee627e9652590f7baf01b7a329f48714 Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 19 Nov 2025 01:53:54 -0600 Subject: [PATCH 07/15] fix: cleaning up _agent_eval directory --- .../oracle_artifact_build.cpython-312.pyc | Bin 8434 -> 0 bytes .../oracle_benchmark_prep.cpython-312.pyc | Bin 8060 -> 0 bytes .../__pycache__/oracle_env_setup.cpython-312.pyc | Bin 8570 -> 0 bytes .../oracle_experiment_runs.cpython-312.pyc | Bin 6180 -> 0 bytes .../__pycache__/utils.cpython-312.pyc | Bin 1408 -> 0 bytes 5 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_artifact_build.cpython-312.pyc delete mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_benchmark_prep.cpython-312.pyc delete mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_env_setup.cpython-312.pyc delete mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_experiment_runs.cpython-312.pyc delete mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/utils.cpython-312.pyc diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_artifact_build.cpython-312.pyc b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_artifact_build.cpython-312.pyc deleted file mode 100644 index 751a111496b048f0f8fa91295d482b0bb3c059a8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8434 zcmbU`TW}LucDL0}y(Pae80^Lmu&|Nm!DFC|8Dqm>z-AUR3^>dxLfy7yWXW{5!B({w zu}c-!4vFlKjWwB}#*<3bdUvu_&L8`=q;@}2m7f+eg{H$+kz`WI{G=Frt1?SIl5<;9 z%l62ym0P8w+xKzqx#ym9?m6fFlhbKKQ2tfg6|Sm6=-=>1u~3D|+9jwgAOQ(P1dS6R z3xUQhLnM)Jp@t~vu|()`W{5G`NT{XxuL_>sthAaYc7Y&hu z1t2BZ1nMp^MC0{_7=Z!E3M@cQ-~d_$D?r;c>9gyV=cQmMB6dqkcsLkRPE3X)LWo$m z9$t=w-`XByImPS}h`1fW#xYb;z??IUeB?l!^pC%#+az%!CWn=nH0`rU7>iyp9=s_= z0~5i}_27so2ZXSM_b!W(VHu;~U;eCPG&U}FTnoxdEF21UOh~aYF{H>Hp-D*+qe{oP zEbW)4<#1FHBa!fk7!AQ_fTQC<>AKtzloau1FcL7DI)tDSEcJHCF?r&x1A$vXIe0DH zQTPi0B~c}SXLZC3b_4*4!H>W-%n<*?w9W+r;b>S11mZi(u*_fV#nL2K0!W}|^^J=k zd=go@nyEjM=zT)ftwA#iVKx*C4HbjA6|naOq!I~Ynox-`lbOYVz+%gnh1MBTCGYG} z$+4m&lm;PbNBQe@RFGM2J`Wo|AnF> zAFWfv;i#Zfia4d{w5&+s37rItP@jl|6(1vkd?TF_BjUKU4OfYqIvpAXvCs)c#@xab z^1S3Q#!ZcgO1!q5h~OS4jFA%n66ghoI7dRwIla$0N6MPC&NY4PN_6K~E-{n#eqQs} zH94m%bt!o%bv1eQ;~#2F-E(jCDkAB9vvkhpPWh6)R7bKS-ITtOwe4PP%-C8I!JO4L z8~V65=c!(>&D$P(`1G}>?!6iJ-mKgAnDf10VLB}A@JKEoVqk+Xve04(V<#Nk0K^4Vui*q7dI7^5~!jG%`jVzq0KSumSaq#I>T)_hArYL2q8CP1tG;J zvZ)AGb7wZycIS;PFxrF?W%ez{lqhqktW2qP$)eh4Se1ji1L_W-*dpyyS)j^GfSQlF zH<1IMuu@U^Vdg7GGUiAQ3<>vrTq>cmDx-3$Rj_@=45B8am@40lq+OuKTg(#(mHrex zun3mV$dKg<637|)NAzIf{}yozO_5j7Ey8Dye`Lcd(G!bAu<16mbT}LlWge_{j2FU& z8V99mz7sBhc77r@-p-FmvB`-(p`9-pUtGT_N;32t*F`uw(q-U{doTB&gGNafc~O#L z(ox<=>Lj4jNkFC3M&p2PD`C>v0(zarD8Y#6RuijEjs+#10fcZ5fW|if*CZZ;CJY)e zXvUxgfREEHCok%>u{@v^6)6@|bnD5fkT`*@le8BP-Gu>o6i6pwh|iffBOH(im!C4K zJCxW&pkSnAFh7zg>Xd_o;gjQMSrye)za0*3;yWPDdS zgJgEs!+hBf5{9i3MPDJFIo+wt$;)%2S!Y8+027tBK?wnDM@7xT_WAAU1B*MeUVq|D z&Q*~LC&Otf9nQL16YqWR+f%h*owuf&7wuV3`(w|+WjfLK957xv>^xBSOQp(tKPK`m=7#n)=ms+ z7eCMjFKO?7m~mcy!d(8J7bG6>QpRWe;YoyDEBX$lrMgsQ<2p1{hj@ z1)7)rA(*zX&borWVY|Dj2&R24YV;uTSq5IRaGw6D@rci&Gja@^9YLq1kx1+sxLEnC z3S1{q#w!;uB`dz-upG$c1;Om@fk|==0PtSy-nr(5ee?U$SF#m*v-VbvYBes65Vej_ zT*tJp2>`GIQ_giM?PP|sfUj8YHW^!wwXnblQmMZoRLeY}lJmr`n7;(K0CRxw`$(x4 z21(f4(z&r%IEr=3M;i>-q_l>nDzc2(ZzxDXIk0bPsA74ZnBCwPAsHW80_7Z)ss3bt zx+&|ZPn^uz+hz|uwKrz$jZf`u8GD;%KfUw;faNm)9D2D)~N)X`3#N$HxYn81%$UeMM&)gDk*h2^?>xjfx5w1 zU=;Phbi)hE)C0;yV`YK}jKa#C_ek(g@{Ujs)CRB!%ag;y;VB6lN$EWRV3|+jdLIVo z0c=n-=`6Iwk8LHb;i#+x!DST8_`8g%eTb1>1&~*@Rb+9uJa@TY(8%LWO(mz&hcfQn zaEE(N5q~@K^Vk=$oXwuvliV|RDSa+e?bE9EE$v=9wR|MgeoSlYdMIiYy=x?~_Y|>a z%=s4M`=b%p{iK`iwhW43B0QZpjO9$^&w@4HD{r-6&9IU~L z`u%Oi_xAsM)4kk`))NGe$ zZa954Q?pO2Zd-bD>C$pvW`CE~e*B@LRrY3Fy-%I}8E1did0u1AgD$TbtgNhFI6Qwi zeK=d$^amPv0j-Xf7sx`lm!_Od7L`t}DJfmKY(vRiAkef0 z%tV>&Ln#eayr8hoycRQA9E~xTa0rH>n6ZQr15nxQg~4|eQ8z;_;@tKhuMurt=z%y+6RSYnrI zg#eo>;kw^QA*HgwK%k@8BRH=2f&prI4OVygxpAA}D0&{49K-qm(qe<3U8R9?0jS2Q zl4!uI8p9o%N(r|_-0xBC<*)-zLpOk5 z6;Lm_y0~6&fghN<2In^n=Vy~4=_38tYq(Xpjyjt(_L|XE>qoGnW$%>jrCm+$@YM~({l-(rQT|kS-#LCik7H)O@YDeLDGAb6@M^(FV+ubU zn~Vyl;zu@4h{kZ%3J2nRKC@*E<6$Tys`C#E`xQ}EAZaDx=uz5@K@$ee0DOex$Mr@4 z@dM*w8QwESiYYMshG9HE^a&k>91kBHhOhl@6PI0?IqTaNN^n)mzt_-{NWiAEgvk~kXo^uz>_H=aB4Oo=z}{ROgctHPh@ zzJT+0kZ#8@U&qmJz>0ul%VWF@pGUgioKxI_F~x|N_#bt^qYz(u6WX-s``v?s7a>uG z9ao(Zr^2!#OPF+>3P*<_$p=;G00!;Gh~UJ82$_2lJVu?2h*9Z%+)P3WU%CV}pR14# z!Fdmz!>Ki#0x{TL_=G4+XY-+!3@hSHqAc+k3o)*f@U6QGCsT<2WZhG2C^&VpP5=ob z!J9Hps6&LduH<7iQksm$x0UnvpySVAlDr*UD4cMqOdU@iU$O6e#yIX>zjIxyII+U? zKoIua?oM?jyFP2p+M5!+U)kN}fc_O`00w;R-j?=d+)atoxytIqxg6`hcl*xm6}C3# ztzM{~uV3V{USDDq@?JQPm)^VLY|O!GoypF$b;aJ8Yi?hB^>>*|No*&}_L_soj( ztcgL}c|ofge8OFP&bd>rq-*ZR6K?wpFVOI972;ebPdZnaW4W50=?m%L+!(|GY-_T0 zwrN&=2Bg@N_PG$em{g~)EmkhlTGgH>++N7$v8`WQ9kZ7{uA95@(}v|)pKXnDx&FG_R&8JR28Mt9bwfl}(F1ix;%YR=h~_Y)=sZl^#r=oQpiM zHQ_~?VG+&UkhSxRZ#}lR6bHd7TGQLvh6BqNG7X2d`gb1ET20rA?f7$$Wy*H%?47fk zr*Va9%GupU&>@`!J%QJ1c!b62oIpUg1p;}+g}NgUxG@=w0s&nm*uK=Oajvq852 diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_benchmark_prep.cpython-312.pyc b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_benchmark_prep.cpython-312.pyc deleted file mode 100644 index df6924e3bc4710e3f09b653513a33279af53e866..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8060 zcmb_hYiu0Xb-wf1HrrFKs?-Q4hE%PDVn5Xix#yR&dffj-JR8) zSxKA@<5l9qWFSLySuH|;CNIvzmI|v$D7=eABvNTK zYUk7_Wxdm*G~{%e$*`j=McSCOE8`w@TV)o?o>32!U7}m`h~5vFQEvi?zF$zIJ{lcH zqW=vf20o$fnMVDSRJ7tN@-h&mOm>i0laTuk^$qkKiS-^Gf){sMP9!88rL{;>RddSz zj*di1P3Fhj1v%5f=XfD0btHLFmUHdUV0!j+?%T6hl%PZNLpqG}ie$_0dsg80#=Ag% z`$ObY7fRw%=RSTPe@vDOC%TS5oTdQ|UZZ z^La(mJfv2g$Y}vm7?5NPO6NolAEl`Bq4YEp)p zW*H~ic_k+a>O?!vXVp|jYR6JM4HfPEyr9Z>Qfu8zD3yhAvwXU}+nTK>Ei152tzo@v zn$ITMkIAX*ApEP^jt93zhE-lo34=UVwa5msK`aZBB&M>7wZS${G@MFgd6g`pWy1&q za<{d~L*!)oE(uajP03loRwz4lmtIyUpztn|5Yb)GTj~uo%7`?itjI{NI4!bou%m9# zC4sg|o;WLd;N2^FB_C-QeUdNk290G${bIn9uYhvEX$ScryjO^oFk*1BDjG6tPhnn2 zONXSakj(J-+#r^60<~^!MDZE;U*#YHh*3I3QQEA` z@Rwpjnpc#Vn8Jz~F274qm6I^3COA^0bX*|=ad&^(k(4u12WY4&rv$zuhvf;-2&F^F zV=QIWj*Noalu3msK{}mEz{)||S-;W&pHaHNr(;%Chsdk^T5E?QE4gR7Vi$RZA5V3Z zvKSA8s4>#3L$;2??o7@j2Dr$z=O#^WEJiR9i)oFU99g^5x)b)G)Id@|#fGLr?@e}V zk&6_1|G+k_LM;+XhJ=(6`Rvx&_QKZRMLwjK&vIhDoF$BqPN}65LKBYZE7u_O@K%xf zTl$kyuPIumCmf|)Hv-gp*S(gCmnek>1IbJTHnx3Is)C*s8(aS;J>$$UYDQ|M(>sE2 z{S+gD!mHIzoz8qxI+-{l(5JyzPcc7$es+G5x`-|@r_n_!>ef2^96Uq$EXQ-8LrD&d zZidf_Tmp<8R4N>g6Zs5$@ODdbgxEzz73I8YakGSD1lG0_f_ z5i+7l3ptaL6!KBXqA|EP=m-^6Tg&yF8^lYxAL!LW8~GFfzyTYVzBD!*v#16&_}1=JN>iR_3g`zyA~UFEj8|5 zpnvQ8weKIQZVWB&9a!8uu(Ws32o4(V!EbH_8t)*=)l>|IX1Bj1%su{-_;laS(D4(2K5m1Udl-9}B^V9^Io*SKMkDGrGrF<=ga? z8Wv4?LB=b3$jAcVOQ5Gb7g5x!?Y8u?KLt7q))7pfj8l@rsYzZ1WzMR6D$BK7MwN?$ zjw!Ytn=H}xyG&bJxLdCz<($g3DO@(6PAAgx_;Vl%<7rT-PUa*o&b4LvjKsCH+9S2V zy9|vv;4@I!L5N02>xSCQGn-TKl!VPXAjjr=Vg>W+| z(^xPW0$zq7m&%ze@iYqgPy|!fV*{&-EMT2C(waAe)qO%;FplywNDAoRy(n07_4v&3 z516?l?+2GEb{6_>yDN(BzzRzRLd8(s^u-lKZ*5*-7+++?=L@(CJu6`pu3xT=F4jh` zH!sz;Up`SdG|fy87d^h|mwtE=U^si=TJ0|yt~1vvjOsQc*k-uficQ={XWu)!)YSIJ zz^*y!)9Nd|v(;}MHUhf}y^s_GRkJnI`wFMNy~Ci2E`=E0&$fBG_p_h11R*s8mUc*% z(=}b`R3@bgw?01GNzw>af^H97oCA=|Zys;0!8|!Glg*QMOXur$Gn?mbu1&{*> zbAJcIyz3C=)xGy2%_;#kgbJZGcWLHXoU zT*=D-+vM^&PL(-p91xVV@l+y@`SG*_pw5iLfO332{&5u6gNYBoPeP(?dmz$nTw0*~ zig?w5s24v)`n8dy3_;vZUWwY6Oj^pC3~;w-z((O7(gctVK4%e<~!W7qsk^F7Ai?->oR82(oaJ;mCs4@TnK0${O_Dn9o3N7?tXOOLhx zv7&3P`qRg+jLbg%)+#o7Lu%v}H6%SL5$K`I79g%jW2@uA>u8?E)8LlO2fE(oc~fKN2HNSDY(NCE=| zd0LdM9r1*fUQvge#df>nq%YmVZ^=6>d zO$4&F4&<~05pp9=xSY3p+@!~Hlflvq-g{i7J(H_M{d}7_UuTWPNp1%CHRp`0M8CC* zfbJ11#9#x09aZXJZa#$D5D-9nk5%hhL!?!#{?JX@qcz&N1)=XrI2E4+Cn|A3=w%Lk zsY6A$6mUYIhia(>{N$0o?p`j#t8i0?wk+p-9E(hX;L%<{D)~OP@9o!i?&tcukDlP3 z5Ylp1igImb*FDJ*#~LRra6e}x*3$u*qJX8Xvl4a1Pm>lPobUzmB}W}vYcteI72CF9ZV8&BM5Fv2H{;0eQh;&vJP zyXPanVHS@3WAMgb7$c)b>uXE3XEu1{(io?V!Qn3kM~zoTKi7@$86$YcaG$wdQT5}a zv(GFC8W#hNOM%A1i(pt7nDTmyL#J=DQY{g_`+i=bv0SZ5$pm z`p+7*F(Vi=+_BrvDxaQ@%qt7@e02WNg_Fjy?;A&XgC94-f)Nx9w}9(lgQnlULKAX! z4{s)?X&Hn&P)k6^AME)!-EfMJ)1d2 zODBlaj3s#`X2;QD&hDO1%L1QP4z`yEQDAI^+)}^!H}p*beNlH{u6w?Fq4v`w@9>Lt z2fnqS`6FMLddm~0Mxu1T&Coq2I{^VSv#NV|u&-z2SnOo?(DA;Z;msI>$-;V7#~d7o zxl9k}EQ!^vBMF2bm>%1>iuS(OS%nvEtI+tc-D#cw+w(X_Ha|r+ZyAfKnybl~XI9J}uO3}5`|vXW{V8UO)miND z0Y+!be1Ivl1oj@5u%30msgVb_sO4+)8mxirZz5|^>nfcA6R~M~1Iki51E#>$i^hP= z!POgW$^%Hf75%r@;G~W*fZkw8fJLB*GR1dfAY4|ya9gL~1)5GS3=MF#C%nj``yln| z9-B+pS8xh0AuPIboOPIm&%XLc{o1p(sS$t#WAyGX1DkM?=eMG@=Y~;pn-y6tv z+hhf(fZ$l%q~&v_yJXXd9yrv&xj$6ftbj1N(&`^Z9@dGGFqzT>pnCv$ICNv*jaDOk z(g>b3+$V2uX;|LUy11qF`o5(tU6)T4j?FS(di-Uo(RN+9{<0C?WdwH_?pdGxc z#_(&#&>15zRDOqyF8j%9L;=jBs0C=*wQ+yE^lpJ zgulR(hWdj-@9j|d4q{y=sA;ws3NMFtEQWSm6R-C!Kh?MRRNqpl{|;h2(7L@?_sDYH zp2fO7^LVLl|BQc{p6)jT!D4mYT=QI=@z}EqI~VG2)ZM^0L}Tl5qx$$w|M9Oqr0)tt z#$TyG71guDvwg-RV@AzcBXHJW&)NoS{UxIuIS5$>OQfdO#iRj_mjI6Rng`cujW|MP zEi$ds*1g$E!7QPPax@RVNa@jO9gNf`#2dn6ffwQhYvyOO7`5(pxD5qy@=Fwkh??#K z7mPNGT9X+ZBl3S6|BA-Ke3+V~CYdNZFoK_jCHIrS)==NzsbNg4BR)nFvQd*wWx-64 zA5Z`>gf*KUB`=V`@)~_MtDNgbi4fy4BFJQvghEVk2?Um-#7$74ZQaZtLVWltG%6&4 zA0sMj3Wsl1fj0SF+oqXY)eUpQZ*MCk|E0cZPI%9M?dkV|1=&)uor|HJ*Oco==4DW? z%ZbAHbn`8D#hd3YpPOyI>E2QdZT+jtxkH5nsOECW5nc-IexT^(#7Z4Z`gJ|>R)Igf z9SB)^H4v>NKdO*0WGrU-W3h}Z=7G(`%!*j-e4bC+EjSG8w{IUrAuJ1HG7x68jf)ko zu+EoQ80%!MGr_0GD`C&}IT8PWNfLp7aa?rRV0qYJJ(6`@+X SQ1u@XouaDmfId_9V*eXD<^8_^ diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_env_setup.cpython-312.pyc b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/__pycache__/oracle_env_setup.cpython-312.pyc deleted file mode 100644 index 0f6816ec7bfd6826037c956bda4e780c44510355..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8570 zcmb_BTToj^miHy;>IDd}0fXZUI0nUl{I=r<2{zzhC)hD0V`FDjvhD>0db#h#7+GxO z#8ZJywk&5-gPcdju1!^NoUM@EsS5k3+T?4qwLcK2;MrLF-$P5@Y zJHXODH^9-FAK;9H~|)pIm*bktBh>F!x@-6M#T)cV6IDc$c~Sl zxiN|1Oxa=BdbapfJev4oDUlkpEn*UMFpj8@C|R|BIPty`f2&0e5 zn;sdJWcTyUxU%n%d7xaWP+a(hN~OH{Ak_4`9*6JRk~{mrx(U|Z^bH=h*Ujoy z*{AvZL7%F+d0p($6yiG{RCMt~R0~AHzMyXEABzSRm?@m}X~R&9r@Bs_@OJi`g0?vr z85&YZTR*l3NhGF({YW`i_-tdDKx2kc7<}6S?gd8S6+ve4gtWzBOXdemidnJH^9!<& z#fgC9vp7>0X9b)si!*0&_EqyNh@0TuqHgO{qDokXb4}<%*cVcC^Z7v7M<#l8-XD^6 zd(=l%#Y>bS<&th8%7w82QFMzx5`qE6?a)Q97ngaxy3OkiMdYy{wjEyYg)v_+JHo3P z(M!EvUpO4me0XuH*Go#_48#OL7lHwpQHFgN_8l)OM1@)OYDqbuZZpdOnTJWwa3rL7 z&ihm?67c&xQ4$$Z{F>_Vj}fATHBU$-t?Gmt2y03(7#M=@g4qCvLq0O9dVEAvF8YFA zit^ywu8exrh#K9o%RBB$=MX#!8W6`$g1aZKzC@6u3 z+6CYj%mdN>sykzIzPdG2U6*J~TuKU8{%nz}%WP^)Y@NE4;-@DUxyH=q=0wxfzT~qD z_WDJxIa9ldc8^RSy31`MwK=*vKNQg196_x>a1-4W@?BKIIv=_ij&ZFQW7Qo|pMO}9 zo`vwJ%NVt?A(iFFOg_iLM`J1PAt(%94PYx=v@}sma zpeP`*%>ceZ-JtWnuoe?rFB&fvtH?IiEaJ%HI3G2hZi!B4!;$dLn6)*(sQe_w6|9k9 zI%&c+!ievpZ#C(L=CeO~^bVp~`$*$hcuHGX(U43h04X0pP{s6#= ztjQHJe^me-Dky?tLYa|SlrqJnmKh{jrK)~GlTXt8M<@O zEL&mJF548VY={32I>Rw2%1*#L<&vw+0O&^0wyaWS>MNZ+@Q4LNBYjLG&3n*Bg7> zGo}(xFmT>8axvt=J8s?A8Ub}MB9FHELh_zno)M67p3vKMDVL%kYKrV7k%;D%14J*+ zqj0eoo|P&>RS6ENxU)p+0HTTrgaew_8>?FTJ#D#x{V+{MIZrV6H$I-|yen+TJl2)y z{Ebj+2m3`msphpJIli;wfC!rpqU#T=CHVMk9v9RQmK>db%VOhfe21`iI#NQ&Rnj9I^Xsr<9mVjr1N*i6+5BAG!jMEy% zbwN`uX*vUH;$_&EJedP-i*8fL&VzFGE2^sVWGoEkt>%Nv5H29-Rfj=Cd$V5>lL|QFks0kkK>Znj z1hXUxrkeZqb=TUb+f$7njC>fm75Rsee~kQXB;9}duKi5ne8yRN?WO6LQitE~xzY3X ziP`emQ=goO*Aa-odvp~)v+cdOzw8-352Kd5~>#x)@pYyv$tSi`DOBQmY zolMRP%VGK$+0@6l&9QO%=v|jIP#~J5fpr)R5LJ`1>bW%-7*!-KGOC0n@Jm9HkDL#{ zTrwdcPZ%uI9U+o($rl11YLNz^a}1<>ztpt7ZC~3q@2(v?nxxitsd;;gw68_l=B7Kw zDw@y9TbrNSf36K`_vLLZJ15<1)D_AR^2YKG0LK{??l8{01dKAtuG}TuTJ~Ol#m=xS z^M*?RrS(@lNCJy)84m{D&FNg*Hl4ksqQGZ)>!I}^*lW;Bq&>E~fTs*sCVK;3LpBZu zBYs~{ZEwpj>jh$JC4m28{+M9CD%+dtc&j4${LK1=vc3PU;^|*mSH)7Z^N?*L8vx-p z=^S`PW>xVK|FCYNq;=B}iGa>FsnH-9@T@=}JLzm_tvpl|Ia#dXr%(S35L2H9kYK*I zF;@FE>$Ejp-aNZ`QS>A_zCLj9joonQo30P5ZdJ{?{&K^;`t1w#+vge=>-XF(+q-Dr zn-)4hZva4*ESP4W1`cl6kHVTO$gWh;z736^V)r=rQ;POZmi8nc=T&xsjq^nXfXhAq zq!4F{2|+wB1aV=I1D5AwJ17HoM5Dn8P>SHMO4;v`BB(R7?+!YW1j0iGhlBfo@26YF z!lU8Hc$mJb+eCT*Nsi$N+e4nk&Itf8K$RN4AvuWvc}2GXWiL=w@v1<_<+NNW2og%4 zH@kD}v4R&Z7)Ofg5diR-V)iwYO{rZUlz&)xt8!7?0#9mpWSko^C8gJfriYTg*GCdZ zGxpMZ_QnN!FLwm+xbhTPX4TsK6R*OprN_SE zE;hCbm#2~4-}EQ!pWo{T>B0VSUgk%^^CG6W5I13~4{icl=dk4#Vy{xRJYob)IWANs zB>+m9fC`pEKFvRjiq@|I=QcMf7nT?8r@HFqGaYQA7lk#no1fGQ0U1>#MlFzgG{ zX+#-RAO`X)!0!ss0aw4toz>(7RV3L802EO*R5~Ao5W?(>V)O?Q0cGqLaT3~CavGhwD$ zi3^F2`!?s4@AWNj?Mz3)CL>a%CGX5$D5U;AB6lEF~*fu+N63jg4sUmJ6WsMpwZ^l;) z+lakj6X@p5IS3*De>jn_>O|mdz=`rM<;q@n)>>RhYiPr&7oukW zXlz3P53d><1d3_|00buGl`~IVe`2QXdRw}F$K2t?^1X@U8AnxW*S*^93$@$7a%}&# zJbz$u&(V8(dKdQe-raLDr$2XYPK!ZZ2QWw z?brSD?!WQg+kJdt_wl>CpUXJi8GD7Hzj;}SuJJuF!k|q1ufTXeX^h!okxot@CraaN zF@}8ywDEgjP+=5zD=3K?z!!;R5>CJuVYURCcxD8{fPzw-z7Y`(F}YKogRhH=mLf>5coW)O>cc{eT<1)2LgpK^*kIZ-A-MF2xH>nXk5+RBdQXpw0 zqpi~h9H`hpTz)I!4v6jexU1O@|O zV1Wu++*4g0ozHclna$f?!;tpIL@5+dA-_2EkhR4s@_USh!5+()8>Ut^#vM8og48E|hSWR+jfbo|R%v_*((^~cgMpzjqR8%22qT8av;bt5$A<&{VVd$Y z5_Tv>D_K&~0bPhLz@3fKyd8M~$A6AkVI&g31fefV)M+(J{7H%;RaA>1oCC{ExaoiAKO%*OA9BUE>%0h z( z>c&&)+8uN1XO};{oZfpZ<8(c!sJd6-UZ`--Hh$7{yXm9Wxl@Z3`>s5jI6TEq^<^BT z$<5QpQWXo1I>Sv~v_pRBfyMUP%da5818*Og-TBFZj}Ack^UD- z?OrffCj!Z;ubt~NzI@0UYu|Lvgym3^r^n|Mx64X#C2_WdU$FeU9~lBZ%GR+ zKjPKA3HLn13}H|WEu(ZYFF`sL(h$rD8j*q$&-(#JZ1zSKD1ai)dOV+;fUw*xfT182 zGWbHp;85be@1kwcge9EPpiq{oz-kQ;ApsYR*Ai-od)Fqy|Ut0Se!<#lv@fk& zqGL*j93QVYqE2u=Xy_Sc(Jl6?QBY$n{t+Vjc18U z5bt;S8R}W$8^Dc2yRhU87Bv`P*m_#&%pw>-Tzr(zj ze?b<_cag->${WLsqH*<~cqa4z@0m2zGPJC44q+!O6QbMN8!J6YAABsJ1~f(8FF{VS zqpwdFx;uKFjqy^eL_Nru;fb}pMh*f#R$jnikfZ!1;MI2k0AH1qC5}EQDZf`DEtE)$B@I`Oq7J$* z*j_t+<#^I_`|zzTbKU>kH?Mr||GUxji>DWMok`aZq|46U70zV@`)j>ddXqcu3hOD2 z#}-N+TP%^*(rCJM_{Nsm?l1c0lzIPOkA8W6q2>8>&8c)*-(8`9HHqI_Y*Tx$#!)@m z%cz!sOos=K+3T((6;P8(1nAt5T?hmOXetPDFX=>p_JyFYK$9QTy6D3BNF+#Y48cn@ ze*HovVMuWTTXc;@CGRp$Tce6{P$k*K5H+$sPp(O^Ib1%&A z{G9*1Z~oB2?w)1DELEEMF7~E>iNSg{xJ>J%GLheNvk}+qnd50SZ<-H&c_iI_VqxD& zT)Ahd(#G$&=~!Z*nm4L1kI)_@ikA`lUA2X;Tq>{TTW>zG#6UGyJ>U50#${}Nw@c(J zmn%znm+>KZeD`|dhssD0MX_}NfNszKO01{^WnVXI6H#yyjEkiggcnOwY{T%2ixJJ3 z(9Wy$=M~DM#=X-kM_<}dj~J~JbQ6tB+<>iG1n8(e6b~A|xwezPfG#Q-bsa#+X|wF_ z8S8KHpYykj>vv53zcDQfOv~?>>i=Xm0DMqdne0n7CQnbloN#>2+LD{^vQ>ZJ%&Y_# z%}UEW!&NU~_uEQ_cV?_5$+7Qwju$`~Vz(@{4spViGu_yZ5zW~576C?Wbkvn<&RAW^ zU1_m8z2(3o!$1oc+tOlf+Wl0C~Xy|jB%1D9}2$;tg7J7&-6`tiT$>pE^e<)e9*LLifc0}5;W5`Jn>%Rm7FL_v*)MvGc*5=4ifb&wo#=%If=krqXZwg<9QAYz*WDw-a0Q=|e0+)Ll= zYDwCmnjAWU-n@D9=FPmvnQz|gpF<%(g7Q6&msO(*FTGr?Fg26*>`+v458dnP;u7=& zT|gO;2I>|W$usE^-LEqfUeN;*maKcix4=exX3G`K3rXq1jf{lll$6#+XVa=cRZj#w z4gXsth_}%K`hXhwfOyELQgTuys@(k_#S%(Nie2YbO_2pYmch!jBxq_(n8g^Z#!@Qo zQ5RG>tx3tGJSC+C&<2`F@pwj!@mQ1Q_+;D?#YA4?E4?vQQ8T?K;`6-9UzcOsRh$PS zTAYlEDV7g$sq91?gBQ`vg2~3?a$45nalN~iqfw_j0A8qWAd9HPuv@?&!3i*FkN{Xg zcme#qjSOn~;Shm>NPW01#ct7MP;(Tf7U&&xnX)dm;NC&UM-Mn@NPniiTPE&5462W241tExOHODd-& zBrd54ye2DY4mOu0a=^%%%4M)LDc^`%1N1fpPeu6*FC?UBf)^Df6HSPdsvaJb1SKu< zcwvN3Nh69VMMdRB1<#m_)n8-W0*})sL#V#%t5#Dy%qz|ck{;fv)AUu8+P|ulAYPbm ztE#zfc}{}W0o7ZoMhg%UJ}qM2^p#n?u}Z;q+w|DA-6cUFHCa$49t#OG^kCCFo1RH4 z^JzH9epQ3>r_Re-BI3d!*vTdhQCGn(*^%I$~8Mpu2YYW*XtzQ^)Mzx79oa_?ju}{oUt|pb96+S#wrc8T(C|+;I^!y}20aJZar2z$Gial(52OZ~ZgnhGYNL!w*?Ple1c@c1 zp3v#`ik8Dwv?+8m#ULLN{p8Q_8Kl2v(9J(E$Z(CJ{pc7{sd*QLt|1EkZvN>8eGSc1 zk%0cH1w3Qc$pW03R4{jac8bGNM!_04DJMY)=au89rm!@{YtV##AP$BBvdNg!7BZ5h zXPKK%$U=hSGnph@p%&yN_&JHYE=g&aVHV8EX&dnb$01UaeMh3b#Q~|_pIZ3_b9T!Z z!sMp=z=g>mlU5}S2Z6ITy>-yzM^k2` zv}&?oB2Ion(@Qvrgh|gx3#PA<*bp!wcUpC^0k!VIK-g$B5rDAt<6E(X}71)j?Z>}+Sq14pAiJH8pmL4eu z>fbv1=Go=8PXpX%ZQURI0s`!`Ts;MB@1rEte4 z3WZMPm{McsvRG)`x1#*K<*x_NmO8rM>%7zXcGp_RkwV9jy933JqdCv|uDvUJ@0`xD zrA}_8@lGV?U2ogH(q3pgl%q?{ZOaF5oh>zWmUi#Wd2;Hlz&SbFlV@Ko0K%nci3P#F6yHUTNG~=?*aW3|QEPx%a>Ov*X1_Pi?~--cROxgb=b( zFgdgMAdnF~IKZdVipCM3;`CMyE)9Y%9Faj@slt0E8euKW!%;FUM#xb@jsY=!7j6hr zh6D$b{bVw7dQyq_EM&8`w;8NnIX**1K1m30W)Yi59{4IGYQfl3`+<)uZ(xH+K zHcQcxzb$v8;OAC43jQN&{#d~u`?&5?|G6&%#Na)e%&^gdg5f;Vey_E<^`C!xQ4l7k z$eKLCH)dX&$z5LQSPA5hoX!wuj?)q*U;Eh7guYW91zGMG8*bMzr$WDTDVo@M<8 zQ#G^SfhTKb=H@6QS<{eYf$uYiU{|(jLCf|+lbitEWztRt?VOIE;^nleS!&e~X``P7BKn>Yg{$tf$MbW%oaC=3 zrRb3E8M44tXE|jS5N49oTWX9rq|?#f1G*~`)x)Eb3ZJJ`lCxrkylKTV+;jb7W3_vR z`iCz^yrx^$q?8KJLrAq~fC#)7f@h%-zCbu~r$$0HA{{4!As}Xx<^BV(Y6fhX6$2ZU z{FSuH!YZ?^8qF$bWrnu1EgQVdrWCIU3CJL;R9HcolQ4WDGCdi1I!mHT?z1w+5yr+j zzW{NAmn|fN`ktELR#A8nOsI{pyRCO@=dL`{R%&WqytK|ew#M}qxZWan0wByCE3jQl zZ0>L=c6u##t`Iv{jP-9K#tX1?WGRwwJyK#j-x2cro+$1pk`kyAr-Q*4hG*yx*qFMVKlgN8{r z>JZzx{QO_NySH&H-*kM{bD|V#TCeZScgG6#vBhUTWBhMidhJr~;PS5J(8^2s==pq4 zf4=`}{)LzG@$31kLSB&a4U?DhpeXouOOK2XMLf74)ZuBQVax!B$xV-mJNPP)2=mb9#^WGWiDqR} z(eU|E57*pH(DMoza1jW6YYfz{1$Gw#yWde)_rqK1L^1IABDwz7ntKY(Js%0Hy#vMQ zV6pka;^k7P@vZoq@#XQAzGCR;;?O_5ArP$x8m!=tMEvAqC;2WDkDLB@JOyVOUM_Jn z7>~a)%O~v~OrHAIv&eE2lPzs~NSwnj5%S=J5EEp!2+0uDM}fSKHeD3$+w`>3?VHhV zx?$s~Mml_VYzslPd9a;s+B(6~jrOCG42SQ`0YOP7;fpXNFRGp4M4-cT&uVf~wF7O% zm;i{4C)T_Vt_2>awp&l(mqCy0HRBw1P6h<5GpW%x;;eBvXKf_~|TM5&+c}c{`Bqm_u zf6o2z64t013J_N2ZNJ+`_H8>1!|CVIao>~bNKdyfiB3!++H^Yh$_YtRwr@+uJ9Zcu zXz$}?=^GizRn_*7WUvaGwH;kHcaa@1A!=zDb>6AA>PV`aMyshv*lgjQEPjmZXDMIa zE0IHKMaB@TI<$S7QAdJff{#^%C1ba0<&YEAiEzW{ZJkX$E$ zomlE&CZ%Um%3^BcZff&xs?vG)L9UWpDP(f%`I3;yf0-+8=LEh?k_DXnU+Xx1#SZL| z{xr2}lKBR7b>cW>|l{!m)7|5 zW=^o#)trzYD@+~YBH=;P_B(tcX+%uUb=Xs@`IYT;J6ypgl=Tg{sc6I>sToaVXi(Z2 z8GMD(8gGXPZOt%s8DkQ}Okhw}lo9t=aO!-bH$QOB9dK0{VMDFS+@5JPU=1U#)-p}l z#GH=I3~D2_iJ_*cbus}Y`g{&J*~IXXtVynkBNr`Cyxf1rh&!7iP9k5hi6w`{wXmw8 z>|Xl~{kd)^Ee(EQIuFTt0_Y{#UVABu`iBP8m0=*-#Ru*E_V?d*eFHYq<1F_2vrjGd zqb@xNMSJ(G(2ZwbS)toqW-xR0P_<^3`XD+;EcD;IVd4?W`S6bBdJa22lFq!nP@@) From 41e9ee138f2acb76680993c070ad710b3f7a5128 Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 19 Nov 2025 02:00:39 -0600 Subject: [PATCH 08/15] fix: adapt Wasabi's README file to exclude git instructions --- .../benchmark/sosp24_wasabi/wasabi/README.md | 54 +++++++++---------- 1 file changed, 24 insertions(+), 30 deletions(-) diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/README.md b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/README.md index 4adb098b..633b5c7a 100644 --- a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/README.md +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/README.md @@ -6,44 +6,38 @@ The testing component of WASABI triggers retry bugs by using a combination of st To get started, users should create a new directory structure, clone this repository, work on the `main` branch of the repository, configure and install dependencies, by following these steps: -1. Create a new workspace directory and clone the WASABI repository: +1. If not already in place, create a the appropriate directory structure: + +Note that your current working directory where the `README.md` is located id `~/sosp24_wasabi/benchmarks/wasabi` ```bash -mkdir -p ~/wasabi-workspace/benchmarks -cd ~/wasabi-workspace/ -git clone https://github.com/bastoica/wasabi +mkdir -p ~/sosp24_wasabi/benchmarks +cd ~/sosp24_wasabi/ +ls -la . ``` The working directory structure should look similar to the one below: ```plaintext -~/wasabi-workspace +~/sosp24_wasabi ├── benchmarks/ └── wasabi/ - ├── LICENSE + ├── config/ ├── README.md - ├── wasabi-static/ - │ ├── README.md - │ ├── codeql-if-detection - │ ├── gpt-when-detection - | ├── retry_issue_set_artifact.xlsx - | └── wasabi_gpt_detection_results--table4.xlsx - └── wasabi-testing - ├── README.md - ├── config/ - ├── pom-java11.xml - ├── pom-java8.xml - ├── pom.xml - ├── src/ - └── utils/ + ├── config/ + ├── pom-java11.xml + ├── pom-java8.xml + ├── pom.xml + ├── src/ + └── utils/ ``` The `wasabi` directory contains the codebase of WASABI, while the `bugfinding` directory is where users can add applications that they want to use WASABI to find retry bugs. 2. Set up the `WASABI_ROOT_DIR` environment variable: ``` -export WASABI_ROOT_DIR=$(echo $HOME)/wasabi-workspace/wasabi +export WASABI_ROOT_DIR=$(echo $HOME)/sosp24_wasabi/wasabi ``` 3. Installing necessary dependnecies: ``` -cd ~/wasabi-workspace/wasabi/wasabi-testing/utils +cd ~/sosp24_wasabi/wasabi/wasabi-testing/utils sudo ./prereqs.sh ``` @@ -74,7 +68,7 @@ export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/jre Next, run Maven's `clean`, `compile`, and `install` Maven from the `wasabi-testing` directory, to build WASABI. Note that the current codebase includes AspectJ for each of the applications used to evaluate WASABI (see Section 4 from our [paper](https://bastoica.github.io/files/papers/2024_sosp_wasabi.pdf)). In this walkthrough we build WASABI for finding bugs in HDFS (Hadoop) and use triggering HDFS-17590 as an example, [below](README.md#6-running-example-reproducing-hdfs-17590). ```bash -cd ~/wasabi-workspace/wasabi/wasabi-testing +cd ~/sosp24_wasabi/wasabi/wasabi-testing mvn clean install -U -fn -B -Dinstrumentation.target=hadoop -DskipTests 2>&1 | tee wasabi-install.log ``` @@ -173,7 +167,7 @@ Successful weaving should produce log messages like this one: [INFO] Join point 'method-execution(...)' in Type 'org.apache.hadoop.metrics2.util.SampleStat' ... ``` -Users should also check out [examples](https://github.com/bastoica/wasabi/tree/wasabi-workspace/wasabi-testing) of target applications instrumented with WASABI from our `sosp24-ae` branch. These not only include detailed weaving steps, but also the modified `pom.xml` files. +Users should also check out [examples](https://github.com/bastoica/wasabi/tree/sosp24_wasabi/wasabi-testing) of target applications instrumented with WASABI from our `sosp24-ae` branch. These not only include detailed weaving steps, but also the modified `pom.xml` files. ### 4.2 Load-time weaving (Gradle, Ant, others) @@ -276,7 +270,7 @@ where * injection_policy: One of no-injection, forever, or max-count. * max_injection_count: Positive integer specifying the upper limit of injections (used with max-count policy). -The users can check out examples of `.data` and `.conf` files in the `./config` directory, or on the `sosp24-ae` [branch](https://github.com/bastoica/wasabi/tree/wasabi-workspace/wasabi-testing/config). +The users can check out examples of `.data` and `.conf` files in the `./config` directory, or on the `sosp24-ae` [branch](https://github.com/bastoica/wasabi/tree/sosp24_wasabi/wasabi-testing/config). ## Find retry bugs @@ -292,7 +286,7 @@ mvn clean install -U -fn -B -DskipTests 2>&1 | tee wasabi-build.log mvn surefire:test -fn -B -DconfigFile="$(echo $HOME)/wasabi/wasabi-testing/config/example_hdfs.conf" -Dtest=[TEST_NAME] 2>&1 | tee wasabi-test.log ``` -2. Option #2: run the entire test suite and inject faults at multiple locations in the same testing runs. Users can opt to inject faults at multiple locations in the same testing run if they are confident that injecting at an earlier location does not affect the execution of a later location. In this case, users can create a multi-location `.data` file (e.g., like [this one](https://github.com/bastoica/wasabi/blob/wasabi-workspace/wasabi-testing/config/hadoop/hadoop_retry_locations.data) for Hadoop). +2. Option #2: run the entire test suite and inject faults at multiple locations in the same testing runs. Users can opt to inject faults at multiple locations in the same testing run if they are confident that injecting at an earlier location does not affect the execution of a later location. In this case, users can create a multi-location `.data` file (e.g., like [this one](https://github.com/bastoica/wasabi/blob/sosp24_wasabi/wasabi-testing/config/hadoop/hadoop_retry_locations.data) for Hadoop). ```bash cd [target_application_path] @@ -314,12 +308,12 @@ To illustrate how WASABI work, we walk users through an example that reproduces 3. Clone Hadoop (note: HDFS is part of Hadoop), ```bash -cd ~/wasabi-workspace/benchmarks +cd ~/sosp24_wasabi/benchmarks git clone https://github.com/apache/hadoop ``` and check out version/commit `60867de`: ```bash -cd ~/wasabi-workspace/benchmarks/hadoop +cd ~/sosp24_wasabi/benchmarks/hadoop git checkout 60867de ``` Users can check whether `60867de` was successfully checked out by running @@ -363,7 +357,7 @@ which should yield a line similar to this (note that number of tests might diffe 6. Copy a modified `pom.xml` file that allows WASABI to instrument (weave) Hadoop by running ```bash cp pom.xml pom-original.xml -cp ~/wasabi-workspace/wasabi/wasabi-testing/config/hadoop/pom-hadoop.xml pom.xml +cp ~/sosp24_wasabi/wasabi/wasabi-testing/config/hadoop/pom-hadoop.xml pom.xml ``` Note that these commands are making a copy of the original `pom.xml` and replace it with a slightly edited version that instructs the AJC compiler to instrument (weave) WASABI. Also, these alterations are specific to version `60867de`. Checking out another Hadoop commit ID requires adjustments. We provide instructions on how to adapt an original `pom.xml`, [here](README.md#instrumentation-weaving-instructions). @@ -374,7 +368,7 @@ mvn clean install -U -fn -B -DskipTests 2>&1 | tee wasabi-fail-install.log 8. Run the bug-triggering tests with fault injection ```bash -mvn surefire:test -fn -B -DconfigFile="$(echo $HOME)/wasabi-workspace/wasabi/wasabi-testing/config/hadoop/example.conf" -Dtest=TestFSEditLogLoader 2>&1 | tee wasabi-fail-test.log +mvn surefire:test -fn -B -DconfigFile="$(echo $HOME)/sosp24_wasabi/wasabi/wasabi-testing/config/hadoop/example.conf" -Dtest=TestFSEditLogLoader 2>&1 | tee wasabi-fail-test.log ``` and check the log to for `NullPointerException` errors ```bash From 66e010746e7490c7ee275944c5a50ccffda1103f Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 19 Nov 2025 02:13:31 -0600 Subject: [PATCH 09/15] fix: refactor JSON containing task description --- benchmarks/arteval_bench/data/benchmark/arteval_tasks.jsonl | 1 + .../arteval_bench/data/benchmark/env_setup_examples.jsonl | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 benchmarks/arteval_bench/data/benchmark/arteval_tasks.jsonl create mode 100644 benchmarks/arteval_bench/data/benchmark/env_setup_examples.jsonl diff --git a/benchmarks/arteval_bench/data/benchmark/arteval_tasks.jsonl b/benchmarks/arteval_bench/data/benchmark/arteval_tasks.jsonl new file mode 100644 index 00000000..d274d5bb --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/arteval_tasks.jsonl @@ -0,0 +1 @@ +{"task_id": "sosp24_wasabi", "task_file": "data/benchmark/sosp24_wasabi/wasabi/README.md", "repo_name": "sosp24_wasabi", "test_method": "data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py", "expected_score": 4, "test_results": "", "difficulty": "easy", "repo_url": "https://github.com/bastoica/wasabi/tree/sosp24-ae"} \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/env_setup_examples.jsonl b/benchmarks/arteval_bench/data/benchmark/env_setup_examples.jsonl new file mode 100644 index 00000000..7a228a81 --- /dev/null +++ b/benchmarks/arteval_bench/data/benchmark/env_setup_examples.jsonl @@ -0,0 +1,3 @@ +{"task_id": "example_1", "task_name": "problems/test-repo-problems/1.md", "task": "set up the java environment", "repo_name": "projects/test-repo", "repo_url": "https://github.com/SWE-agent/test-repo.git", "test_method": "java -version", "test_results": "", "difficulty": "easy", "docker_env": "xuafeng/swe-go-python:latest"} +{"task_id": "example_2", "task_name": "problems/test-repo-problems/2.md", "task": "set up the rust environment", "repo_name": "projects/test-repo", "repo_url": "https://github.com/SWE-agent/test-repo.git", "test_method": "rustc --version", "test_results": "", "difficulty": "easy", "docker_env": "xuafeng/swe-go-python:latest"} +{"task_id": "example_3", "task_name": "problems/test-repo-problems/3.md", "task": "set up the nodejs environment", "repo_name": "projects/test-repo", "repo_url": "https://github.com/SWE-agent/test-repo.git", "test_method": "node -v", "test_results": "", "difficulty": "easy", "docker_env": "xuafeng/swe-go-python:latest"} \ No newline at end of file From d593df29efb297084b7215b613fd972fce67211b Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 19 Nov 2025 02:14:18 -0600 Subject: [PATCH 10/15] fix: refactor the AI agent evaluator bundle to return the final score --- .../benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py index fd20cdba..bd56d202 100644 --- a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py @@ -17,10 +17,14 @@ def main(): ok = checker.run() name = cls.__name__ logger.info(f"{name}: {'PASS' if ok else 'FAIL'}") - results[name] = 1 if ok else 0 + if ok: + results[name] = 1 + score += 1 + else: + results[name] = 0 logger.info(f"Agent scores: {results}") - return results + return score if __name__ == "__main__": From 07935ff63596b4074ed6ebe68845d95f9dc868be Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 19 Nov 2025 02:15:03 -0600 Subject: [PATCH 11/15] fix: unitialized variable --- .../data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py index bd56d202..2f434ee5 100644 --- a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py +++ b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py @@ -12,6 +12,7 @@ def main(): results: Dict[str, int] = {} + score = 0 for cls in (OracleEnvSetup, OracleArtifactBuild, OracleBenchmarkPrep, OracleExperimentRuns): checker = cls() ok = checker.run() From 51fac0fd8ba4c620a1cdb0e73a4365156aaabc02 Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 19 Nov 2025 02:19:08 -0600 Subject: [PATCH 12/15] refactor: major refactoring of the ArtEval agent scaffolding; also adding several popular code-focused AI agents --- benchmarks/arteval_bench/add_agents.md | 151 + .../data/benchmark/artifact_tasks.jsonl | 1 - .../sosp24_wasabi/wasabi/wasabi-install.log | 14328 ---------------- benchmarks/arteval_bench/go-python.Dockerfile | 36 + benchmarks/arteval_bench/install.sh | 62 +- benchmarks/arteval_bench/run.sh | 18 +- benchmarks/arteval_bench/src/__init__.py | 2 +- .../src/agents/claudecode/install.sh | 8 + .../src/agents/claudecode/runner.sh | 14 + .../src/agents/minisweagent/runner.sh | 20 + .../src/agents/openhand/config.toml | 6 + .../src/agents/openhand/install.sh | 18 + .../src/agents/openhand/runner.sh | 17 + benchmarks/arteval_bench/src/config_aoi.yaml | 122 + .../src/config_aoi_anthropic_tools.yaml | 69 + benchmarks/arteval_bench/src/main.py | 282 +- benchmarks/arteval_bench/src/main_patch.py | 122 + .../arteval_bench/src/patch_evaluator.py | 133 + .../arteval_bench/src/run_eval_in_env.py | 186 + .../arteval_bench/src/run_eval_sweagent.py | 53 + benchmarks/arteval_bench/src/utils.py | 25 + 21 files changed, 1110 insertions(+), 14563 deletions(-) create mode 100644 benchmarks/arteval_bench/add_agents.md delete mode 100644 benchmarks/arteval_bench/data/benchmark/artifact_tasks.jsonl delete mode 100644 benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/wasabi-install.log create mode 100644 benchmarks/arteval_bench/go-python.Dockerfile create mode 100644 benchmarks/arteval_bench/src/agents/claudecode/install.sh create mode 100644 benchmarks/arteval_bench/src/agents/claudecode/runner.sh create mode 100644 benchmarks/arteval_bench/src/agents/minisweagent/runner.sh create mode 100644 benchmarks/arteval_bench/src/agents/openhand/config.toml create mode 100644 benchmarks/arteval_bench/src/agents/openhand/install.sh create mode 100644 benchmarks/arteval_bench/src/agents/openhand/runner.sh create mode 100644 benchmarks/arteval_bench/src/config_aoi.yaml create mode 100644 benchmarks/arteval_bench/src/config_aoi_anthropic_tools.yaml create mode 100644 benchmarks/arteval_bench/src/main_patch.py create mode 100644 benchmarks/arteval_bench/src/patch_evaluator.py create mode 100644 benchmarks/arteval_bench/src/run_eval_in_env.py create mode 100644 benchmarks/arteval_bench/src/run_eval_sweagent.py create mode 100644 benchmarks/arteval_bench/src/utils.py diff --git a/benchmarks/arteval_bench/add_agents.md b/benchmarks/arteval_bench/add_agents.md new file mode 100644 index 00000000..3f5f6bd2 --- /dev/null +++ b/benchmarks/arteval_bench/add_agents.md @@ -0,0 +1,151 @@ +# Adding a New Agent + +To integrate a new agent into the benchmark, follow these steps: + +## 1. Create Agent Directory + +Create a new directory under `src/agents/` with your agent name: + +```sh +mkdir src/agents/your_agent_name +cd src/agents/your_agent_name +``` + +## 2. Create Required Files + +Each agent requires two files: + +### `install.sh` (optional but recommended) + +Installation script for your agent's dependencies: + +```bash +#!/bin/bash +set -e # Exit immediately on error. + +# Install your agent's dependencies +# Example: pip install your-agent-package +# Example: npm install -g your-agent-cli +``` + +### `runner.sh` (required) + +Execution script that accepts model and task parameters: + +```bash +#!/bin/bash +set -e # Exit immediately on error. + +# Validate parameters +if [ $# -ne 2 ]; then + echo "Usage: $0 " + echo "Example: $0 azure/gpt-4 \"implement MapReduce\"" + exit 1 +fi + +# Set API keys (read from env.toml or environment variables) +export YOUR_API_KEY="your_key_here" + +# Run your agent with the provided model and task +# $1 = model_location +# $2 = task_description +your-agent-command -m "$1" -t "$2" -o agent_trajectory.json +``` + +## 3. Agent Integration Points + +Your agent runner will be executed in a Docker container with: + +- **Working directory**: `/repo` (contains the project to work on) +- **Agent directory**: `/agent` (contains your install.sh and runner.sh) +- **Parameters**: + - `$1`: Model name/location (e.g., `anthropic/claude-sonnet-4-5-20250929`) + - `$2`: Task description (multi-line text describing what to implement) + +## 4. Examples + +### Claude Code Agent +```bash +# install.sh +apt-get update -y +apt-get install -y nodejs npm +npm install -g @anthropic-ai/claude-code + +# runner.sh +export ANTHROPIC_API_KEY="sk-ant-..." +claude -p "$2" --model "$1" --output-format json +``` + +### OpenHands Agent +```bash +# install.sh +curl -sSL https://install.python-poetry.org | python3 - +export PATH="$HOME/.local/bin:$PATH" +git clone https://github.com/All-Hands-AI/OpenHands.git +cd OpenHands/ +poetry install + +# runner.sh +cd OpenHands/ +poetry run python -m openhands.core.main \ + --config-file /agent/config.toml \ + --agent-cls CodeActAgent \ + --selected-repo /repo \ + -t "$2" +``` + +## 5. Testing Your Agent + +1. Add your agent path to the evaluation script +2. Run the benchmark: + ```sh + python src/main_setup.py --agent ./src/agents/your_agent_name + ``` + +## 6. Best Practices + +- Make scripts executable: `chmod +x install.sh runner.sh` +- Handle errors gracefully with `set -e` +- Use environment variables for API keys +- Output agent trajectory/logs for debugging +- Test with simple tasks first before running full benchmark +- Ensure your agent can work within the `/repo` directory context + +## 7. Agent Execution Flow + +The benchmark framework executes your agent as follows: + +1. **Setup Phase**: + - Docker container starts with base image `xuafeng/swe-go-python:latest` + - Project files uploaded to `/repo` + - Agent files uploaded to `/agent` + - `/agent/install.sh` executed (if exists) + +2. **Execution Phase**: + - Runner script executed: `/agent/runner.sh "" ""` + - Agent works in `/repo` directory + - Agent should modify files to complete the task + +3. **Evaluation Phase**: + - Test method from task specification executed (e.g., `cd src/main && bash test-mr.sh`) + - Results captured and saved to `outputs/` + +## 8. Troubleshooting + +### Common Issues + +**Agent can't find dependencies**: +- Ensure `install.sh` installs all required packages +- Check Docker image has necessary base dependencies + +**Permission denied errors**: +- Make scripts executable: `chmod +x install.sh runner.sh` +- Check file permissions in Docker container + +**API key not found**: +- Set environment variables in `runner.sh` +- Alternatively, configure in `env.toml` and read from there + +**Agent output not captured**: +- Ensure agent outputs to `agent_trajectory.json` or logs properly +- Check exit codes and error handling diff --git a/benchmarks/arteval_bench/data/benchmark/artifact_tasks.jsonl b/benchmarks/arteval_bench/data/benchmark/artifact_tasks.jsonl deleted file mode 100644 index 30b688c4..00000000 --- a/benchmarks/arteval_bench/data/benchmark/artifact_tasks.jsonl +++ /dev/null @@ -1 +0,0 @@ -{"task_id": "sosp24_wasabi", "task_file": "data/benchmark/sosp24_wasabi/wasabi/README.md", "test_method": "data/benchmark/sosp24_wasabi/wasabi/_agent_eval/main.py", "expected_score": 4, "test_results": "", "difficulty": "easy", "docker_env": "xuafeng/swe-ubuntu:latest", "repo_url": "https://github.com/bastoica/wasabi/tree/sosp24-ae", "local_path": "data/benchmark/"} \ No newline at end of file diff --git a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/wasabi-install.log b/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/wasabi-install.log deleted file mode 100644 index 9f154f62..00000000 --- a/benchmarks/arteval_bench/data/benchmark/sosp24_wasabi/wasabi/wasabi-install.log +++ /dev/null @@ -1,14328 +0,0 @@ -[INFO] Scanning for projects... -[INFO] -[INFO] -------------------< edu.uchicago.cs.systems:wasabi >------------------- -[INFO] Building Wasabi Library 1.0.0 -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom (21 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom (31 kB at 793 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar (64 kB at 1.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (3.9 kB at 178 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 kB at 483 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 976 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 kB at 617 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 kB at 912 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 325 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom (9.2 kB at 383 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom (15 kB at 449 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 984 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom (9.8 kB at 378 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 337 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom (48 kB at 1.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom (21 kB at 863 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar (66 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom (10 kB at 455 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom (14 kB at 552 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar (30 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom (5.8 kB at 216 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar (34 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom (6.4 kB at 255 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar (27 kB at 998 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom (2.0 kB at 93 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom (1.1 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom (17 kB at 613 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom (1.6 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 932 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom (16 kB at 695 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 2.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 282 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom (26 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom (24 kB at 898 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 232 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom (3.2 kB at 145 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom (5.6 kB at 256 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom (1.7 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom (2.8 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom (1.5 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.pom (43 kB at 1.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.5/hadoop-project-dist-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.5/hadoop-project-dist-3.3.5.pom (18 kB at 745 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.5/hadoop-project-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.5/hadoop-project-3.3.5.pom (95 kB at 2.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.5/hadoop-main-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.5/hadoop-main-3.3.5.pom (29 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom (3.0 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom (16 kB at 668 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 744 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.pom (2.6 kB at 113 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom (3.0 kB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom (8.1 kB at 369 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom (10 kB at 495 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 313 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom (1.7 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 463 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 114 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 204 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 241 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom (2.5 kB at 113 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (2.8 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom (2.6 kB at 112 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom (8.6 kB at 331 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (34 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8.0 kB at 399 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 986 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 204 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom (14 kB at 609 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom (47 kB at 1.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 659 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 315 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 683 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 1.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 261 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 598 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 960 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 2.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 735 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 635 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 2.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 783 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 735 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 2.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 837 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 727 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.pom (24 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom (82 kB at 2.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom (20 kB at 970 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 282 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 539 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 2.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 700 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 644 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 239 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom (4.6 kB at 199 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom (18 kB at 787 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 kB at 527 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.pom (3.4 kB at 163 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.48.v20220622/jetty-project-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.48.v20220622/jetty-project-9.4.48.v20220622.pom (72 kB at 2.6 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom (7.2 kB at 344 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom (19 kB at 818 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom (13 kB at 634 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom (66 kB at 2.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.pom (4.0 kB at 224 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.pom (4.0 kB at 202 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.pom (1.2 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.pom (2.3 kB at 114 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.pom (2.1 kB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.pom (1.3 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.pom (3.2 kB at 144 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.pom (1.7 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom (157 B at 8.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.pom (9.7 kB at 461 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19.4/jersey-project-1.19.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19.4/jersey-project-1.19.4.pom (28 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom (7.8 kB at 369 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom (5.5 kB at 273 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.pom (9.6 kB at 457 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.pom (11 kB at 460 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.pom (13 kB at 606 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom (3.4 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom (5.3 kB at 277 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom (5.6 kB at 278 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom (962 B at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom (1.1 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 798 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 2.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.pom (16 kB at 560 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 857 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 3.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 774 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.pom (31 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/53/commons-parent-53.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/53/commons-parent-53.pom (82 kB at 2.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom (20 kB at 938 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom (17 kB at 803 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom (78 kB at 2.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 1.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 283 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom (21 kB at 905 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 144 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 641 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.pom (1.2 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.19/reload4j-1.2.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.19/reload4j-1.2.19.pom (16 kB at 770 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom (5.6 kB at 268 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom (19 kB at 827 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom (9.6 kB at 481 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom (1.3 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom (1.5 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom (1.6 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom (11 kB at 536 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom (3.4 kB at 172 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom (13 kB at 579 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom (11 kB at 489 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom (1.9 kB at 95 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom (2.7 kB at 142 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom (12 kB at 581 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom (3.6 kB at 182 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom (8.4 kB at 399 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom (8.1 kB at 384 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom (4.5 kB at 238 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.pom (8.6 kB at 409 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom (11 kB at 532 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom (5.4 kB at 271 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom (8.2 kB at 431 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom (9.9 kB at 496 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom (2.4 kB at 125 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 591 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom (9.2 kB at 416 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom (28 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom (5.7 kB at 297 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom (1.9 kB at 93 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom (6.8 kB at 338 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 kB at 803 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom (3.5 kB at 176 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom (36 kB at 1.6 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom (4.6 kB at 245 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom (1.5 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom (1.7 kB at 79 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom (15 kB at 736 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom (2.2 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom (1.5 kB at 79 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom (1.3 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 192 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 643 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom (1.3 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom (2.0 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom (1.1 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom (1.2 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom (1.7 kB at 86 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom (1.5 kB at 79 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 578 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom (1.8 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom (1.5 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom (1.2 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom (14 kB at 683 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom (491 B at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom (2.0 kB at 106 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom (8.5 kB at 236 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom (1.2 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 kB at 508 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 kB at 2.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom (1.7 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom (1.7 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom (1.5 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom (1.1 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom (3.2 kB at 154 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom (4.8 kB at 254 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom (3.5 kB at 161 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom (3.4 kB at 161 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom (60 kB at 2.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom (10 kB at 503 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom (1.6 kB at 83 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom (1.9 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom (1.6 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom (3.6 kB at 189 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom (16 kB at 797 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom (16 kB at 809 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom (1.1 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 186 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 984 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.pom (15 kB at 772 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom (9.3 kB at 464 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom (17 kB at 861 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom (7.5 kB at 376 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom (23 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom (6.0 kB at 302 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom (5.5 kB at 277 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 331 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.pom (9.7 kB at 460 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom (23 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom (6.3 kB at 314 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 kB at 950 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom (7.2 kB at 326 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom (3.5 kB at 185 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar (123 kB at 3.6 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 938 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar (63 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar (361 kB at 4.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar (15 kB at 195 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar (194 kB at 2.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar (7.7 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar (6.8 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 3.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar (100 kB at 761 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.jar (25 kB at 158 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar (1.5 MB at 9.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar (3.7 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar (4.9 MB at 27 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (2.2 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar (193 kB at 925 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (8.8 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar (3.4 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar (41 kB at 171 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar (3.4 MB at 13 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar (2.7 MB at 10 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.jar (4.5 MB at 16 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar (1.6 MB at 5.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 2.6 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar (329 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.jar (285 kB at 898 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar (44 kB at 139 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.jar (316 kB at 983 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 1.8 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (96 kB at 291 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar (183 kB at 524 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar (146 kB at 411 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar (583 kB at 1.6 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar (235 kB at 634 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar (119 kB at 317 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar (732 kB at 1.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar (68 kB at 174 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar (140 kB at 356 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar (67 kB at 169 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar (101 kB at 253 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar (46 kB at 112 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.jar (159 kB at 377 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar (68 kB at 161 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.jar (129 kB at 295 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar (437 kB at 995 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar (23 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar (105 kB at 232 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar (62 kB at 134 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar (890 kB at 1.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar (63 kB at 132 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar (332 kB at 681 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.jar (705 kB at 1.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 496 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar (9.8 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar (238 kB at 461 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar (587 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar (436 kB at 816 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.jar (633 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar (232 kB at 429 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar (30 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar (128 kB at 230 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.jar (106 kB at 188 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar (781 kB at 1.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar (533 kB at 912 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar (249 kB at 425 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar (4.7 kB at 8.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar (444 kB at 745 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar (119 kB at 200 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar (122 kB at 200 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar (20 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar (113 kB at 182 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar (29 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar (31 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar (65 kB at 102 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar (37 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar (324 kB at 503 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar (116 kB at 180 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar (19 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar (20 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar (83 kB at 124 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar (29 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar (81 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar (283 kB at 410 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar (296 kB at 424 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar (20 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.jar (250 kB at 347 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar (437 kB at 591 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.jar (985 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar (3.0 MB at 4.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar (277 kB at 364 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar (33 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar (604 kB at 784 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar (473 kB at 604 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar (318 kB at 405 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar (12 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar (124 kB at 156 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar (33 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar (490 kB at 596 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar (205 kB at 249 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar (227 kB at 272 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar (102 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar (41 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar (1.0 MB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar (196 kB at 225 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar (366 kB at 419 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar (76 kB at 87 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar (1.5 MB at 1.7 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar (308 kB at 341 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.jar (523 kB at 576 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.jar (2.0 MB at 2.1 MB/s) -[INFO] -[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 274 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 448 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 104 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom (4.1 kB at 116 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 232 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 239 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 kB at 367 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar (226 kB at 4.7 MB/s) -[INFO] -[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (2.6 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2.0 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3.0 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 249 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 86 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 159 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 196 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2.0 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (2.6 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (1.9 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (1.9 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (6.7 kB at 192 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom (1.9 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (1.8 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (1.4 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (3.9 kB at 115 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (1.7 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (2.1 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom (2.0 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 203 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom (1.3 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 92 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 95 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 479 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom (5.8 kB at 161 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 249 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 190 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 322 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom (889 B at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 167 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (2.9 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3.0 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5.0 kB at 144 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 230 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom (890 B at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom (2.8 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 429 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar (29 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar (152 kB at 6.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar (57 kB at 2.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar (116 kB at 3.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar (35 kB at 1.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar (9.9 kB at 255 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar (21 kB at 519 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar (5.9 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar (24 kB at 462 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 kB at 528 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar (37 kB at 559 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar (14 kB at 206 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 197 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 526 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar (10 kB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar (86 kB at 1.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar (49 kB at 522 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar (87 kB at 920 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 2.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (6.8 kB at 60 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar (223 kB at 1.9 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar (61 kB at 505 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar (43 kB at 353 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 984 kB/s) -[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! -[INFO] Copying 220 resources -[INFO] Copying 9 resources -[INFO] -[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 182 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 419 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 139 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 187 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 958 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 121 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 509 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom (5.0 kB at 138 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom (4.1 kB at 112 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 706 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom (2.4 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 342 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 492 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom (1.1 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom (8.4 kB at 239 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom (2.7 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 236 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom (1.1 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 172 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 714 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom (1.2 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom (1.3 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 677 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar (55 kB at 2.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 150 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 6.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 3.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar (27 kB at 587 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 6.1 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar (122 kB at 2.0 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar (267 kB at 4.5 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar (23 kB at 340 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar (4.7 kB at 58 kB/s) -[INFO] Changes detected - recompiling the module! :dependency -[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! -[INFO] Compiling 9 source files with javac [debug target 1.8] to target/classes -[INFO] -[INFO] --- aspectj-maven-plugin:1.13:compile (default) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom (2.3 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 148 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 662 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 267 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 646 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 401 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 276 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 879 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom (3.0 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom (26 kB at 714 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom (4.1 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom (5.3 kB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom (2.4 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 775 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom (4.2 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom (14 kB at 361 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 214 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 559 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom (2.6 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom (14 kB at 351 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 203 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 568 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 193 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 366 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 97 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 220 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom (4.6 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom (3.4 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom (1.4 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom (1.9 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom (2.5 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 200 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 240 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 143 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom (8.8 kB at 252 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom (1.9 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 591 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 667 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 284 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 114 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 95 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 149 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 222 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 299 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 121 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 482 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 102 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 156 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 291 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom (4.3 kB at 124 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom (2.6 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom (19 kB at 501 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom (2.7 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom (2.8 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom (4.2 kB at 124 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 113 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 406 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom (3.8 kB at 110 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom (14 kB at 394 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 161 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 135 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom (11 kB at 313 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom (16 kB at 329 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom (7.8 kB at 229 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom (10 kB at 291 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom (4.2 kB at 127 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom (1.8 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom (5.1 kB at 134 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (2.5 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (4.4 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 676 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 142 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 130 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom (1.9 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom (21 kB at 578 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom (1.6 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom (18 kB at 462 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom (1.6 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom (3.0 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5.1 kB at 149 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 307 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 429 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 157 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 495 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (18 kB at 512 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom (7.7 kB at 220 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom (14 kB at 340 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom (4.5 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 407 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 1.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 765 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 138 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 376 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom (3.4 kB at 95 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 137 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom (3.0 kB at 84 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom (2.0 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom (2.7 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom (2.0 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 86 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 236 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 83 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 169 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 302 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 357 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 645 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 411 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 467 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 206 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 177 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 4.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 4.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 4.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 172 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 4.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 93 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 315 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 4.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 4.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 295 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom (7.6 kB at 217 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 184 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 153 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 90 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 221 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (4.9 kB at 140 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom (1.5 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom (15 kB at 424 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (41 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom (1.5 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom (3.4 kB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom (14 kB at 414 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom (748 B at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom (3.8 kB at 102 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom (22 kB at 615 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (3.8 kB at 109 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom (4.1 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom (4.9 kB at 140 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom (9.4 kB at 246 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom (13 kB at 364 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom (3.0 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom (6.7 kB at 84 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom (3.0 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom (1.6 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom (2.6 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (156 B at 3.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom (9.0 kB at 251 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom (5.3 kB at 155 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom (653 B at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom (4.3 kB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom (9.8 kB at 281 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom (12 kB at 338 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom (3.4 kB at 97 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom (145 B at 4.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom (3.1 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom (2.9 kB at 83 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 121 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar (11 kB at 456 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar (47 kB at 1.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 7.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar (215 kB at 5.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar (58 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 864 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar (205 kB at 3.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 90 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 724 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar (379 kB at 4.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar (192 kB at 2.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar (288 kB at 2.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar (14 kB at 143 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar (42 kB at 379 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 237 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar (44 kB at 375 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar (38 kB at 280 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar (634 kB at 4.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar (521 kB at 3.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar (32 kB at 184 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar (14 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar (66 kB at 345 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (3.5 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar (41 kB at 207 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar (2.6 MB at 12 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar (149 kB at 672 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar (169 kB at 747 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar (27 kB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar (180 kB at 768 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 351 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar (55 kB at 222 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar (12 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar (4.2 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar (65 kB at 235 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar (12 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar (218 kB at 787 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar (183 kB at 622 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar (15 MB at 48 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar (60 kB at 193 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar (17 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar (18 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar (16 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar (237 kB at 682 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 723 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 929 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar (53 kB at 138 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 372 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 233 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 166 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 1.1 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar (165 kB at 394 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar (18 kB at 43 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 491 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 1.2 MB/s) -[INFO] Showing AJC message detail for messages of types: [error, warning, fail] -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.Balancer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:175 -(withincode(* org.apache.hadoop.hdfs.server.balancer.Balancer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.Balancer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:176 -call(* org.apache.hadoop.hdfs.server.balancer.Balancer.doBalance(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:178 -call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:180 -call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:182 -call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.removeSPSHint(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:183 -(withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:184 -call(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.getInternal(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.tools.CLI [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:185 -(withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.Cluster [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:186 -call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.tools.CLI [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:187 -(withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.Cluster [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:188 -call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:191 -(withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:192 -call(* org.apache.hadoop.mapred.ClientServiceDelegate.getProxy(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:193 -(withincode(* org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter.refreshToken(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:194 -call(* org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee.getAccessToken(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:195 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.transfer(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:197 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:199 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:201 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.Sender [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:202 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.writeBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:203 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:205 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:206 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:207 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:208 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil.checkBlockOpStatus(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiverServer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:209 -(withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiver [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:210 -call(* org.apache.hadoop.hdfs.server.datanode.DataXceiver.create(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DistributedFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:212 -call(* org.apache.hadoop.hdfs.DistributedFileSystem.recoverLease(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:213 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:214 -call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:215 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:217 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:218 -call(* org.apache.hadoop.hdfs.DFSInputStream.getLastBlockLength(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:219 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSUtilClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:220 -call(* org.apache.hadoop.hdfs.DFSUtilClient.createClientDatanodeProtocolProxy(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:221 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:222 -call(* org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol.getReplicaVisibleLength(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:223 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:224 -call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockAt(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:225 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:226 -call(* org.apache.hadoop.hdfs.DFSInputStream.chooseDataNode(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:227 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:228 -call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:229 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.ReaderStrategy [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:230 -call(* org.apache.hadoop.hdfs.ReaderStrategy.readFromBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:231 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:232 -call(* org.apache.hadoop.hdfs.DFSInputStream.seekToBlockSource(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:233 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:234 -call(* org.apache.hadoop.hdfs.DFSInputStream.seekToNewSource(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:235 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:236 -call(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:237 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:238 -call(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:239 -(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.addBlock(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:240 -call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:241 -(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.newStreamForCreate(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:242 -call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.create(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:243 -(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.completeFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:244 -call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.complete(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:245 -(withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:246 -call(* org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:247 -(withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:248 -call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.EventFetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:249 -(withincode(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.EventFetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:250 -call(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.getMapCompletionEvents(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.KeyManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:252 -call(* org.apache.hadoop.hdfs.server.balancer.KeyManager.getAccessToken(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:254 -call(* org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher.moveBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:255 -(withincode(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.runWithRetries(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:256 -call(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.run(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:257 -(withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyFromHost(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:258 -call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyMapOutput(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:263 -(withincode(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:264 -call(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJobInternal(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.JobClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:271 -(withincode(* org.apache.hadoop.mapred.JobClient.getJob(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.JobClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:272 -call(* org.apache.hadoop.mapred.JobClient.getJobInner(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.JobEndNotifier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:273 -(withincode(* org.apache.hadoop.mapred.JobEndNotifier.localRunnerNotification(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.JobEndNotifier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:274 -call(* org.apache.hadoop.mapred.JobEndNotifier.httpNotification(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.client.impl.LeaseRenewer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:275 -(withincode(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.client.impl.LeaseRenewer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:276 -call(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNativeFileSystemStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:281 -(withincode(* org.apache.hadoop.fs.cosn.CosNativeFileSystemStore.callCOSClientWithRetry(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:283 -(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:285 -(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.NativeFileSystemStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:286 -call(* org.apache.hadoop.fs.cosn.NativeFileSystemStore.retrieveBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:287 -(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:289 -(withincode(* org.apache.hadoop.fs.obs.OBSFileSystem.getFileStatus(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:290 -call(* org.apache.hadoop.fs.obs.OBSFileSystem.innerGetFileStatus(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:291 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:292 -call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:293 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:294 -call(* org.apache.hadoop.fs.obs.OBSInputStream.seekInStream(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:295 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:297 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.onReadFailure(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:298 -call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:299 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:300 -call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:301 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:302 -call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:303 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.randomReadWithNewInputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:304 -call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:305 -(withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.createEmptyObject(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:306 -call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCreateEmptyObject(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:307 -(withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.copyFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:308 -call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCopyFile(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:309 -(withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:310 -call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:311 -(withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.BufferPool [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:312 -call(* org.apache.hadoop.fs.impl.prefetch.BufferPool.acquire(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:345 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:346 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage.getRecoveryStage(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:347 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:348 -call(* org.apache.hadoop.hdfs.DFSInputStream.fetchAndCheckLocatedBlocks(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:349 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:350 -call(* org.apache.hadoop.hdfs.DFSInputStream.waitFor(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:351 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:356 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:361 -(withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:363 -(withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:365 -(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:367 -(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.YarnChild [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:369 -(withincode(* org.apache.hadoop.mapred.YarnChild.main(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:370 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.getTask(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:371 -(withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:373 -(withincode(* org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.s3a.Invoker [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:375 -(withincode(* org.apache.hadoop.fs.s3a.Invoker.retryUntranslated(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:377 -(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:379 -(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:381 -(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockListRequestInternal(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:383 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:385 -(withincode(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenCall(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:386 -call(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenSingleCall(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:389 -(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:391 -(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:393 -(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:395 -(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForNameNodeJMXValue(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:396 -call(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.fetchNameNodeJMXValue(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:417 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:419 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:421 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:423 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:425 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:426 -call(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.deleteFileWithRetries(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:429 -(withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.submitReservation(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:430 -call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.submitReservation(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:431 -(withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.getNewReservation(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:432 -call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.getNewReservation(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:433 -(withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.utils.BuilderUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:434 -call(* org.apache.hadoop.yarn.server.utils.BuilderUtils.newContainerTokenIdentifier(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:435 -(withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:439 -(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:440 -call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.shouldCheckpointBasedOnCount(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:441 -(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:442 -call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doCheckpoint(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.util.DistCpUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:444 -call(* org.apache.hadoop.tools.util.DistCpUtils.toCopyListingFileStatus(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.SimpleCopyListing [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:446 -call(* org.apache.hadoop.tools.SimpleCopyListing.addToFileListing(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.SimpleCopyListing [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:448 -call(* org.apache.hadoop.tools.SimpleCopyListing.writeToFileListing(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:449 -(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:450 -call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.getFileInfo(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:451 -(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:452 -call(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.analyseBlocksStorageMovementsAndAssignToDN(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:453 -(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:454 -call(* org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded.removeItemTrackInfo(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:455 -(withincode(* org.apache.hadoop.mapred.Task.done(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:456 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:457 -(withincode(* org.apache.hadoop.mapred.Task.statusUpdate(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:458 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:459 -(withincode(* org.apache.hadoop.mapred.Task.sendDone(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:460 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.done(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:461 -(withincode(* org.apache.hadoop.mapred.Task.commit(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:462 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.canCommit(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:464 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:466 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:467 -(withincode(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:468 -call(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:469 -(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:470 -call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:471 -(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:472 -call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:473 -(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationBaseProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:474 -call(* org.apache.hadoop.yarn.api.ApplicationBaseProtocol.getApplicationAttemptReport(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:483 -(withincode(* org.apache.hadoop.hdfs.DFSClient.renewLease(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:487 -(withincode(* org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier.getNameNodeConnector(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:489 -(withincode(* org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator.makeRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:491 -(withincode(* org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator.heartbeat(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:493 -(withincode(* org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.AMRMClientRelayer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:495 -(withincode(* org.apache.hadoop.yarn.server.AMRMClientRelayer.allocate(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: CreateOutputDirectoriesStage [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:497 -(withincode(* CreateOutputDirectoriesStage.maybeCreateOneDirectory(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.BPServiceActor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:559 -((withincode(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.BPServiceActor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:560 -call(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.connectToNNAndHandshake(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:583 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:584 -call(* org.apache.hadoop.hdfs.DataStreamer.createSocketForPipeline(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:585 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:586 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient.socketSend(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: java.io [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:589 -(withincode(* java.io.IOException(..)) && - ^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:590 -call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.openConnection(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:591 -(withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.connect(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.Sender [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:600 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.releaseShortCircuitFds(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:603 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:604 -call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:605 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:606 -call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:607 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:609 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.util.RetriableCommand [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:611 -(withincode(* org.apache.hadoop.tools.util.RetriableCommand.execute(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.util.RetriableCommand [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:612 -call(* org.apache.hadoop.tools.util.RetriableCommand.doExecute(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiverServer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:743 -((withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.net.PeerServer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:744 -call(* org.apache.hadoop.hdfs.net.PeerServer.accept(..) throws *Exception*))) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSCommonUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:803 -((withincode(* org.apache.hadoop.fs.obs.OBSCommonUtils.isFolderEmpty(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSCommonUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:804 -call(* org.apache.hadoop.fs.obs.OBSCommonUtils.innerIsFolderEmpty(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:805 -(withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:806 -call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:807 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:867 -((withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:868 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:870 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:929 -((withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:930 -call(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.processTask(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:932 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:935 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:873 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:811 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:747 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:687 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:625 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:503 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:136 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:94 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:77 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:59 - -[INFO] -[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ wasabi --- -[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! -[INFO] skip non existing resourceDirectory /home/cc/sosp24-ae/wasabi/wasabi-testing/src/test/resources -[INFO] -[INFO] --- aspectj-maven-plugin:1.13:test-compile (default) @ wasabi --- -[WARNING] No sources found skipping aspectJ compile -[INFO] -[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (1.5 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 kB at 525 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 kB at 652 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom (3.0 kB at 84 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom (2.5 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom (5.5 kB at 154 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom (1.6 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom (16 kB at 450 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (1.6 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 92 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 536 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (2.7 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (2.1 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (3.1 kB at 90 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (2.0 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (2.7 kB at 79 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (1.9 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2.0 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (7.8 kB at 229 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2.0 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (1.8 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (1.5 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (1.7 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (2.1 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (1.3 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom (3.5 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom (17 kB at 464 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom (42 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom (3.7 kB at 109 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 267 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 647 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar (35 kB at 1.6 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar (263 kB at 8.8 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar (118 kB at 3.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 348 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar (31 kB at 776 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar (316 kB at 7.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar (232 kB at 4.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 2.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 847 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 1.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 465 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 383 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 741 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 1.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar (10 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 238 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 133 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar (38 kB at 306 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 287 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar (14 kB at 101 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 1.0 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 108 kB/s) -[INFO] Tests are skipped. -[INFO] -[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom (4.5 kB at 133 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom (2.8 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom (1.7 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom (2.7 kB at 79 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 kB at 532 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom (1.0 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 284 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar (22 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar (60 kB at 2.7 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar (58 kB at 2.8 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (38 kB at 1.3 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar (184 kB at 4.2 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar (208 kB at 3.2 MB/s) -[INFO] Building jar: /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar -[INFO] -[INFO] --- maven-install-plugin:2.4:install (default-install) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom (2.5 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom (19 kB at 548 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom (1.1 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom (5.0 kB at 151 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 226 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom (7.3 kB at 220 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar (12 kB at 359 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar (230 kB at 5.1 MB/s) -[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.jar -[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/pom.xml to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.pom -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 26.355 s -[INFO] Finished at: 2025-09-20T02:08:25Z -[INFO] ------------------------------------------------------------------------ -[INFO] Scanning for projects... -[INFO] -[INFO] -------------------< edu.uchicago.cs.systems:wasabi >------------------- -[INFO] Building Wasabi Library 1.0.0 -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom (21 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom (31 kB at 297 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar (64 kB at 104 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (3.9 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 kB at 124 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 183 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 kB at 145 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 kB at 228 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom (9.2 kB at 103 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 297 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom (15 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 347 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom (9.8 kB at 104 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom (48 kB at 578 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom (21 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar (66 kB at 543 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom (10 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom (14 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar (30 kB at 260 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom (5.8 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar (34 kB at 272 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom (6.4 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar (27 kB at 245 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom (2.0 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom (1.1 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom (17 kB at 176 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom (1.6 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 243 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 8.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom (16 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 656 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom (26 kB at 373 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom (24 kB at 245 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom (3.2 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom (5.6 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom (1.7 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom (2.8 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom (1.5 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.pom (43 kB at 326 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.5/hadoop-project-dist-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.5/hadoop-project-dist-3.3.5.pom (18 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.5/hadoop-project-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.5/hadoop-project-3.3.5.pom (95 kB at 914 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.5/hadoop-main-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.5/hadoop-main-3.3.5.pom (29 kB at 265 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom (3.0 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom (16 kB at 151 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 201 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.pom (2.6 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom (3.0 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom (8.1 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom (10 kB at 91 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom (1.7 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 86 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom (2.5 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (2.8 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom (2.6 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom (8.6 kB at 96 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (34 kB at 382 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8.0 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 301 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom (14 kB at 157 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom (47 kB at 487 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 180 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 164 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 265 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 178 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 221 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 643 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 189 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 179 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 708 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 165 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 138 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 624 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 209 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 163 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.pom (24 kB at 307 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom (82 kB at 751 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom (20 kB at 234 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 674 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 121 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom (4.6 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom (18 kB at 176 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 kB at 130 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.pom (3.4 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.48.v20220622/jetty-project-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.48.v20220622/jetty-project-9.4.48.v20220622.pom (72 kB at 735 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom (7.2 kB at 79 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom (19 kB at 202 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom (13 kB at 128 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom (66 kB at 609 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.pom (4.0 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.pom (4.0 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.pom (1.2 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.pom (2.3 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.pom (2.1 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.pom (1.3 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.pom (3.2 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.pom (1.7 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom (157 B at 1.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.pom (9.7 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19.4/jersey-project-1.19.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19.4/jersey-project-1.19.4.pom (28 kB at 233 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom (7.8 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom (5.5 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.pom (9.6 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.pom (11 kB at 79 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.pom (13 kB at 127 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom (3.4 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom (5.3 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom (5.6 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom (962 B at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom (1.1 kB at 10.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 206 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 473 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.pom (16 kB at 113 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 168 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 686 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 130 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.pom (31 kB at 297 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/53/commons-parent-53.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/53/commons-parent-53.pom (82 kB at 798 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom (20 kB at 168 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom (17 kB at 192 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom (78 kB at 820 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 251 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom (21 kB at 251 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 193 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.pom (1.2 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.19/reload4j-1.2.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.19/reload4j-1.2.19.pom (16 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom (5.6 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom (19 kB at 226 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom (9.6 kB at 102 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom (1.3 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom (1.5 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom (1.6 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom (11 kB at 128 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom (3.4 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom (13 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom (11 kB at 102 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom (1.9 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom (2.7 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom (12 kB at 154 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom (3.6 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom (8.4 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom (8.1 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom (4.5 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.pom (8.6 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom (11 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom (5.4 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom (8.2 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom (9.9 kB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom (2.4 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 110 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom (9.2 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom (28 kB at 363 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom (5.7 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom (1.9 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom (6.8 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 kB at 189 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom (3.5 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom (36 kB at 133 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom (4.6 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom (1.5 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom (1.7 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom (15 kB at 196 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom (2.2 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom (1.3 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 135 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom (1.3 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom (2.0 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom (1.1 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom (1.2 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom (1.7 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom (1.5 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 153 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom (1.8 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom (1.5 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom (1.2 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom (14 kB at 163 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom (491 B at 5.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom (2.0 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom (8.5 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom (1.2 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 kB at 562 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom (1.7 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom (1.7 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom (1.1 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom (3.2 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom (4.8 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom (3.5 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom (3.4 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom (60 kB at 524 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom (10 kB at 106 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom (1.6 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom (1.9 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom (1.6 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom (3.6 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom (16 kB at 194 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom (16 kB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom (1.1 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 184 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.pom (15 kB at 163 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom (9.3 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom (17 kB at 148 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom (7.5 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom (23 kB at 251 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom (6.0 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom (5.5 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 251 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.pom (9.7 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom (23 kB at 260 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom (6.3 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 kB at 226 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom (7.2 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom (3.5 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar (63 kB at 601 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 266 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 2.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar (15 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar (361 kB at 1.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar (194 kB at 714 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar (7.7 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar (100 kB at 305 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar (6.8 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar (4.9 MB at 12 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.jar (25 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar (1.5 MB at 3.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar (3.7 kB at 6.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.jar (4.5 MB at 7.8 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar (3.4 MB at 5.6 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar (2.7 MB at 4.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (2.2 kB at 3.2 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar (193 kB at 284 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (8.8 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar (3.4 kB at 4.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar (123 kB at 156 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar (41 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar (1.6 MB at 1.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar (329 kB at 395 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 922 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.jar (285 kB at 306 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 630 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar (44 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.jar (316 kB at 328 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (96 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar (235 kB at 226 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar (183 kB at 172 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar (732 kB at 684 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar (583 kB at 539 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar (146 kB at 131 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar (119 kB at 102 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar (140 kB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar (67 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar (68 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar (437 kB at 348 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.jar (129 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar (101 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar (68 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.jar (159 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar (46 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar (890 kB at 621 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar (105 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar (23 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.jar (705 kB at 472 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar (332 kB at 216 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar (63 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar (62 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 153 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.jar (633 kB at 386 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar (587 kB at 348 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar (238 kB at 137 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar (9.8 kB at 5.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar (232 kB at 131 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar (436 kB at 245 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar (128 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar (781 kB at 423 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar (533 kB at 282 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar (30 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar (444 kB at 227 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar (249 kB at 127 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.jar (106 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar (4.7 kB at 2.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar (122 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar (119 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar (29 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar (20 kB at 9.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar (324 kB at 149 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar (31 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar (113 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar (65 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar (116 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar (37 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar (19 kB at 8.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar (81 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar (83 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar (20 kB at 8.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar (29 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar (283 kB at 116 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar (296 kB at 121 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar (3.0 MB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 8.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.jar (985 kB at 387 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar (20 kB at 8.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.jar (250 kB at 97 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar (437 kB at 169 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar (604 kB at 232 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar (473 kB at 178 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar (33 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar (318 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar (277 kB at 102 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar (33 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar (124 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar (490 kB at 176 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar (12 kB at 4.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar (102 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar (1.0 MB at 353 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar (205 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar (227 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar (41 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar (76 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar (196 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar (366 kB at 121 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar (1.5 MB at 502 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.jar (523 kB at 168 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar (308 kB at 98 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.jar (2.0 MB at 616 kB/s) -[INFO] -[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 167 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom (4.1 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 91 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 kB at 120 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar (226 kB at 1.6 MB/s) -[INFO] Deleting /home/cc/sosp24-ae/wasabi/wasabi-testing/target -[INFO] -[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (2.6 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2.0 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3.0 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 93 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 6.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2.0 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (2.6 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (1.9 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (1.9 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (6.7 kB at 92 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom (1.9 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (1.8 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (1.4 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 5.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (3.9 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (1.7 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (2.1 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom (2.0 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom (1.3 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 158 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom (5.8 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 91 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 104 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom (889 B at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (2.9 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3.0 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5.0 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom (890 B at 9.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom (2.8 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar (152 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar (116 kB at 985 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar (35 kB at 230 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar (57 kB at 329 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar (29 kB at 158 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar (9.9 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar (5.9 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar (14 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar (24 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar (21 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar (37 kB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar (87 kB at 200 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar (10 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar (49 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar (86 kB at 185 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 409 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar (223 kB at 403 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (6.8 kB at 12 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar (43 kB at 77 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar (61 kB at 106 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 206 kB/s) -[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! -[INFO] Copying 220 resources -[INFO] Copying 9 resources -[INFO] -[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 363 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 305 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 5.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 125 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom (5.0 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom (4.1 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 219 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom (2.4 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 124 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 142 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom (1.1 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom (8.4 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom (2.7 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom (1.1 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 7.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 289 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom (1.2 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom (1.3 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 140 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar (55 kB at 525 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 2.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar (27 kB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar (267 kB at 1.2 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar (122 kB at 557 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar (4.7 kB at 19 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar (23 kB at 79 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 1.1 MB/s) -[INFO] Changes detected - recompiling the module! :dependency -[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! -[INFO] Compiling 9 source files with javac [debug target 1.8] to target/classes -[INFO] -[INFO] --- aspectj-maven-plugin:1.13:compile (default) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom (2.3 kB at 6.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 300 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 284 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 149 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 323 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom (3.0 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom (26 kB at 300 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 446 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom (4.1 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom (5.3 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom (2.4 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 288 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom (4.2 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom (14 kB at 151 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 203 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 9.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 5.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom (2.6 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom (14 kB at 133 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 202 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 133 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom (4.6 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom (3.4 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom (1.4 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom (1.9 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom (2.5 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom (8.8 kB at 104 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom (1.9 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 240 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 235 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 6.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 212 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 110 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom (4.3 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom (2.6 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom (19 kB at 207 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom (2.7 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom (2.8 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom (4.2 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom (3.8 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom (14 kB at 168 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 369 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom (11 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom (16 kB at 128 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 3.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom (7.8 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom (10 kB at 97 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom (4.2 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom (1.8 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom (5.1 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (2.5 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (4.4 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 221 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 8.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom (1.9 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom (21 kB at 225 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom (1.6 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom (18 kB at 177 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom (1.6 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom (3.0 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5.1 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 303 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 159 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 223 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (18 kB at 174 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom (7.7 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom (14 kB at 142 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom (4.5 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 804 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 349 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 121 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom (3.4 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 9.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom (3.0 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom (2.0 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom (2.7 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom (2.0 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 93 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 164 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 159 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 194 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 2.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 1.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 1.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 2.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 9.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 130 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 1.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 795 B/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 103 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom (7.6 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 8.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (4.9 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom (15 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (41 kB at 373 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom (3.4 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom (14 kB at 154 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom (748 B at 6.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom (3.8 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom (22 kB at 186 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (3.8 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom (4.1 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom (4.9 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom (9.4 kB at 105 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom (13 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom (3.0 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom (6.7 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom (3.0 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom (1.6 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom (2.6 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (156 B at 1.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom (9.0 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom (5.3 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom (653 B at 6.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom (4.3 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom (9.8 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom (12 kB at 115 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom (3.4 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom (145 B at 1.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom (3.1 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom (2.9 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar (47 kB at 547 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 2.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar (11 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar (215 kB at 1.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar (58 kB at 329 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 228 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar (205 kB at 938 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 173 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar (379 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar (192 kB at 588 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar (288 kB at 868 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 6.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar (14 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar (42 kB at 96 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar (44 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar (15 MB at 32 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar (634 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar (38 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar (521 kB at 838 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 7.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar (32 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar (14 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar (2.6 MB at 3.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (3.5 kB at 4.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar (41 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar (66 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar (27 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar (149 kB at 186 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar (180 kB at 212 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar (169 kB at 197 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar (4.2 kB at 4.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar (55 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar (12 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar (65 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar (183 kB at 186 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar (218 kB at 221 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar (12 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 320 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar (60 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar (16 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 304 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar (18 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar (237 kB at 203 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar (17 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 6.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 361 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 206 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 268 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar (53 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 330 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 100 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 344 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar (18 kB at 12 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar (165 kB at 111 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 138 kB/s) -[INFO] Showing AJC message detail for messages of types: [error, warning, fail] -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.Balancer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:175 -(withincode(* org.apache.hadoop.hdfs.server.balancer.Balancer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.Balancer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:176 -call(* org.apache.hadoop.hdfs.server.balancer.Balancer.doBalance(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:178 -call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:180 -call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:182 -call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.removeSPSHint(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:183 -(withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:184 -call(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.getInternal(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.tools.CLI [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:185 -(withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.Cluster [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:186 -call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.tools.CLI [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:187 -(withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.Cluster [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:188 -call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:191 -(withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:192 -call(* org.apache.hadoop.mapred.ClientServiceDelegate.getProxy(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:193 -(withincode(* org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter.refreshToken(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:194 -call(* org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee.getAccessToken(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:195 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.transfer(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:197 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:199 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:201 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.Sender [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:202 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.writeBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:203 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:205 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:206 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:207 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:208 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil.checkBlockOpStatus(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiverServer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:209 -(withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiver [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:210 -call(* org.apache.hadoop.hdfs.server.datanode.DataXceiver.create(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DistributedFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:212 -call(* org.apache.hadoop.hdfs.DistributedFileSystem.recoverLease(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:213 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:214 -call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:215 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:217 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:218 -call(* org.apache.hadoop.hdfs.DFSInputStream.getLastBlockLength(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:219 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSUtilClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:220 -call(* org.apache.hadoop.hdfs.DFSUtilClient.createClientDatanodeProtocolProxy(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:221 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:222 -call(* org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol.getReplicaVisibleLength(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:223 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:224 -call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockAt(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:225 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:226 -call(* org.apache.hadoop.hdfs.DFSInputStream.chooseDataNode(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:227 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:228 -call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:229 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.ReaderStrategy [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:230 -call(* org.apache.hadoop.hdfs.ReaderStrategy.readFromBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:231 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:232 -call(* org.apache.hadoop.hdfs.DFSInputStream.seekToBlockSource(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:233 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:234 -call(* org.apache.hadoop.hdfs.DFSInputStream.seekToNewSource(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:235 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:236 -call(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:237 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:238 -call(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:239 -(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.addBlock(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:240 -call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:241 -(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.newStreamForCreate(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:242 -call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.create(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:243 -(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.completeFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:244 -call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.complete(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:245 -(withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:246 -call(* org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:247 -(withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:248 -call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.EventFetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:249 -(withincode(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.EventFetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:250 -call(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.getMapCompletionEvents(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.KeyManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:252 -call(* org.apache.hadoop.hdfs.server.balancer.KeyManager.getAccessToken(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:254 -call(* org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher.moveBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:255 -(withincode(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.runWithRetries(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:256 -call(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.run(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:257 -(withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyFromHost(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:258 -call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyMapOutput(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:263 -(withincode(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:264 -call(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJobInternal(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.JobClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:271 -(withincode(* org.apache.hadoop.mapred.JobClient.getJob(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.JobClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:272 -call(* org.apache.hadoop.mapred.JobClient.getJobInner(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.JobEndNotifier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:273 -(withincode(* org.apache.hadoop.mapred.JobEndNotifier.localRunnerNotification(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.JobEndNotifier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:274 -call(* org.apache.hadoop.mapred.JobEndNotifier.httpNotification(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.client.impl.LeaseRenewer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:275 -(withincode(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.client.impl.LeaseRenewer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:276 -call(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNativeFileSystemStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:281 -(withincode(* org.apache.hadoop.fs.cosn.CosNativeFileSystemStore.callCOSClientWithRetry(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:283 -(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:285 -(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.NativeFileSystemStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:286 -call(* org.apache.hadoop.fs.cosn.NativeFileSystemStore.retrieveBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:287 -(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:289 -(withincode(* org.apache.hadoop.fs.obs.OBSFileSystem.getFileStatus(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:290 -call(* org.apache.hadoop.fs.obs.OBSFileSystem.innerGetFileStatus(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:291 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:292 -call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:293 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:294 -call(* org.apache.hadoop.fs.obs.OBSInputStream.seekInStream(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:295 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:297 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.onReadFailure(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:298 -call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:299 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:300 -call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:301 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:302 -call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:303 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.randomReadWithNewInputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:304 -call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:305 -(withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.createEmptyObject(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:306 -call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCreateEmptyObject(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:307 -(withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.copyFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:308 -call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCopyFile(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:309 -(withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:310 -call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:311 -(withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.BufferPool [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:312 -call(* org.apache.hadoop.fs.impl.prefetch.BufferPool.acquire(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:345 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:346 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage.getRecoveryStage(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:347 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:348 -call(* org.apache.hadoop.hdfs.DFSInputStream.fetchAndCheckLocatedBlocks(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:349 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:350 -call(* org.apache.hadoop.hdfs.DFSInputStream.waitFor(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:351 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:356 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:361 -(withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:363 -(withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:365 -(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:367 -(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.YarnChild [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:369 -(withincode(* org.apache.hadoop.mapred.YarnChild.main(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:370 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.getTask(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:371 -(withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:373 -(withincode(* org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.s3a.Invoker [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:375 -(withincode(* org.apache.hadoop.fs.s3a.Invoker.retryUntranslated(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:377 -(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:379 -(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:381 -(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockListRequestInternal(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:383 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:385 -(withincode(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenCall(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:386 -call(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenSingleCall(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:389 -(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:391 -(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:393 -(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:395 -(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForNameNodeJMXValue(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:396 -call(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.fetchNameNodeJMXValue(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:417 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:419 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:421 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:423 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:425 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:426 -call(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.deleteFileWithRetries(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:429 -(withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.submitReservation(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:430 -call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.submitReservation(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:431 -(withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.getNewReservation(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:432 -call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.getNewReservation(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:433 -(withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.utils.BuilderUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:434 -call(* org.apache.hadoop.yarn.server.utils.BuilderUtils.newContainerTokenIdentifier(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:435 -(withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:439 -(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:440 -call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.shouldCheckpointBasedOnCount(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:441 -(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:442 -call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doCheckpoint(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.util.DistCpUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:444 -call(* org.apache.hadoop.tools.util.DistCpUtils.toCopyListingFileStatus(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.SimpleCopyListing [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:446 -call(* org.apache.hadoop.tools.SimpleCopyListing.addToFileListing(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.SimpleCopyListing [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:448 -call(* org.apache.hadoop.tools.SimpleCopyListing.writeToFileListing(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:449 -(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:450 -call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.getFileInfo(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:451 -(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:452 -call(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.analyseBlocksStorageMovementsAndAssignToDN(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:453 -(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:454 -call(* org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded.removeItemTrackInfo(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:455 -(withincode(* org.apache.hadoop.mapred.Task.done(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:456 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:457 -(withincode(* org.apache.hadoop.mapred.Task.statusUpdate(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:458 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:459 -(withincode(* org.apache.hadoop.mapred.Task.sendDone(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:460 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.done(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:461 -(withincode(* org.apache.hadoop.mapred.Task.commit(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:462 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.canCommit(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:464 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:466 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:467 -(withincode(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:468 -call(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:469 -(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:470 -call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:471 -(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:472 -call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:473 -(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationBaseProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:474 -call(* org.apache.hadoop.yarn.api.ApplicationBaseProtocol.getApplicationAttemptReport(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:483 -(withincode(* org.apache.hadoop.hdfs.DFSClient.renewLease(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:487 -(withincode(* org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier.getNameNodeConnector(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:489 -(withincode(* org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator.makeRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:491 -(withincode(* org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator.heartbeat(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:493 -(withincode(* org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.AMRMClientRelayer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:495 -(withincode(* org.apache.hadoop.yarn.server.AMRMClientRelayer.allocate(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: CreateOutputDirectoriesStage [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:497 -(withincode(* CreateOutputDirectoriesStage.maybeCreateOneDirectory(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.BPServiceActor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:559 -((withincode(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.BPServiceActor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:560 -call(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.connectToNNAndHandshake(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:583 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:584 -call(* org.apache.hadoop.hdfs.DataStreamer.createSocketForPipeline(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:585 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:586 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient.socketSend(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: java.io [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:589 -(withincode(* java.io.IOException(..)) && - ^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:590 -call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.openConnection(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:591 -(withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.connect(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.Sender [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:600 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.releaseShortCircuitFds(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:603 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:604 -call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:605 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:606 -call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:607 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:609 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.util.RetriableCommand [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:611 -(withincode(* org.apache.hadoop.tools.util.RetriableCommand.execute(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.util.RetriableCommand [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:612 -call(* org.apache.hadoop.tools.util.RetriableCommand.doExecute(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiverServer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:743 -((withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.net.PeerServer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:744 -call(* org.apache.hadoop.hdfs.net.PeerServer.accept(..) throws *Exception*))) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSCommonUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:803 -((withincode(* org.apache.hadoop.fs.obs.OBSCommonUtils.isFolderEmpty(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSCommonUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:804 -call(* org.apache.hadoop.fs.obs.OBSCommonUtils.innerIsFolderEmpty(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:805 -(withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:806 -call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:807 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:867 -((withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:868 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:870 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:929 -((withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:930 -call(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.processTask(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:932 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:935 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:873 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:811 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:747 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:687 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:625 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:503 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:136 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:94 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:77 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:59 - -[INFO] -[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ wasabi --- -[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! -[INFO] skip non existing resourceDirectory /home/cc/sosp24-ae/wasabi/wasabi-testing/src/test/resources -[INFO] -[INFO] --- aspectj-maven-plugin:1.13:test-compile (default) @ wasabi --- -[WARNING] No sources found skipping aspectJ compile -[INFO] -[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (1.5 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 kB at 210 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 kB at 174 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom (3.0 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom (2.5 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom (5.5 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom (1.6 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom (16 kB at 188 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (1.6 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 208 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (2.7 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (2.1 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (3.1 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (2.0 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (2.7 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (1.9 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2.0 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (7.8 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2.0 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (1.8 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (1.7 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (2.1 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (1.3 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom (3.5 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom (17 kB at 148 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom (42 kB at 385 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom (3.7 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 92 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 192 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar (35 kB at 408 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar (263 kB at 1.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar (316 kB at 1.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar (118 kB at 603 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar (31 kB at 158 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar (232 kB at 1.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 385 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 125 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 403 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 185 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 371 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 198 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar (10 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar (38 kB at 71 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 18 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 24 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 65 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar (14 kB at 23 kB/s) -[INFO] Tests are skipped. -[INFO] -[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom (4.5 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom (2.8 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom (1.7 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom (2.7 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 kB at 248 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom (1.0 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (38 kB at 379 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar (60 kB at 605 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar (184 kB at 1.7 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar (22 kB at 190 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar (58 kB at 432 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar (208 kB at 1.1 MB/s) -[INFO] Building jar: /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar -[INFO] -[INFO] --- maven-install-plugin:2.4:install (default-install) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom (2.5 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom (19 kB at 252 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom (1.1 kB at 8.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom (5.0 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom (7.3 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar (230 kB at 3.0 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar (12 kB at 95 kB/s) -[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.jar -[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/pom.xml to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.pom -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 01:11 min -[INFO] Finished at: 2025-10-02T21:49:48Z -[INFO] ------------------------------------------------------------------------ -[INFO] Scanning for projects... -[INFO] -[INFO] -------------------< edu.uchicago.cs.systems:wasabi >------------------- -[INFO] Building Wasabi Library 1.0.0 -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom (21 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom (31 kB at 260 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar (64 kB at 555 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (3.9 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 kB at 97 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 214 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 kB at 144 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 kB at 220 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom (9.2 kB at 105 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 338 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom (15 kB at 168 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 317 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom (9.8 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom (48 kB at 558 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom (21 kB at 216 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar (66 kB at 677 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom (10 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom (14 kB at 115 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar (30 kB at 224 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom (5.8 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar (34 kB at 318 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom (6.4 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar (27 kB at 275 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom (2.0 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom (1.1 kB at 9.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom (17 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom (1.6 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 211 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 8.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom (16 kB at 157 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 950 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom (26 kB at 241 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom (24 kB at 276 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom (3.2 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom (5.6 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom (1.7 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom (2.8 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom (1.5 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.pom (43 kB at 581 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.5/hadoop-project-dist-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.5/hadoop-project-dist-3.3.5.pom (18 kB at 194 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.5/hadoop-project-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.5/hadoop-project-3.3.5.pom (95 kB at 1.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.5/hadoop-main-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.5/hadoop-main-3.3.5.pom (29 kB at 317 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom (3.0 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom (16 kB at 174 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 194 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.pom (2.6 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom (3.0 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom (8.1 kB at 96 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom (10 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 83 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom (1.7 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 127 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom (2.5 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (2.8 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom (2.6 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom (8.6 kB at 93 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (34 kB at 378 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8.0 kB at 91 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 316 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom (14 kB at 197 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom (47 kB at 459 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 150 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 79 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 167 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 324 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 133 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 164 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 528 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 173 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 179 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 849 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 203 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 195 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 236 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 193 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.pom (24 kB at 289 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom (82 kB at 881 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom (20 kB at 234 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 139 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 712 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 164 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 139 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom (4.6 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom (18 kB at 258 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.pom (3.4 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.48.v20220622/jetty-project-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.48.v20220622/jetty-project-9.4.48.v20220622.pom (72 kB at 692 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom (7.2 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom (19 kB at 211 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom (13 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom (66 kB at 731 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.pom (4.0 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.pom (4.0 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.pom (1.2 kB at 8.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.pom (2.3 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.pom (2.1 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.pom (1.3 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.pom (3.2 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.pom (1.7 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom (157 B at 1.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.pom (9.7 kB at 86 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19.4/jersey-project-1.19.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19.4/jersey-project-1.19.4.pom (28 kB at 248 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom (7.8 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom (5.5 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.pom (9.6 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.pom (11 kB at 103 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.pom (13 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom (3.4 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom (5.3 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom (5.6 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom (962 B at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom (1.1 kB at 8.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 170 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 401 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.pom (16 kB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 188 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 982 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 209 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.pom (31 kB at 349 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/53/commons-parent-53.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/53/commons-parent-53.pom (82 kB at 956 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom (20 kB at 229 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom (17 kB at 124 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom (78 kB at 886 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 258 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom (21 kB at 231 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 170 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.pom (1.2 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.19/reload4j-1.2.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.19/reload4j-1.2.19.pom (16 kB at 207 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom (5.6 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom (19 kB at 216 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom (9.6 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom (1.3 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom (1.5 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom (1.6 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom (11 kB at 94 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom (3.4 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom (13 kB at 125 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom (11 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom (1.9 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom (2.7 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom (12 kB at 84 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom (3.6 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom (8.4 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom (8.1 kB at 79 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom (4.5 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.pom (8.6 kB at 109 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom (11 kB at 106 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom (5.4 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom (8.2 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom (9.9 kB at 106 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom (2.4 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom (9.2 kB at 103 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom (28 kB at 298 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom (5.7 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom (1.9 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom (6.8 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 kB at 185 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom (3.5 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom (36 kB at 357 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom (4.6 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom (1.5 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom (1.7 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom (15 kB at 189 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom (2.2 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom (1.5 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom (1.3 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 150 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom (1.3 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom (2.0 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom (1.1 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom (1.2 kB at 6.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom (1.7 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom (1.5 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 166 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom (1.8 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom (1.5 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom (1.2 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom (14 kB at 146 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom (491 B at 5.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom (2.0 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom (8.5 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom (1.2 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 kB at 105 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 kB at 627 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom (1.7 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom (1.7 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom (1.5 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom (1.1 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom (3.2 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom (4.8 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom (3.5 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom (3.4 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom (60 kB at 390 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom (10 kB at 106 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom (1.6 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom (1.9 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom (1.6 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom (3.6 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom (16 kB at 136 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom (16 kB at 190 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom (1.1 kB at 9.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 253 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 201 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.pom (15 kB at 134 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom (9.3 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom (17 kB at 203 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom (7.5 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom (23 kB at 251 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom (6.0 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom (5.5 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 303 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.pom (9.7 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom (23 kB at 208 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom (6.3 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 kB at 256 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom (7.2 kB at 90 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom (3.5 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar (123 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar (63 kB at 411 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar (15 kB at 92 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 2.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 237 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar (361 kB at 1.8 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar (194 kB at 717 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar (7.7 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar (6.8 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar (100 kB at 345 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar (1.5 MB at 3.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar (4.9 MB at 12 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.5/hadoop-annotations-3.3.5.jar (25 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.5/hadoop-common-3.3.5.jar (4.5 MB at 9.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar (3.7 kB at 7.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (2.2 kB at 4.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar (2.7 MB at 5.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar (3.4 MB at 5.8 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar (193 kB at 330 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (8.8 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar (41 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar (3.4 kB at 5.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar (329 kB at 468 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar (1.6 MB at 2.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.9.0/commons-net-3.9.0.jar (316 kB at 417 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.jar (285 kB at 362 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (96 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar (44 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 699 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.48.v20220622/jetty-server-9.4.48.v20220622.jar (732 kB at 822 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.48.v20220622/jetty-io-9.4.48.v20220622.jar (183 kB at 202 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.48.v20220622/jetty-http-9.4.48.v20220622.jar (235 kB at 255 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.48.v20220622/jetty-util-9.4.48.v20220622.jar (583 kB at 618 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.48.v20220622/jetty-servlet-9.4.48.v20220622.jar (146 kB at 154 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.48.v20220622/jetty-webapp-9.4.48.v20220622.jar (140 kB at 138 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.48.v20220622/jetty-util-ajax-9.4.48.v20220622.jar (67 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.48.v20220622/jetty-security-9.4.48.v20220622.jar (119 kB at 115 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.48.v20220622/jetty-xml-9.4.48.v20220622.jar (68 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar (101 kB at 96 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.jar (68 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar (46 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19.4/jersey-servlet-1.19.4.jar (129 kB at 113 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/pjfanning/jersey-json/1.20/jersey-json-1.20.jar (159 kB at 139 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19.4/jersey-core-1.19.4.jar (437 kB at 377 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar (23 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar (890 kB at 709 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.jar (105 kB at 83 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19.4/jersey-server-1.19.4.jar (705 kB at 550 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar (62 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.jar (63 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.22/reload4j-1.2.22.jar (332 kB at 243 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 178 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.8.0/commons-configuration2-2.8.0.jar (633 kB at 448 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar (587 kB at 416 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar (238 kB at 162 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar (9.8 kB at 6.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar (232 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar (436 kB at 284 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar (781 kB at 505 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar (30 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar (128 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar (533 kB at 328 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar (249 kB at 153 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.5/hadoop-auth-3.3.5.jar (106 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar (4.7 kB at 2.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar (29 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar (119 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar (444 kB at 250 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar (20 kB at 11 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.jar (122 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar (113 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar (324 kB at 178 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar (31 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar (116 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar (19 kB at 9.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar (65 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar (37 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar (81 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar (29 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar (83 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar (20 kB at 9.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar (283 kB at 139 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 9.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar (296 kB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.jar (250 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar (20 kB at 9.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.jar (985 kB at 452 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.jar (437 kB at 196 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.jar (604 kB at 267 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar (3.0 MB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.jar (473 kB at 208 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.jar (277 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.jar (33 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.jar (124 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.jar (318 kB at 135 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.jar (33 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar (12 kB at 5.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar (490 kB at 201 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar (205 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar (1.0 MB at 407 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar (102 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar (227 kB at 90 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar (41 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar (366 kB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar (196 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.4.0/woodstox-core-5.4.0.jar (523 kB at 197 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar (76 kB at 28 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar (1.5 MB at 557 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar (308 kB at 113 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.jar (2.0 MB at 666 kB/s) -[INFO] -[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 181 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom (4.1 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 kB at 137 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar (226 kB at 2.1 MB/s) -[INFO] Deleting /home/cc/sosp24-ae/wasabi/wasabi-testing/target -[INFO] -[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (2.6 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2.0 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3.0 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 97 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 5.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 94 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2.0 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (2.6 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (1.9 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (1.9 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (6.7 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom (1.9 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (1.8 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (1.4 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 4.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (3.9 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (1.7 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (2.1 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom (2.0 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom (1.3 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 175 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom (5.8 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 90 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 104 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 143 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom (889 B at 9.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (2.9 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3.0 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5.0 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 83 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom (890 B at 9.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom (2.8 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 161 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar (116 kB at 1.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar (152 kB at 1.8 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar (57 kB at 601 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar (29 kB at 230 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar (35 kB at 257 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar (21 kB at 131 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar (9.9 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar (5.9 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar (24 kB at 125 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 kB at 127 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar (37 kB at 151 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar (14 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 136 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar (49 kB at 150 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar (87 kB at 262 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar (86 kB at 242 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar (10 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 479 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar (223 kB at 526 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 268 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar (43 kB at 94 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (6.8 kB at 14 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar (61 kB at 122 kB/s) -[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! -[INFO] Copying 220 resources -[INFO] Copying 9 resources -[INFO] -[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 451 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 343 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 8.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 175 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom (5.0 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom (4.1 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 314 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom (2.4 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 139 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 180 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom (1.1 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom (8.4 kB at 112 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom (2.7 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom (1.1 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 8.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 238 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom (1.2 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom (1.3 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar (55 kB at 728 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 1.6 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 1.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar (122 kB at 688 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 1.7 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar (27 kB at 122 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar (23 kB at 87 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar (4.7 kB at 15 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar (267 kB at 772 kB/s) -[INFO] Changes detected - recompiling the module! :dependency -[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! -[INFO] Compiling 9 source files with javac [debug target 1.8] to target/classes -[INFO] -[INFO] --- aspectj-maven-plugin:1.13:compile (default) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom (2.3 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 203 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 199 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 136 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 290 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom (3.0 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom (26 kB at 213 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 508 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom (4.1 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom (5.3 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom (2.4 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 268 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom (4.2 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom (14 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 150 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 9.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 7.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom (2.6 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom (14 kB at 147 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 209 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 114 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 93 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom (4.6 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom (3.4 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom (1.4 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom (1.9 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom (2.5 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom (8.8 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom (1.9 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 206 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 289 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 132 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 114 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 6.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom (4.3 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom (2.6 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom (19 kB at 173 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom (2.7 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom (2.8 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom (4.2 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom (3.8 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom (14 kB at 145 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 498 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom (11 kB at 97 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom (16 kB at 163 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 5.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom (7.8 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom (10 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom (4.2 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom (1.8 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom (5.1 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (2.5 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (4.4 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 196 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 6.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom (1.9 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom (21 kB at 220 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom (1.6 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom (18 kB at 192 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom (1.6 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom (3.0 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5.1 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 269 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 110 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 205 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (18 kB at 175 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom (7.7 kB at 84 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom (14 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom (4.5 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 609 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 201 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 110 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom (3.4 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 7.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom (3.0 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom (2.0 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom (2.7 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom (2.0 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 228 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 104 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 190 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 1.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 1.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 1.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 5.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 1.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 6.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 1.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 1.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 102 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom (7.6 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 7.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (4.9 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom (1.5 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom (15 kB at 153 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (41 kB at 342 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom (3.4 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom (14 kB at 156 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom (748 B at 7.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom (3.8 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom (22 kB at 231 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (3.8 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom (4.1 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom (4.9 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom (9.4 kB at 111 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom (13 kB at 137 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom (3.0 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom (6.7 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom (3.0 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom (1.6 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom (2.6 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 7.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (156 B at 1.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom (9.0 kB at 91 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom (5.3 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom (653 B at 7.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom (4.3 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom (9.8 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom (12 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom (3.4 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom (145 B at 1.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom (3.1 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom (2.9 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar (215 kB at 2.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar (11 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar (47 kB at 354 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 1.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar (58 kB at 301 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 211 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar (205 kB at 831 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 180 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar (379 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar (288 kB at 803 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 6.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar (192 kB at 464 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar (14 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar (44 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar (42 kB at 93 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar (38 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar (634 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar (15 MB at 26 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 7.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar (14 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar (521 kB at 785 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar (32 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar (2.6 MB at 3.8 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (3.5 kB at 5.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar (66 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar (27 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar (149 kB at 190 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar (169 kB at 203 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar (180 kB at 212 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar (41 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar (4.2 kB at 4.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar (55 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar (12 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar (12 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar (218 kB at 221 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar (65 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar (183 kB at 179 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 314 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar (16 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 300 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar (17 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar (60 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar (18 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 6.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar (237 kB at 197 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 205 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 112 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 350 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 265 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 362 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar (53 kB at 38 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar (18 kB at 13 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 325 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 141 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar (165 kB at 112 kB/s) -[INFO] Showing AJC message detail for messages of types: [error, warning, fail] -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.Balancer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:175 -(withincode(* org.apache.hadoop.hdfs.server.balancer.Balancer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.Balancer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:176 -call(* org.apache.hadoop.hdfs.server.balancer.Balancer.doBalance(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:178 -call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:180 -call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.scanAndCollectFiles(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:182 -call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.removeSPSHint(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:183 -(withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:184 -call(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.getInternal(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.tools.CLI [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:185 -(withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.Cluster [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:186 -call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.tools.CLI [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:187 -(withincode(* org.apache.hadoop.mapreduce.tools.CLI.getJob(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.Cluster [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:188 -call(* org.apache.hadoop.mapreduce.Cluster.getJob(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:191 -(withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:192 -call(* org.apache.hadoop.mapred.ClientServiceDelegate.getProxy(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:193 -(withincode(* org.apache.hadoop.fs.azurebfs.oauth2.CustomTokenProviderAdapter.refreshToken(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:194 -call(* org.apache.hadoop.fs.azurebfs.extensions.CustomTokenProviderAdaptee.getAccessToken(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:195 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.transfer(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:197 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:199 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:201 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.Sender [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:202 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.writeBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:203 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:205 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:206 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:207 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:208 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.DataTransferProtoUtil.checkBlockOpStatus(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiverServer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:209 -(withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiver [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:210 -call(* org.apache.hadoop.hdfs.server.datanode.DataXceiver.create(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DistributedFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:212 -call(* org.apache.hadoop.hdfs.DistributedFileSystem.recoverLease(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:213 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:214 -call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:215 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.actualGetFromOneDataNode(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:217 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:218 -call(* org.apache.hadoop.hdfs.DFSInputStream.getLastBlockLength(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:219 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSUtilClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:220 -call(* org.apache.hadoop.hdfs.DFSUtilClient.createClientDatanodeProtocolProxy(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:221 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:222 -call(* org.apache.hadoop.hdfs.protocol.ClientDatanodeProtocol.getReplicaVisibleLength(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:223 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:224 -call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockAt(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:225 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:226 -call(* org.apache.hadoop.hdfs.DFSInputStream.chooseDataNode(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:227 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:228 -call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:229 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.ReaderStrategy [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:230 -call(* org.apache.hadoop.hdfs.ReaderStrategy.readFromBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:231 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:232 -call(* org.apache.hadoop.hdfs.DFSInputStream.seekToBlockSource(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:233 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:234 -call(* org.apache.hadoop.hdfs.DFSInputStream.seekToNewSource(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:235 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:236 -call(* org.apache.hadoop.hdfs.DFSInputStream.blockSeekTo(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:237 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readWithStrategy(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:238 -call(* org.apache.hadoop.hdfs.DFSInputStream.readBuffer(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:239 -(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.addBlock(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:240 -call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:241 -(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.newStreamForCreate(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:242 -call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.create(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSOutputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:243 -(withincode(* org.apache.hadoop.hdfs.DFSOutputStream.completeFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:244 -call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.complete(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:245 -(withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:246 -call(* org.apache.hadoop.hdfs.DFSStripedInputStream.refreshLocatedBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSStripedInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:247 -(withincode(* org.apache.hadoop.hdfs.DFSStripedInputStream.createBlockReader(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:248 -call(* org.apache.hadoop.hdfs.DFSInputStream.getBlockReader(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.EventFetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:249 -(withincode(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.EventFetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:250 -call(* org.apache.hadoop.mapreduce.task.reduce.EventFetcher.getMapCompletionEvents(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.balancer.KeyManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:252 -call(* org.apache.hadoop.hdfs.server.balancer.KeyManager.getAccessToken(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:254 -call(* org.apache.hadoop.hdfs.server.common.sps.BlockDispatcher.moveBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:255 -(withincode(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.runWithRetries(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:256 -call(* org.apache.hadoop.yarn.server.federation.retry.FederationActionRetry.run(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:257 -(withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyFromHost(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:258 -call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.copyMapOutput(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:263 -(withincode(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJob(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:264 -call(* org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter.commitJobInternal(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.JobClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:271 -(withincode(* org.apache.hadoop.mapred.JobClient.getJob(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.JobClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:272 -call(* org.apache.hadoop.mapred.JobClient.getJobInner(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.JobEndNotifier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:273 -(withincode(* org.apache.hadoop.mapred.JobEndNotifier.localRunnerNotification(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.JobEndNotifier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:274 -call(* org.apache.hadoop.mapred.JobEndNotifier.httpNotification(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.client.impl.LeaseRenewer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:275 -(withincode(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.client.impl.LeaseRenewer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:276 -call(* org.apache.hadoop.hdfs.client.impl.LeaseRenewer.renew(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNativeFileSystemStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:281 -(withincode(* org.apache.hadoop.fs.cosn.CosNativeFileSystemStore.callCOSClientWithRetry(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:283 -(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:285 -(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.NativeFileSystemStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:286 -call(* org.apache.hadoop.fs.cosn.NativeFileSystemStore.retrieveBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.cosn.CosNFileReadTask [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:287 -(withincode(* org.apache.hadoop.fs.cosn.CosNFileReadTask.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:289 -(withincode(* org.apache.hadoop.fs.obs.OBSFileSystem.getFileStatus(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:290 -call(* org.apache.hadoop.fs.obs.OBSFileSystem.innerGetFileStatus(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:291 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:292 -call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:293 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.lazySeek(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:294 -call(* org.apache.hadoop.fs.obs.OBSInputStream.seekInStream(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:295 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:297 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.onReadFailure(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:298 -call(* org.apache.hadoop.fs.obs.OBSInputStream.reopen(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:299 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:300 -call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:301 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.read(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:302 -call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:303 -(withincode(* org.apache.hadoop.fs.obs.OBSInputStream.randomReadWithNewInputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:304 -call(* org.apache.hadoop.fs.obs.OBSInputStream.tryToReadFromInputStream(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:305 -(withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.createEmptyObject(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:306 -call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCreateEmptyObject(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:307 -(withincode(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.copyFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSObjectBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:308 -call(* org.apache.hadoop.fs.obs.OBSObjectBucketUtils.innerCopyFile(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:309 -(withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:310 -call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.CachingBlockManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:311 -(withincode(* org.apache.hadoop.fs.impl.prefetch.CachingBlockManager.get(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.impl.prefetch.BufferPool [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:312 -call(* org.apache.hadoop.fs.impl.prefetch.BufferPool.acquire(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:345 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:346 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.BlockConstructionStage.getRecoveryStage(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:347 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:348 -call(* org.apache.hadoop.hdfs.DFSInputStream.fetchAndCheckLocatedBlocks(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:349 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.openInfo(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:350 -call(* org.apache.hadoop.hdfs.DFSInputStream.waitFor(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSInputStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:351 -(withincode(* org.apache.hadoop.hdfs.DFSInputStream.readBlockLength(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:356 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:361 -(withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionHandler.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:363 -(withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:365 -(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:367 -(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.YarnChild [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:369 -(withincode(* org.apache.hadoop.mapred.YarnChild.main(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:370 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.getTask(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.ClientServiceDelegate [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:371 -(withincode(* org.apache.hadoop.mapred.ClientServiceDelegate.invoke(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:373 -(withincode(* org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileReaderTask.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.s3a.Invoker [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:375 -(withincode(* org.apache.hadoop.fs.s3a.Invoker.retryUntranslated(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:377 -(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:379 -(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockRequestInternal(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.BlockBlobAppendStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:381 -(withincode(* org.apache.hadoop.fs.azure.BlockBlobAppendStream.writeBlockListRequestInternal(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:383 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:385 -(withincode(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenCall(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:386 -call(* org.apache.hadoop.fs.azurebfs.oauth2.AzureADAuthenticator.getTokenSingleCall(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:389 -(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:391 -(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:393 -(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForAndGetNameNodeProperties(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:395 -(withincode(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.waitForNameNodeJMXValue(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.dynamometer.DynoInfraUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:396 -call(* org.apache.hadoop.tools.dynamometer.DynoInfraUtils.fetchNameNodeJMXValue(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:417 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:419 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:421 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:423 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:425 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:426 -call(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.deleteFileWithRetries(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:429 -(withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.submitReservation(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:430 -call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.submitReservation(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:431 -(withincode(* org.apache.hadoop.yarn.server.router.clientrm.FederationClientInterceptor.getNewReservation(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:432 -call(* org.apache.hadoop.yarn.api.ApplicationClientProtocol.getNewReservation(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:433 -(withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.utils.BuilderUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:434 -call(* org.apache.hadoop.yarn.server.utils.BuilderUtils.newContainerTokenIdentifier(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:435 -(withincode(* org.apache.hadoop.yarn.server.nodemanager.recovery.NMLeveldbStateStoreService.loadContainerState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:439 -(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:440 -call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.shouldCheckpointBasedOnCount(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:441 -(withincode(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doWork(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:442 -call(* org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode.doCheckpoint(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.util.DistCpUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:444 -call(* org.apache.hadoop.tools.util.DistCpUtils.toCopyListingFileStatus(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.SimpleCopyListing [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:446 -call(* org.apache.hadoop.tools.SimpleCopyListing.addToFileListing(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.SimpleCopyListing [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:448 -call(* org.apache.hadoop.tools.SimpleCopyListing.writeToFileListing(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:449 -(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.Context [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:450 -call(* org.apache.hadoop.hdfs.server.namenode.sps.Context.getFileInfo(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:451 -(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:452 -call(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.analyseBlocksStorageMovementsAndAssignToDN(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:453 -(withincode(* org.apache.hadoop.hdfs.server.namenode.sps.StoragePolicySatisfier.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:454 -call(* org.apache.hadoop.hdfs.server.namenode.sps.BlockStorageMovementNeeded.removeItemTrackInfo(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:455 -(withincode(* org.apache.hadoop.mapred.Task.done(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:456 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.commitPending(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:457 -(withincode(* org.apache.hadoop.mapred.Task.statusUpdate(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:458 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:459 -(withincode(* org.apache.hadoop.mapred.Task.sendDone(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:460 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.done(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.Task [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:461 -(withincode(* org.apache.hadoop.mapred.Task.commit(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:462 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.canCommit(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:464 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapred.TaskUmbilicalProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:466 -call(* org.apache.hadoop.mapred.TaskUmbilicalProtocol.statusUpdate(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:467 -(withincode(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:468 -call(* org.apache.hadoop.yarn.client.api.impl.TimelineV2ClientImpl.putObjects(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:469 -(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:470 -call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:471 -(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:472 -call(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.getApplicationReport(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:473 -(withincode(* org.apache.hadoop.yarn.server.uam.UnmanagedApplicationManager.monitorCurrentAppAttempt(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.api.ApplicationBaseProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:474 -call(* org.apache.hadoop.yarn.api.ApplicationBaseProtocol.getApplicationAttemptReport(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DFSClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:483 -(withincode(* org.apache.hadoop.hdfs.DFSClient.renewLease(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:487 -(withincode(* org.apache.hadoop.hdfs.server.sps.ExternalStoragePolicySatisfier.getNameNodeConnector(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:489 -(withincode(* org.apache.hadoop.hdfs.protocol.CacheDirectiveIterator.makeRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:491 -(withincode(* org.apache.hadoop.mapreduce.v2.app.local.LocalContainerAllocator.heartbeat(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:493 -(withincode(* org.apache.hadoop.yarn.server.resourcemanager.security.DelegationTokenRenewer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.server.AMRMClientRelayer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:495 -(withincode(* org.apache.hadoop.yarn.server.AMRMClientRelayer.allocate(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: CreateOutputDirectoriesStage [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:497 -(withincode(* CreateOutputDirectoriesStage.maybeCreateOneDirectory(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.BPServiceActor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:559 -((withincode(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.BPServiceActor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:560 -call(* org.apache.hadoop.hdfs.server.datanode.BPServiceActor.connectToNNAndHandshake(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:583 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:584 -call(* org.apache.hadoop.hdfs.DataStreamer.createSocketForPipeline(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:585 -(withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:586 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferClient.socketSend(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: java.io [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:589 -(withincode(* java.io.IOException(..)) && - ^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:590 -call(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.openConnection(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.mapreduce.task.reduce.Fetcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:591 -(withincode(* org.apache.hadoop.mapreduce.task.reduce.Fetcher.connect(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.datatransfer.Sender [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:600 -call(* org.apache.hadoop.hdfs.protocol.datatransfer.Sender.releaseShortCircuitFds(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:603 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:604 -call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:605 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:606 -call(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.getHttpRequest(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:607 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.azure.WasbRemoteCallHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:609 -(withincode(* org.apache.hadoop.fs.azure.WasbRemoteCallHelper.retryableRequest(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.util.RetriableCommand [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:611 -(withincode(* org.apache.hadoop.tools.util.RetriableCommand.execute(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.tools.util.RetriableCommand [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:612 -call(* org.apache.hadoop.tools.util.RetriableCommand.doExecute(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.datanode.DataXceiverServer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:743 -((withincode(* org.apache.hadoop.hdfs.server.datanode.DataXceiverServer.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.net.PeerServer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:744 -call(* org.apache.hadoop.hdfs.net.PeerServer.accept(..) throws *Exception*))) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSCommonUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:803 -((withincode(* org.apache.hadoop.fs.obs.OBSCommonUtils.isFolderEmpty(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSCommonUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:804 -call(* org.apache.hadoop.fs.obs.OBSCommonUtils.innerIsFolderEmpty(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:805 -(withincode(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameWithRetry(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.fs.obs.OBSPosixBucketUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:806 -call(* org.apache.hadoop.fs.obs.OBSPosixBucketUtils.innerFsRenameFile(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:807 -(withincode(* org.apache.hadoop.yarn.logaggregation.filecontroller.ifile.LogAggregationIndexedFileController.loadUUIDFromLogFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.DataStreamer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:867 -((withincode(* org.apache.hadoop.hdfs.DataStreamer.createBlockOutputStream(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:868 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:870 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:929 -((withincode(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.takeAndProcessTasks(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:930 -call(* org.apache.hadoop.hdfs.server.namenode.ReencryptionUpdater.processTask(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocolPB.PBHelperClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:932 -call(* org.apache.hadoop.hdfs.protocolPB.PBHelperClient.vintPrefixed(..) throws *Exception*))) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:935 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:873 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:811 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:747 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:687 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:625 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:503 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:136 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:94 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:77 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHadoop has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHadoop.aj:59 - -[INFO] -[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ wasabi --- -[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! -[INFO] skip non existing resourceDirectory /home/cc/sosp24-ae/wasabi/wasabi-testing/src/test/resources -[INFO] -[INFO] --- aspectj-maven-plugin:1.13:test-compile (default) @ wasabi --- -[WARNING] No sources found skipping aspectJ compile -[INFO] -[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (1.5 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 kB at 236 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 kB at 302 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom (3.0 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom (2.5 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom (5.5 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom (1.6 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom (16 kB at 188 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (1.6 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 191 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (2.7 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (2.1 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (3.1 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (2.0 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (2.7 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (1.9 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2.0 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (7.8 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2.0 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (1.8 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (1.5 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (1.7 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (2.1 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (1.3 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom (3.5 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom (17 kB at 176 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom (42 kB at 493 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom (3.7 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 110 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 276 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 170 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar (263 kB at 2.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar (35 kB at 310 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar (118 kB at 980 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar (316 kB at 2.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar (31 kB at 198 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar (232 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 383 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 520 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 210 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 147 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 307 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 93 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 493 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 168 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar (10 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 59 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 24 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 85 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar (14 kB at 28 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar (38 kB at 70 kB/s) -[INFO] Tests are skipped. -[INFO] -[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom (4.5 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom (2.8 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom (1.7 kB at 6.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom (2.7 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 kB at 133 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom (1.0 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 79 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar (22 kB at 287 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar (60 kB at 695 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar (184 kB at 2.0 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar (58 kB at 589 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (38 kB at 321 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar (208 kB at 1.2 MB/s) -[INFO] Building jar: /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar -[INFO] -[INFO] --- maven-install-plugin:2.4:install (default-install) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom (2.5 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom (19 kB at 151 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom (1.1 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom (5.0 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom (7.3 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar (12 kB at 89 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar (230 kB at 1.5 MB/s) -[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.jar -[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/pom.xml to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.pom -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 01:10 min -[INFO] Finished at: 2025-10-02T22:53:24Z -[INFO] ------------------------------------------------------------------------ -[INFO] Scanning for projects... -[INFO] -[INFO] -------------------< edu.uchicago.cs.systems:wasabi >------------------- -[INFO] Building Wasabi Library 1.0.0 -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom (21 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom (31 kB at 251 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar (64 kB at 510 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (3.9 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 kB at 145 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 283 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 kB at 197 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 kB at 192 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom (9.2 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 266 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom (15 kB at 168 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 317 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom (9.8 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 105 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom (48 kB at 545 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom (21 kB at 203 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar (66 kB at 684 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom (10 kB at 142 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom (14 kB at 138 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar (30 kB at 350 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom (5.8 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar (34 kB at 436 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom (6.4 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar (27 kB at 225 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom (2.0 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom (1.1 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom (17 kB at 150 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom (1.6 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 273 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 5.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom (16 kB at 186 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 908 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom (26 kB at 274 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom (24 kB at 261 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-client/3.0.0-beta-1/hbase-client-3.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-client/3.0.0-beta-1/hbase-client-3.0.0-beta-1.pom (28 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-protobuf/4.1.5/hbase-shaded-protobuf-4.1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-protobuf/4.1.5/hbase-shaded-protobuf-4.1.5.pom (4.4 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-common/3.0.0-beta-1/hbase-common-3.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-common/3.0.0-beta-1/hbase-common-3.0.0-beta-1.pom (26 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-logging/3.0.0-beta-1/hbase-logging-3.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-logging/3.0.0-beta-1/hbase-logging-3.0.0-beta-1.pom (22 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 147 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.pom (2.8 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.13.0/yetus-project-0.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.13.0/yetus-project-0.13.0.pom (11 kB at 153 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 211 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-miscellaneous/4.1.5/hbase-shaded-miscellaneous-4.1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-miscellaneous/4.1.5/hbase-shaded-miscellaneous-4.1.5.pom (4.8 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom (1.8 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom (13 kB at 180 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-gson/4.1.5/hbase-shaded-gson-4.1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-gson/4.1.5/hbase-shaded-gson-4.1.5.pom (4.4 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-netty/4.1.5/hbase-shaded-netty-4.1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-netty/4.1.5/hbase-shaded-netty-4.1.5.pom (4.4 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-unsafe/4.1.5/hbase-unsafe-4.1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-unsafe/4.1.5/hbase-unsafe-4.1.5.pom (4.5 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 188 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 852 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 190 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.pom (28 kB at 322 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom (72 kB at 868 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom (20 kB at 203 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.7/commons-validator-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.7/commons-validator-1.7.pom (14 kB at 168 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom (78 kB at 962 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 207 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 946 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 229 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 523 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 179 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 165 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 738 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 214 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/2.1/commons-digester-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/2.1/commons-digester-2.1.pom (10 kB at 115 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom (31 kB at 321 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 115 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api/1.15.0/opentelemetry-api-1.15.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api/1.15.0/opentelemetry-api-1.15.0.pom (1.8 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-context/1.15.0/opentelemetry-context-1.15.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-context/1.15.0/opentelemetry-context-1.15.0.pom (1.6 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-semconv/1.15.0-alpha/opentelemetry-semconv-1.15.0-alpha.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-semconv/1.15.0-alpha/opentelemetry-semconv-1.15.0-alpha.pom (1.8 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-crypto/1.1.0/commons-crypto-1.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-crypto/1.1.0/commons-crypto-1.1.0.pom (25 kB at 309 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.2.4/hadoop-common-3.2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.2.4/hadoop-common-3.2.4.pom (45 kB at 525 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.2.4/hadoop-project-dist-3.2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.2.4/hadoop-project-dist-3.2.4.pom (18 kB at 178 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.2.4/hadoop-project-3.2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.2.4/hadoop-project-3.2.4.pom (78 kB at 947 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.2.4/hadoop-main-3.2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.2.4/hadoop-main-3.2.4.pom (27 kB at 323 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.2.4/hadoop-annotations-3.2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.2.4/hadoop-annotations-3.2.4.pom (2.6 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom (8.1 kB at 92 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom (10 kB at 140 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 83 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom (1.7 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom (2.5 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.pom (1.8 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.2.0/error_prone_parent-2.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.2.0/error_prone_parent-2.2.0.pom (5.1 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (2.8 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom (2.6 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom (8.6 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (34 kB at 354 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8.0 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 280 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom (14 kB at 171 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom (47 kB at 446 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 127 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 84 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 150 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 390 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 113 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 175 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 809 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 212 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 219 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.pom (22 kB at 260 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom (4.9 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.0/all-1.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.0/all-1.2.0.pom (18 kB at 222 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom (4.7 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.43.v20210629/jetty-server-9.4.43.v20210629.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.43.v20210629/jetty-server-9.4.43.v20210629.pom (2.5 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.43.v20210629/jetty-project-9.4.43.v20210629.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.43.v20210629/jetty-project-9.4.43.v20210629.pom (63 kB at 893 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.43.v20210629/jetty-http-9.4.43.v20210629.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.43.v20210629/jetty-http-9.4.43.v20210629.pom (4.0 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.43.v20210629/jetty-util-9.4.43.v20210629.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.43.v20210629/jetty-util-9.4.43.v20210629.pom (3.9 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.43.v20210629/jetty-io-9.4.43.v20210629.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.43.v20210629/jetty-io-9.4.43.v20210629.pom (1.2 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.43.v20210629/jetty-servlet-9.4.43.v20210629.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.43.v20210629/jetty-servlet-9.4.43.v20210629.pom (2.3 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.43.v20210629/jetty-security-9.4.43.v20210629.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.43.v20210629/jetty-security-9.4.43.v20210629.pom (2.1 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.43.v20210629/jetty-util-ajax-9.4.43.v20210629.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.43.v20210629/jetty-util-ajax-9.4.43.v20210629.pom (1.3 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.43.v20210629/jetty-webapp-9.4.43.v20210629.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.43.v20210629/jetty-webapp-9.4.43.v20210629.pom (3.2 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.43.v20210629/jetty-xml-9.4.43.v20210629.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.43.v20210629/jetty-xml-9.4.43.v20210629.pom (1.7 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 224 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 563 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.pom (23 kB at 249 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/41/commons-parent-41.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/41/commons-parent-41.pom (65 kB at 648 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 316 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.pom (16 kB at 191 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/46/commons-parent-46.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/46/commons-parent-46.pom (75 kB at 988 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.35/slf4j-api-1.7.35.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.35/slf4j-api-1.7.35.pom (3.8 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.35/slf4j-parent-1.7.35.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.35/slf4j-parent-1.7.35.pom (14 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom (5.6 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom (19 kB at 170 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom (9.6 kB at 132 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom (1.6 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom (11 kB at 136 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom (3.4 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom (13 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom (11 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom (1.9 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom (2.7 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom (12 kB at 131 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom (3.6 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom (8.4 kB at 83 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom (8.1 kB at 91 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom (4.5 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.2.4/hadoop-auth-3.2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.2.4/hadoop-auth-3.2.4.pom (8.4 kB at 109 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom (11 kB at 127 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom (5.4 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.7/json-smart-2.4.7.pom (8.2 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.pom (9.9 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.1/asm-9.1.pom (2.4 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 134 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.14/zookeeper-3.4.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.14/zookeeper-3.4.14.pom (16 kB at 175 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 155 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/spotbugs/spotbugs-annotations/3.1.9/spotbugs-annotations-3.1.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/spotbugs/spotbugs-annotations/3.1.9/spotbugs-annotations-3.1.9.pom (2.5 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom (1.9 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom (6.8 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 kB at 206 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.10.6.Final/netty-3.10.6.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.10.6.Final/netty-3.10.6.Final.pom (29 kB at 390 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.13.0/curator-framework-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.13.0/curator-framework-2.13.0.pom (2.5 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.13.0/apache-curator-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.13.0/apache-curator-2.13.0.pom (32 kB at 399 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.13.0/curator-client-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.13.0/curator-client-2.13.0.pom (4.5 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.pom (4.0 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom (3.0 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom (9.3 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jline/jline/0.9.94/jline-0.9.94.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jline/jline/0.9.94/jline-0.9.94.pom (6.4 kB at 84 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.pom (26 kB at 354 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom (6.1 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom (7.3 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom (2.7 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom (12 kB at 128 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom (1.5 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom (1.7 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom (15 kB at 170 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom (2.2 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom (1.5 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom (1.3 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom (1.3 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom (2.0 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom (1.1 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom (1.2 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom (1.7 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom (1.5 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 187 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom (1.8 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom (1.2 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom (14 kB at 163 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom (491 B at 6.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom (2.0 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom (8.5 kB at 104 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom (1.2 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 kB at 460 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom (1.7 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom (1.7 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom (1.5 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom (1.1 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom (3.2 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom (4.8 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.13.0/curator-recipes-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.13.0/curator-recipes-2.13.0.pom (2.9 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.pom (3.3 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace/4.1.0-incubating/htrace-4.1.0-incubating.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace/4.1.0-incubating/htrace-4.1.0-incubating.pom (14 kB at 138 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 259 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5.1/jackson-databind-2.10.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5.1/jackson-databind-2.10.5.1.pom (7.2 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5.20201202/jackson-base-2.10.5.20201202.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5.20201202/jackson-base-2.10.5.20201202.pom (7.2 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5.20201202/jackson-bom-2.10.5.20201202.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5.20201202/jackson-bom-2.10.5.20201202.pom (13 kB at 146 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom (8.3 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 265 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.5/jackson-annotations-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.5/jackson-annotations-2.10.5.pom (3.4 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.5/jackson-core-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.5/jackson-core-2.10.5.pom (4.6 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5/jackson-base-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5/jackson-base-2.10.5.pom (7.2 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5/jackson-bom-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5/jackson-bom-2.10.5.pom (13 kB at 143 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.3.0/woodstox-core-5.3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.3.0/woodstox-core-5.3.0.pom (9.7 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom (23 kB at 286 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom (6.3 kB at 86 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 kB at 248 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom (7.2 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-hadoop-compat/3.0.0-beta-1/hbase-hadoop-compat-3.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-hadoop-compat/3.0.0-beta-1/hbase-hadoop-compat-3.0.0-beta-1.pom (25 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics/3.0.0-beta-1/hbase-metrics-3.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics/3.0.0-beta-1/hbase-metrics-3.0.0-beta-1.pom (22 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics-api/3.0.0-beta-1/hbase-metrics-api-3.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics-api/3.0.0-beta-1/hbase-metrics-api-3.0.0-beta-1.pom (22 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.2.6/metrics-core-3.2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.2.6/metrics-core-3.2.6.pom (846 B at 9.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.2.6/metrics-parent-3.2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.2.6/metrics-parent-3.2.6.pom (12 kB at 121 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.22/slf4j-api-1.7.22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.22/slf4j-api-1.7.22.pom (2.8 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.22/slf4j-parent-1.7.22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.22/slf4j-parent-1.7.22.pom (14 kB at 165 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-protocol-shaded/3.0.0-beta-1/hbase-protocol-shaded-3.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-protocol-shaded/3.0.0-beta-1/hbase-protocol-shaded-3.0.0-beta-1.pom (22 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.8.3/zookeeper-3.8.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.8.3/zookeeper-3.8.3.pom (12 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.8.3/parent-3.8.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.8.3/parent-3.8.3.pom (42 kB at 338 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.8.3/zookeeper-jute-3.8.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.8.3/zookeeper-jute-3.8.3.pom (6.7 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.pom (2.8 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.12.0/yetus-project-0.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.12.0/yetus-project-0.12.0.pom (12 kB at 161 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.pom (4.6 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.94.Final/netty-parent-4.1.94.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.94.Final/netty-parent-4.1.94.Final.pom (83 kB at 868 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.pom (12 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.pom (1.6 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.pom (1.6 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.pom (2.2 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.pom (29 kB at 334 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.pom (5.3 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.94.Final/netty-transport-native-epoll-4.1.94.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.94.Final/netty-transport-native-epoll-4.1.94.Final.pom (19 kB at 274 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.94.Final/netty-transport-classes-epoll-4.1.94.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.94.Final/netty-transport-classes-epoll-4.1.94.Final.pom (2.1 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jruby/jcodings/jcodings/1.0.57/jcodings-1.0.57.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jruby/jcodings/jcodings/1.0.57/jcodings-1.0.57.pom (5.2 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jruby/joni/joni/2.1.43/joni-2.1.43.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jruby/joni/joni/2.1.43/joni-2.1.43.pom (6.8 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 163 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.pom (9.6 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19/jersey-project-1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19/jersey-project-1.19.pom (25 kB at 307 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom (7.8 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.18.3/reload4j-1.2.18.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.18.3/reload4j-1.2.18.3.pom (16 kB at 142 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.35/slf4j-reload4j-1.7.35.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.35/slf4j-reload4j-1.7.35.pom (1.2 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom (1.3 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom (1.5 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.16/log4j-1.2.16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.16/log4j-1.2.16.pom (20 kB at 282 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom (1.1 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 302 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.pom (3.2 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom (5.6 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom (1.7 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.pom (2.8 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom (1.5 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar (123 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar (63 kB at 379 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 273 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-client/3.0.0-beta-1/hbase-client-3.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar (15 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-protobuf/4.1.5/hbase-shaded-protobuf-4.1.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 1.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-common/3.0.0-beta-1/hbase-common-3.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar (361 kB at 1.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-logging/3.0.0-beta-1/hbase-logging-3.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-protobuf/4.1.5/hbase-shaded-protobuf-4.1.5.jar (1.9 MB at 5.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-gson/4.1.5/hbase-shaded-gson-4.1.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar (4.9 MB at 12 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-unsafe/4.1.5/hbase-unsafe-4.1.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-gson/4.1.5/hbase-shaded-gson-4.1.5.jar (308 kB at 679 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.7/commons-validator-1.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-unsafe/4.1.5/hbase-unsafe-4.1.5.jar (20 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/2.1/commons-digester-2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.7/commons-validator-1.7.jar (190 kB at 347 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-semconv/1.15.0-alpha/opentelemetry-semconv-1.15.0-alpha.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/2.1/commons-digester-2.1.jar (197 kB at 349 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-hadoop-compat/3.0.0-beta-1/hbase-hadoop-compat-3.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-semconv/1.15.0-alpha/opentelemetry-semconv-1.15.0-alpha.jar (29 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics/3.0.0-beta-1/hbase-metrics-3.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-logging/3.0.0-beta-1/hbase-logging-3.0.0-beta-1.jar (15 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics-api/3.0.0-beta-1/hbase-metrics-api-3.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-client/3.0.0-beta-1/hbase-client-3.0.0-beta-1.jar (1.5 MB at 1.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-common/3.0.0-beta-1/hbase-common-3.0.0-beta-1.jar (892 kB at 833 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-protocol-shaded/3.0.0-beta-1/hbase-protocol-shaded-3.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-hadoop-compat/3.0.0-beta-1/hbase-hadoop-compat-3.0.0-beta-1.jar (229 kB at 208 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar (57 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.jar (504 kB at 411 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-miscellaneous/4.1.5/hbase-shaded-miscellaneous-4.1.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar (327 kB at 261 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics/3.0.0-beta-1/hbase-metrics-3.0.0-beta-1.jar (30 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-netty/4.1.5/hbase-shaded-netty-4.1.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-miscellaneous/4.1.5/hbase-shaded-miscellaneous-4.1.5.jar (4.2 MB at 2.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.8.3/zookeeper-3.8.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-metrics-api/3.0.0-beta-1/hbase-metrics-api-3.0.0-beta-1.jar (24 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.8.3/zookeeper-jute-3.8.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.jar (17 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.8.3/zookeeper-jute-3.8.3.jar (255 kB at 165 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/thirdparty/hbase-shaded-netty/4.1.5/hbase-shaded-netty-4.1.5.jar (5.0 MB at 3.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.8.3/zookeeper-3.8.3.jar (1.3 MB at 852 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.jar (555 kB at 353 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.jar (307 kB at 188 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.jar (659 kB at 400 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.jar (38 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.94.Final/netty-transport-native-epoll-4.1.94.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.jar (489 kB at 292 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.94.Final/netty-transport-classes-epoll-4.1.94.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.jar (44 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api/1.15.0/opentelemetry-api-1.15.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.94.Final/netty-transport-native-epoll-4.1.94.Final.jar (5.7 kB at 3.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-context/1.15.0/opentelemetry-context-1.15.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.jar (345 kB at 197 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jruby/jcodings/jcodings/1.0.57/jcodings-1.0.57.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.94.Final/netty-transport-classes-epoll-4.1.94.Final.jar (145 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jruby/joni/joni/2.1.43/joni-2.1.43.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-api/1.15.0/opentelemetry-api-1.15.0.jar (128 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.2.6/metrics-core-3.2.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jruby/jcodings/jcodings/1.0.57/jcodings-1.0.57.jar (1.7 MB at 927 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-crypto/1.1.0/commons-crypto-1.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-context/1.15.0/opentelemetry-context-1.15.0.jar (46 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jruby/joni/joni/2.1.43/joni-2.1.43.jar (214 kB at 113 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.2.4/hadoop-auth-3.2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.2.6/metrics-core-3.2.6.jar (136 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-crypto/1.1.0/commons-crypto-1.1.0.jar (166 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.13.0/audience-annotations-0.13.0.jar (21 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.2.4/hadoop-auth-3.2.4.jar (139 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 385 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.13.0/curator-framework-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.jar (444 kB at 214 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar (329 kB at 158 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar (4.7 kB at 2.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.13.0/curator-framework-2.13.0.jar (202 kB at 95 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar (113 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar (20 kB at 9.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar (31 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar (227 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar (205 kB at 90 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar (102 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar (41 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar (116 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar (37 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar (65 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar (19 kB at 7.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar (81 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.2.4/hadoop-common-3.2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar (83 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.2.4/hadoop-annotations-3.2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar (29 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar (20 kB at 7.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.2.4/hadoop-annotations-3.2.4.jar (61 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hbase/hbase-protocol-shaded/3.0.0-beta-1/hbase-protocol-shaded-3.0.0-beta-1.jar (9.1 MB at 3.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.2.4/hadoop-common-3.2.4.jar (4.2 MB at 1.6 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (2.2 kB at 822 B/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.jar (2.7 MB at 1.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (8.8 kB at 3.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar (193 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.jar (3.7 kB at 1.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.jar (3.4 kB at 1.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar (41 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar (307 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.jar (1.6 MB at 561 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.18.3/reload4j-1.2.18.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (96 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.jar (129 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar (62 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 199 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.35/slf4j-reload4j-1.7.35.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/reload4j/reload4j/1.2.18.3/reload4j-1.2.18.3.jar (358 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.jar (184 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.jar (617 kB at 201 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-reload4j/1.7.35/slf4j-reload4j-1.7.35.jar (9.9 kB at 3.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar (232 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar (781 kB at 249 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar (30 kB at 9.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.jar (436 kB at 138 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar (128 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.13.0/curator-client-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.jar (1.3 MB at 390 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.13.0/curator-recipes-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar (249 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar (533 kB at 164 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.13.0/curator-recipes-2.13.0.jar (284 kB at 86 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar (283 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5.1/jackson-databind-2.10.5.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.13.0/curator-client-2.13.0.jar (2.4 MB at 729 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.5/jackson-annotations-2.10.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 5.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.5/jackson-core-2.10.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.jar (1.5 MB at 446 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.5/jackson-annotations-2.10.5.jar (68 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.3.0/woodstox-core-5.3.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar (1.0 MB at 297 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar (196 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.5/jackson-core-2.10.5.jar (349 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5.1/jackson-databind-2.10.5.1.jar (1.4 MB at 402 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.3.0/woodstox-core-5.3.0.jar (522 kB at 149 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar (194 kB at 55 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar (308 kB at 87 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar (7.7 kB at 2.1 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar (6.8 kB at 1.9 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar (100 kB at 28 kB/s) -[INFO] -[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 203 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom (4.1 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 109 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 kB at 155 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar (226 kB at 2.4 MB/s) -[INFO] Deleting /home/cc/sosp24-ae/wasabi/wasabi-testing/target -[INFO] -[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (2.6 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2.0 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3.0 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 116 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 4.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 79 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2.0 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (2.6 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (1.9 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (1.9 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (6.7 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom (1.9 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (1.8 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (1.4 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 5.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (3.9 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (1.7 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (2.1 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom (2.0 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom (1.3 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 227 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom (5.8 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 109 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom (889 B at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (2.9 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3.0 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5.0 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 109 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom (890 B at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom (2.8 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 201 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar (35 kB at 435 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar (57 kB at 689 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar (152 kB at 1.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar (116 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar (29 kB at 263 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar (9.9 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar (5.9 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar (21 kB at 121 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar (24 kB at 133 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar (14 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 kB at 139 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 144 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar (37 kB at 138 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar (49 kB at 164 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar (87 kB at 289 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar (10 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar (86 kB at 239 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 309 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 493 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar (223 kB at 547 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (6.8 kB at 15 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar (43 kB at 95 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar (61 kB at 121 kB/s) -[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! -[INFO] Copying 220 resources -[INFO] Copying 9 resources -[INFO] -[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 412 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 170 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 84 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 472 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 8.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 199 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom (5.0 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom (4.1 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 247 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom (2.4 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 224 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom (1.1 kB at 8.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom (8.4 kB at 96 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom (2.7 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom (1.1 kB at 8.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 9.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 224 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom (1.2 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom (1.3 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 169 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 1.8 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar (55 kB at 546 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 1.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar (122 kB at 648 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 1.7 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar (27 kB at 128 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar (267 kB at 1.3 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar (4.7 kB at 19 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar (23 kB at 80 kB/s) -[INFO] Changes detected - recompiling the module! :dependency -[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! -[INFO] Compiling 9 source files with javac [debug target 1.8] to target/classes -[INFO] -[INFO] --- aspectj-maven-plugin:1.13:compile (default) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom (2.3 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 247 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 97 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 196 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 110 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 368 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom (3.0 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom (26 kB at 304 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 437 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom (4.1 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom (5.3 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom (2.4 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 288 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom (4.2 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom (14 kB at 169 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 104 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 232 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 9.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 5.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom (2.6 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom (14 kB at 168 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 241 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 90 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 154 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom (4.6 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom (3.4 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom (1.4 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom (1.9 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom (2.5 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 125 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom (8.8 kB at 112 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom (1.9 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 179 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 282 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 124 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 4.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 179 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 115 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom (4.3 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom (2.6 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom (19 kB at 183 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom (2.7 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom (2.8 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom (4.2 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom (3.8 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom (14 kB at 150 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 454 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom (11 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom (16 kB at 171 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 3.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom (7.8 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom (10 kB at 134 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom (4.2 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom (1.8 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom (5.1 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (2.5 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (4.4 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 262 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 9.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom (1.9 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom (21 kB at 249 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom (1.6 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom (18 kB at 225 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom (1.6 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom (3.0 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5.1 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 213 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 155 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (18 kB at 131 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom (7.7 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom (14 kB at 136 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom (4.5 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 677 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 145 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom (3.4 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom (3.0 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom (2.0 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom (2.7 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom (2.0 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 198 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 228 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 191 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 148 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 103 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 2.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 1.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 1.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 2.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 115 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 1.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 1.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 130 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom (7.6 kB at 86 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 6.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (4.9 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom (1.5 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom (15 kB at 186 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (41 kB at 565 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom (1.5 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom (3.4 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom (14 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom (748 B at 8.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom (3.8 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom (22 kB at 259 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (3.8 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom (4.1 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom (4.9 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom (9.4 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom (13 kB at 168 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom (3.0 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom (6.7 kB at 97 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom (3.0 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom (1.6 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom (2.6 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (156 B at 1.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom (9.0 kB at 124 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom (5.3 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom (653 B at 9.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom (4.3 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom (9.8 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom (12 kB at 146 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom (3.4 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom (145 B at 1.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom (3.1 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom (2.9 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar (11 kB at 116 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar (215 kB at 2.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar (47 kB at 444 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 2.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 244 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar (58 kB at 281 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar (205 kB at 964 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar (379 kB at 1.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 177 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar (192 kB at 630 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar (288 kB at 904 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 7.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar (44 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar (14 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar (15 MB at 36 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar (42 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar (38 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar (634 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 8.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar (521 kB at 936 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar (32 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar (14 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (3.5 kB at 5.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar (2.6 MB at 4.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar (41 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar (66 kB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar (27 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar (149 kB at 204 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar (169 kB at 231 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar (4.2 kB at 5.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar (180 kB at 238 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 110 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar (12 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar (55 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar (65 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar (12 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar (218 kB at 249 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar (183 kB at 205 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 365 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar (60 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 349 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar (17 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar (16 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar (18 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar (237 kB at 228 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 7.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 237 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 310 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 128 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 397 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar (53 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 372 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar (18 kB at 15 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar (165 kB at 128 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 387 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 161 kB/s) -[INFO] Showing AJC message detail for messages of types: [error, warning, fail] -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:174 -((withincode(* org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archive(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:175 -call(* org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL.archiveLogFile(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.AbstractWALRoller [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:176 -(withincode(* org.apache.hadoop.hbase.wal.AbstractWALRoller.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.AbstractWALRoller [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:178 -(withincode(* org.apache.hadoop.hbase.wal.AbstractWALRoller.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.AbstractWALRoller [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:180 -(withincode(* org.apache.hadoop.hbase.wal.AbstractWALRoller.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.BootstrapNodeManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:192 -(withincode(* org.apache.hadoop.hbase.regionserver.BootstrapNodeManager.getFromMaster(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.tool.BulkLoadHFilesTool [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:194 -(withincode(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.tool.BulkLoadHFilesTool [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:196 -(withincode(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.tool.BulkLoadHFilesTool [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:197 -call(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.groupOrSplitPhase(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.tool.BulkLoadHFilesTool [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:198 -(withincode(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.performBulkLoad(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.tool.BulkLoadHFilesTool [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:199 -call(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.bulkLoadPhase(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:200 -(withincode(* org.apache.hadoop.hbase.regionserver.wal.DualAsyncFSWAL.createWriterInstance(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.wal.AsyncFSWAL [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:201 -call(* org.apache.hadoop.hbase.regionserver.wal.AsyncFSWAL.createAsyncWriter(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:202 -(withincode(* org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.createOutput(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:203 -call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:204 -(withincode(* org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputHelper.completeFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hdfs.protocol.ClientProtocol [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:205 -call(* org.apache.hadoop.hdfs.protocol.ClientProtocol.complete(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegion [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:207 -call(* org.apache.hadoop.hbase.regionserver.HRegion.flush(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSTableDescriptors [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:208 -(withincode(* org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSTableDescriptors [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:210 -(withincode(* org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSTableDescriptors [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:212 -(withincode(* org.apache.hadoop.hbase.util.FSTableDescriptors.writeTableDescriptor(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSTableDescriptors [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:213 -call(* org.apache.hadoop.hbase.util.FSTableDescriptors.deleteTableDescriptorFiles(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:214 -(withincode(* org.apache.hadoop.hbase.util.FSUtils.setVersion(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:216 -(withincode(* org.apache.hadoop.hbase.util.FSUtils.setVersion(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:218 -(withincode(* org.apache.hadoop.hbase.util.FSUtils.setVersion(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:220 -(withincode(* org.apache.hadoop.hbase.util.FSUtils.setVersion(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:222 -(withincode(* org.apache.hadoop.hbase.util.FSUtils.checkClusterIdExists(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:224 -(withincode(* org.apache.hadoop.hbase.util.FSUtils.setClusterId(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:226 -(withincode(* org.apache.hadoop.hbase.util.FSUtils.setClusterId(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.FSUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:228 -(withincode(* org.apache.hadoop.hbase.util.FSUtils.setClusterId(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.HBaseFsck [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:232 -(withincode(* org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.HBaseFsck [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:234 -(withincode(* org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:236 -(withincode(* org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint.replicate(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:237 -call(* org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint.parallelReplicate(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.backup.HFileArchiver [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:238 -(withincode(* org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.backup.HFileArchiver [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:240 -(withincode(* org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.HFileReplicator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:242 -(withincode(* org.apache.hadoop.hbase.replication.regionserver.HFileReplicator.doBulkLoad(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.tool.BulkLoadHFilesTool [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:243 -call(* org.apache.hadoop.hbase.tool.BulkLoadHFilesTool.loadHFileQueue(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:244 -(withincode(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.createDir(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:245 -call(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.mkdirs(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:246 -(withincode(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.rename(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:248 -(withincode(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.deleteDir(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionFileSystem [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:250 -(withincode(* org.apache.hadoop.hbase.regionserver.HRegionFileSystem.createDirOnFileSystem(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionServer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:252 -(withincode(* org.apache.hadoop.hbase.regionserver.HRegionServer.createRegionServerStatusStub(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:254 -(withincode(* org.apache.hadoop.hbase.regionserver.HStore.flushCache(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.StoreFlusher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:255 -call(* org.apache.hadoop.hbase.regionserver.StoreFlusher.flushSnapshot(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.MoveWithAck [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:256 -(withincode(* org.apache.hadoop.hbase.util.MoveWithAck.call(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.MoveWithAck [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:258 -(withincode(* org.apache.hadoop.hbase.util.MoveWithAck.call(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.MoveWithAck [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:259 -call(* org.apache.hadoop.hbase.util.MoveWithAck.isSameServer(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.chaos.ChaosAgent [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:260 -(withincode(* org.apache.hadoop.hbase.chaos.ChaosAgent.execWithRetries(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.chaos.ChaosAgent [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:261 -call(* org.apache.hadoop.hbase.chaos.ChaosAgent.exec(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:262 -(withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.ProcedureWALFile [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:263 -call(* org.apache.hadoop.hbase.procedure2.store.wal.ProcedureWALFile.removeFile(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.backup.HFileArchiver [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:266 -(withincode(* org.apache.hadoop.hbase.backup.HFileArchiver.resolveAndArchiveFile(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.MasterWalManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:268 -(withincode(* org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.MasterWalManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:270 -(withincode(* org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:272 -(withincode(* org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSourceShipper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:274 -(withincode(* org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSourceShipper.getStartPosition(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSource [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:275 -call(* org.apache.hadoop.hbase.replication.regionserver.RecoveredReplicationSource.locateRecoveredPaths(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSource [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:276 -(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.uncaughtException(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:277 -call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.refreshSources(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:278 -(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:279 -call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.readWALEntries(..) throws *IOException*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:280 -(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.WALEntryStream [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:281 -call(* org.apache.hadoop.hbase.replication.regionserver.WALEntryStream.reset(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:282 -(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:283 -call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceWALReader.tryAdvanceStreamAndCreateWALBatch(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.HBaseFsck [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:284 -(withincode(* org.apache.hadoop.hbase.util.HBaseFsck.unlockHbck(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.HBaseFsckRepair [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:286 -(withincode(* org.apache.hadoop.hbase.util.HBaseFsckRepair.waitUntilAssigned(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.AbstractFSWALProvider [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:288 -(withincode(* org.apache.hadoop.hbase.wal.AbstractFSWALProvider.openReader(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.AbstractFSWALProvider [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:290 -(withincode(* org.apache.hadoop.hbase.wal.AbstractFSWALProvider.openReader(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.WALFactory [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:291 -call(* org.apache.hadoop.hbase.wal.WALFactory.createStreamReader(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.wal.WALFactory [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:292 -(withincode(* org.apache.hadoop.hbase.wal.WALFactory.createStreamReader(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:294 -(withincode(* org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:295 -call(* org.apache.hadoop.hbase.master.procedure.SwitchRpcThrottleProcedure.switchThrottleState(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.HBaseFsckRepair [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:296 -(withincode(* org.apache.hadoop.hbase.util.HBaseFsckRepair.waitUntilAssigned(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:298 -(withincode(* org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:299 -call(* org.apache.hadoop.hbase.master.procedure.RSProcedureDispatcher.sendRequest(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.handler.RegionReplicaFlushHandler [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:300 -(withincode(* org.apache.hadoop.hbase.regionserver.handler.RegionReplicaFlushHandler.triggerFlushInPrimaryRegion(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:302 -(withincode(* org.apache.hadoop.hbase.regionserver.RemoteProcedureResultReporter.run(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegionServer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:303 -call(* org.apache.hadoop.hbase.regionserver.HRegionServer.reportProcedureDone(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSource [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:304 -(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSource [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:305 -call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.createReplicationEndpoint(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSource [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:306 -(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initialize(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSource [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:307 -call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSource.initAndStartReplicationEndpoint(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:308 -(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.cleanOldLogs(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:309 -call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceManager.removeRemoteWALs(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:310 -(withincode(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper.shipEdits(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:311 -call(* org.apache.hadoop.hbase.replication.regionserver.ReplicationSourceShipper.cleanUpHFileRefs(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.rsgroup.RSGroupInfoManagerImpl [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:326 -(withincode(* org.apache.hadoop.hbase.rsgroup.RSGroupInfoManagerImpl.moveRegionsBetweenGroups(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.LoadBalancer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:327 -call(* org.apache.hadoop.hbase.master.LoadBalancer.randomAssignment(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:328 -(withincode(* org.apache.hadoop.hbase.master.procedure.ServerCrashProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.MasterServices [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:329 -call(* org.apache.hadoop.hbase.master.MasterServices.getProcedures(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:330 -(withincode(* org.apache.hadoop.hbase.regionserver.SnapshotRegionCallable.doCall(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.regionserver.HRegion [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:331 -call(* org.apache.hadoop.hbase.regionserver.HRegion.flush(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.SplitWALProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:332 -(withincode(* org.apache.hadoop.hbase.master.procedure.SplitWALProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.SplitWALManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:333 -call(* org.apache.hadoop.hbase.master.SplitWALManager.isSplitWALFinished(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:334 -(withincode(* org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:335 -call(* org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.isReplayWALFinished(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALRemoteProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:336 -(withincode(* org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALRemoteProcedure.truncateWALs(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:337 -call(* org.apache.hadoop.hbase.master.replication.SyncReplicationReplayWALManager.finishReplayWAL(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:338 -(withincode(* org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor.doPut(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:340 -(withincode(* org.apache.hadoop.hbase.namequeues.WALEventTrackerTableAccessor.doPut(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:342 -(withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:343 -call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.getLogFiles(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:344 -(withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:345 -call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.initOldLogs(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:346 -(withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.recoverLease(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:347 -call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriter(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:348 -(withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.syncSlots(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:349 -call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.syncSlots(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:350 -(withincode(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriterWithRetries(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:351 -call(* org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore.rollWriter(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.backup.impl.FullTableBackupClient [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:352 -(withincode(* org.apache.hadoop.hbase.backup.impl.FullTableBackupClient.snapshotTable(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:354 -(withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.ZKUtil [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:355 -call(* org.apache.hadoop.hbase.zookeeper.ZKUtil.setData(..) throws *IOException*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:356 -(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:357 -call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.createDirForRemoteWAL(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.MasterWalManager [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:358 -(withincode(* org.apache.hadoop.hbase.master.MasterWalManager.getFailedServersFromLogFolders(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:360 -(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:361 -call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.createDirForRemoteWAL(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:362 -(withincode(* org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:364 -(withincode(* org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:366 -(withincode(* org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:368 -(withincode(* org.apache.hadoop.hbase.master.assignment.TransitRegionStateProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:370 -(withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:372 -(withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:374 -(withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:376 -(withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:378 -(withincode(* org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:380 -(withincode(* org.apache.hadoop.hbase.master.replication.RecoverStandbyProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.mob.MobFileCleanerChore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:382 -(withincode(* org.apache.hadoop.hbase.mob.MobFileCleanerChore.cleanupObsoleteMobFiles(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.mob.MobFileCleanerChore [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:384 -(withincode(* org.apache.hadoop.hbase.mob.MobFileCleanerChore.cleanupObsoleteMobFiles(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.io.FileLink [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:582 -((withincode(* org.apache.hadoop.hbase.io.FileLink.read(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.io.FileLink [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:584 -(withincode(* org.apache.hadoop.hbase.io.FileLink.readFully(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.SnapshotVerifyProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:644 -((withincode(* org.apache.hadoop.hbase.master.procedure.SnapshotVerifyProcedure.execute(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.procedure.ServerRemoteProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:645 -call(* org.apache.hadoop.hbase.master.procedure.ServerRemoteProcedure.execute(..) throws *Exception*))) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.util.HBaseFsck [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:704 -((withincode(* org.apache.hadoop.hbase.util.HBaseFsck.setMasterInMaintenanceMode(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.MetaRegionLocationCache [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:706 -(withincode(* org.apache.hadoop.hbase.MetaRegionLocationCache.updateMetaLocation(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.MetaRegionLocationCache [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:708 -(withincode(* org.apache.hadoop.hbase.MetaRegionLocationCache.updateMetaLocation(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:710 -(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.delete(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:712 -(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.exists(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:714 -(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getChildren(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:716 -(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getData(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:718 -(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.setData(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:720 -(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.createNonSequential(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:722 -(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.createSequential(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:724 -(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.getAcl(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:726 -(withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.setAcl(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:792 -((withincode(* org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.multi(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.ZKNodeTracker [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:794 -(withincode(* org.apache.hadoop.hbase.zookeeper.ZKNodeTracker.blockUntilAvailable(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.ZKNodeTracker [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:796 -(withincode(* org.apache.hadoop.hbase.zookeeper.ZKNodeTracker.blockUntilAvailable(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.ZKUtil [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:798 -(withincode(* org.apache.hadoop.hbase.zookeeper.ZKUtil.waitForBaseZNode(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:800 -(withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.deleteDataForClientZkUntilSuccess(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.MetaRegionLocationCache [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:802 -(withincode(* org.apache.hadoop.hbase.MetaRegionLocationCache.loadMetaLocationsFromZk(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: ZkSplitLogWorkerCoordination [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:804 -(withincode(* ZkSplitLogWorkerCoordination.getTaskList(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:806 -(withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.deleteDataForClientZkUntilSuccess(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:808 -(withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.reconnectAfterExpiration(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:810 -(withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:876 -withincode(* org.apache.hadoop.hbase.master.zksyncer.ClientZKSyncer.setDataForClientZkUntilSuccess(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.HBaseServerBase [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:942 -((withincode(* org.apache.hadoop.hbase.HBaseServerBase.putUpWebUI(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.http.InfoServer [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:943 -call(* org.apache.hadoop.hbase.http.InfoServer.start(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.replication.ZKReplicationQueueStorage [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:944 -(withincode(* org.apache.hadoop.hbase.replication.ZKReplicationQueueStorage.setWALPosition(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.zookeeper.ZKUtil [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:945 -call(* org.apache.hadoop.hbase.zookeeper.ZKUtil.multiOrSequential(..) throws *Exception*))) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ClaimReplicationQueuesProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1004 -((withincode(* org.apache.hadoop.hbase.master.replication.ClaimReplicationQueuesProcedure.execute(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1006 -(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1007 -call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.postTransit(..) throws *ReplicationException*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1008 -(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1009 -call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.setPeerNewSyncReplicationState(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1010 -(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1011 -call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.removeAllReplicationQueues (..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1012 -(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1013 -call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.setLastPushedSequenceId(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1014 -(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1015 -call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.transitPeerSyncReplicationState(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1016 -(withincode(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1017 -call(* org.apache.hadoop.hbase.master.replication.TransitPeerSyncReplicationStateProcedure.enablePear(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1018 -(withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1020 -(withincode(* org.apache.hadoop.hbase.master.replication.ModifyPeerProcedure.executeFromState(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:1024 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:948 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:880 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:814 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:730 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:648 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:588 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:526 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:466 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:388 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:137 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:95 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:78 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHBase has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHBase.aj:60 - -[INFO] -[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ wasabi --- -[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! -[INFO] skip non existing resourceDirectory /home/cc/sosp24-ae/wasabi/wasabi-testing/src/test/resources -[INFO] -[INFO] --- aspectj-maven-plugin:1.13:test-compile (default) @ wasabi --- -[WARNING] No sources found skipping aspectJ compile -[INFO] -[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (1.5 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 kB at 282 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 kB at 305 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom (3.0 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom (2.5 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom (5.5 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom (1.6 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom (16 kB at 150 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (1.6 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 204 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (2.7 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (2.1 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (3.1 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (2.0 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (2.7 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (1.9 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2.0 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (7.8 kB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2.0 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (1.8 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (1.7 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (2.1 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (1.3 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom (3.5 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom (17 kB at 158 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom (42 kB at 419 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom (3.7 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 197 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 172 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar (118 kB at 1.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar (35 kB at 434 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar (263 kB at 2.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar (316 kB at 2.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 545 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar (232 kB at 1.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar (31 kB at 175 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 603 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 224 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 151 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 348 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 221 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 499 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar (10 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 36 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 26 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar (38 kB at 95 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 88 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar (14 kB at 31 kB/s) -[INFO] Tests are skipped. -[INFO] -[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom (4.5 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom (2.8 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom (1.7 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom (2.7 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 kB at 227 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom (1.0 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 146 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar (184 kB at 2.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar (22 kB at 257 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar (60 kB at 593 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (38 kB at 361 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar (58 kB at 535 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar (208 kB at 1.3 MB/s) -[INFO] Building jar: /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar -[INFO] -[INFO] --- maven-install-plugin:2.4:install (default-install) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom (2.5 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom (19 kB at 176 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom (1.1 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom (5.0 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom (7.3 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar (12 kB at 126 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar (230 kB at 1.6 MB/s) -[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.jar -[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/pom.xml to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.pom -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 01:09 min -[INFO] Finished at: 2025-10-03T00:24:28Z -[INFO] ------------------------------------------------------------------------ -[INFO] Scanning for projects... -[INFO] -[INFO] -------------------< edu.uchicago.cs.systems:wasabi >------------------- -[INFO] Building Wasabi Library 1.0.0 -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.pom (21 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/63/mojo-parent-63.pom (31 kB at 264 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dev/aspectj/aspectj-maven-plugin/1.13/aspectj-maven-plugin-1.13.jar (64 kB at 498 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (3.9 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 kB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 204 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 kB at 111 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 kB at 180 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom (9.2 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 310 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom (15 kB at 132 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 324 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom (9.8 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom (48 kB at 480 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom (21 kB at 228 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar (66 kB at 620 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.pom (10 kB at 125 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.12.4/surefire-2.12.4.pom (14 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.12.4/maven-surefire-plugin-2.12.4.jar (30 kB at 324 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom (5.8 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar (34 kB at 337 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom (6.4 kB at 79 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar (27 kB at 296 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.pom (2.0 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.pom (1.1 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom (17 kB at 106 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom (1.6 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 250 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 8.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.pom (16 kB at 140 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 661 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.pom (26 kB at 239 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.13/assertj-parent-pom-2.2.13.pom (24 kB at 245 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-metastore/4.0.0-beta-1/hive-metastore-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-metastore/4.0.0-beta-1/hive-metastore-4.0.0-beta-1.pom (7.8 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive/4.0.0-beta-1/hive-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive/4.0.0-beta-1/hive-4.0.0-beta-1.pom (79 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 212 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.13.5/jackson-bom-2.13.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.13.5/jackson-bom-2.13.5.pom (17 kB at 159 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.13/jackson-parent-2.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.13/jackson-parent-2.13.pom (7.4 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/43/oss-parent-43.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/43/oss-parent-43.pom (24 kB at 213 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-common/4.0.0-beta-1/hive-common-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-common/4.0.0-beta-1/hive-common-4.0.0-beta-1.pom (14 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-classification/4.0.0-beta-1/hive-classification-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-classification/4.0.0-beta-1/hive-classification-4.0.0-beta-1.pom (2.2 kB at 2.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-shims/4.0.0-beta-1/hive-shims-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-shims/4.0.0-beta-1/hive-shims-4.0.0-beta-1.pom (1.7 kB at 2.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-common/4.0.0-beta-1/hive-shims-common-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-common/4.0.0-beta-1/hive-shims-common-4.0.0-beta-1.pom (3.3 kB at 5.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.pom (5.7 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/22.0/guava-parent-22.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/22.0/guava-parent-22.0.pom (8.9 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom (965 B at 8.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.pom (1.6 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.0.18/error_prone_parent-2.0.18.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.0.18/error_prone_parent-2.0.18.pom (5.0 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (2.8 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (2.5 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (4.4 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 149 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.16.0/libthrift-0.16.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.16.0/libthrift-0.16.0.pom (2.8 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.35/slf4j-api-1.7.35.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.35/slf4j-api-1.7.35.pom (3.8 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.35/slf4j-parent-1.7.35.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.35/slf4j-parent-1.7.35.pom (14 kB at 144 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 271 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 137 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 513 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 157 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 544 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 133 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.pom (5.0 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.15/httpcomponents-core-4.4.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.15/httpcomponents-core-4.4.15.pom (13 kB at 137 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom (14 kB at 132 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 147 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 639 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/5.2.0/curator-framework-5.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/5.2.0/curator-framework-5.2.0.pom (3.8 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/5.2.0/apache-curator-5.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/5.2.0/apache-curator-5.2.0.pom (43 kB at 364 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/5.2.0/curator-client-5.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/5.2.0/curator-client-5.2.0.pom (4.6 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.6.3/zookeeper-3.6.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.6.3/zookeeper-3.6.3.pom (9.9 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.6.3/parent-3.6.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.6.3/parent-3.6.3.pom (35 kB at 395 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.6.3/zookeeper-jute-3.6.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.6.3/zookeeper-jute-3.6.3.pom (5.6 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.pom (1.9 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.5.0/yetus-project-0.5.0.pom (6.8 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 kB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.63.Final/netty-handler-4.1.63.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.63.Final/netty-handler-4.1.63.Final.pom (3.6 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.63.Final/netty-parent-4.1.63.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.63.Final/netty-parent-4.1.63.Final.pom (62 kB at 585 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.63.Final/netty-common-4.1.63.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.63.Final/netty-common-4.1.63.Final.pom (12 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.63.Final/netty-resolver-4.1.63.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.63.Final/netty-resolver-4.1.63.Final.pom (1.6 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.63.Final/netty-buffer-4.1.63.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.63.Final/netty-buffer-4.1.63.Final.pom (1.6 kB at 9.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.63.Final/netty-transport-4.1.63.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.63.Final/netty-transport-4.1.63.Final.pom (1.9 kB at 7.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.63.Final/netty-codec-4.1.63.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.63.Final/netty-codec-4.1.63.Final.pom (3.6 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.63.Final/netty-transport-native-epoll-4.1.63.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.63.Final/netty-transport-native-epoll-4.1.63.Final.pom (18 kB at 154 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.63.Final/netty-transport-native-unix-common-4.1.63.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.63.Final/netty-transport-native-unix-common-4.1.63.Final.pom (22 kB at 190 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 109 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 236 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0.1-jre/guava-27.0.1-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0.1-jre/guava-27.0.1-jre.pom (8.3 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0.1-jre/guava-parent-27.0.1-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0.1-jre/guava-parent-27.0.1-jre.pom (10 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom (2.4 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 91 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.pom (2.5 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.2.0/error_prone_annotations-2.2.0.pom (1.8 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.2.0/error_prone_parent-2.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.2.0/error_prone_parent-2.2.0.pom (5.1 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.17/animal-sniffer-annotations-1.17.pom (2.6 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.17/animal-sniffer-parent-1.17.pom (8.6 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (34 kB at 278 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.7.1/zookeeper-3.7.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.7.1/zookeeper-3.7.1.pom (11 kB at 115 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.7.1/parent-3.7.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.7.1/parent-3.7.1.pom (40 kB at 399 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.7.1/zookeeper-jute-3.7.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.7.1/zookeeper-jute-3.7.1.pom (6.7 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.pom (2.8 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.12.0/yetus-project-0.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/yetus-project/0.12.0/yetus-project-0.12.0.pom (12 kB at 104 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.76.Final/netty-handler-4.1.76.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.76.Final/netty-handler-4.1.76.Final.pom (3.7 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.76.Final/netty-parent-4.1.76.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.76.Final/netty-parent-4.1.76.Final.pom (75 kB at 495 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.76.Final/netty-common-4.1.76.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.76.Final/netty-common-4.1.76.Final.pom (13 kB at 95 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.76.Final/netty-resolver-4.1.76.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.76.Final/netty-resolver-4.1.76.Final.pom (1.6 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.76.Final/netty-buffer-4.1.76.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.76.Final/netty-buffer-4.1.76.Final.pom (1.6 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.76.Final/netty-transport-4.1.76.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.76.Final/netty-transport-4.1.76.Final.pom (1.9 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.76.Final/netty-codec-4.1.76.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.76.Final/netty-codec-4.1.76.Final.pom (4.4 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.76.Final/netty-transport-native-epoll-4.1.76.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.76.Final/netty-transport-native-epoll-4.1.76.Final.pom (19 kB at 195 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.76.Final/netty-transport-native-unix-common-4.1.76.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.76.Final/netty-transport-native-unix-common-4.1.76.Final.pom (26 kB at 268 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.76.Final/netty-transport-classes-epoll-4.1.76.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.76.Final/netty-transport-classes-epoll-4.1.76.Final.pom (2.1 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-0.23/4.0.0-beta-1/hive-shims-0.23-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-0.23/4.0.0-beta-1/hive-shims-0.23-4.0.0-beta-1.pom (9.9 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-resourcemanager/3.3.1/hadoop-yarn-server-resourcemanager-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-resourcemanager/3.3.1/hadoop-yarn-server-resourcemanager-3.3.1.pom (15 kB at 179 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server/3.3.1/hadoop-yarn-server-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server/3.3.1/hadoop-yarn-server-3.3.1.pom (2.2 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn/3.3.1/hadoop-yarn-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn/3.3.1/hadoop-yarn-3.3.1.pom (10 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.1/hadoop-project-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.3.1/hadoop-project-3.3.1.pom (88 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.1/hadoop-main-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.3.1/hadoop-main-3.3.1.pom (29 kB at 278 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 163 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.1/hadoop-annotations-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.1/hadoop-annotations-3.3.1.pom (2.6 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-servlet/4.0/guice-servlet-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-servlet/4.0/guice-servlet-4.0.pom (915 B at 8.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/extensions-parent/4.0/extensions-parent-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/extensions-parent/4.0/extensions-parent-4.0.pom (3.5 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom (15 kB at 182 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0.pom (11 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 5.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 3.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom (6.1 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom (7.3 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom (8.4 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 145 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.19/jersey-json-1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.19/jersey-json-1.19.pom (10 kB at 105 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19/jersey-project-1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.19/jersey-project-1.19.pom (25 kB at 285 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom (7.8 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.1/jettison-1.1.pom (3.4 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.pom (5.3 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.2/jaxb-api-2.2.2.pom (5.6 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.pom (962 B at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom (1.1 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.2/jackson-core-asl-1.9.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.2/jackson-core-asl-1.9.2.pom (1.0 kB at 8.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.2/jackson-mapper-asl-1.9.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.2/jackson-mapper-asl-1.9.2.pom (1.2 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.9.2/jackson-jaxrs-1.9.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.9.2/jackson-jaxrs-1.9.2.pom (1.6 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.9.2/jackson-xc-1.9.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.9.2/jackson-xc-1.9.2.pom (1.6 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19/jersey-core-1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19/jersey-core-1.19.pom (9.7 kB at 131 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.pom (5.5 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-guice/1.19/jersey-guice-1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-guice/1.19/jersey-guice-1.19.pom (7.5 kB at 84 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.19/jersey-contribs-1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-contribs/1.19/jersey-contribs-1.19.pom (3.6 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/3.0/guice-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/3.0/guice-3.0.pom (7.3 kB at 84 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/3.0/guice-parent-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/3.0/guice-parent-3.0.pom (13 kB at 147 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-servlet/3.0/guice-servlet-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-servlet/3.0/guice-servlet-3.0.pom (915 B at 9.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/extensions-parent/3.0/extensions-parent-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/extensions-parent/3.0/extensions-parent-3.0.pom (3.6 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.pom (9.6 kB at 125 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19/jersey-server-1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19/jersey-server-1.19.pom (11 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-common/3.3.1/hadoop-yarn-common-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-common/3.3.1/hadoop-yarn-common-3.3.1.pom (15 kB at 146 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-hdfs-client/3.3.1/hadoop-hdfs-client-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-hdfs-client/3.3.1/hadoop-hdfs-client-3.3.1.pom (6.0 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.1/hadoop-project-dist-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.3.1/hadoop-project-dist-3.3.1.pom (18 kB at 132 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp/okhttp/2.7.5/okhttp-2.7.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp/okhttp/2.7.5/okhttp-2.7.5.pom (1.6 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp/parent/2.7.5/parent-2.7.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp/parent/2.7.5/parent-2.7.5.pom (9.4 kB at 114 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.6.0/okio-1.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.6.0/okio-1.6.0.pom (1.5 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.6.0/okio-parent-1.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.6.0/okio-parent-1.6.0.pom (3.2 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.5/jackson-annotations-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.5/jackson-annotations-2.10.5.pom (3.4 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom (8.3 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 233 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5.1/jackson-databind-2.10.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5.1/jackson-databind-2.10.5.1.pom (7.2 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5.20201202/jackson-base-2.10.5.20201202.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5.20201202/jackson-base-2.10.5.20201202.pom (7.2 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5.20201202/jackson-bom-2.10.5.20201202.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5.20201202/jackson-bom-2.10.5.20201202.pom (13 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.5/jackson-core-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.5/jackson-core-2.10.5.pom (4.6 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5/jackson-base-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.5/jackson-base-2.10.5.pom (7.2 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5/jackson-bom-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.5/jackson-bom-2.10.5.pom (13 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-api/3.3.1/hadoop-yarn-api-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-api/3.3.1/hadoop-yarn-api-3.3.1.pom (6.1 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.pom (3.0 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-thirdparty/1.1.1/hadoop-thirdparty-1.1.1.pom (16 kB at 159 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.11/jaxb-api-2.2.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.11/jaxb-api-2.2.11.pom (15 kB at 96 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.pom (3.0 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.1/hadoop-auth-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.1/hadoop-auth-3.3.1.pom (8.4 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.8.1/nimbus-jose-jwt-9.8.1.pom (11 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom (5.4 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.2/json-smart-2.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.2/json-smart-2.4.2.pom (9.2 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.4.2/minidev-parent-2.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.4.2/minidev-parent-2.4.2.pom (8.6 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.2/accessors-smart-2.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.2/accessors-smart-2.4.2.pom (12 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0.1/asm-8.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0.1/asm-8.0.1.pom (2.9 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.5.6/zookeeper-3.5.6.pom (9.2 kB at 93 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/parent/3.5.6/parent-3.5.6.pom (28 kB at 283 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.5.6/zookeeper-jute-3.5.6.pom (5.7 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.pom (3.5 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/4.2.0/apache-curator-4.2.0.pom (36 kB at 364 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.pom (4.6 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.pom (1.5 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-kerb/1.0.1/kerby-kerb-1.0.1.pom (1.7 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-all/1.0.1/kerby-all-1.0.1.pom (15 kB at 180 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.pom (2.2 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.pom (1.5 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-common/1.0.1/kerby-common-1.0.1.pom (1.3 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.pom (1.3 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.pom (2.0 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.pom (1.1 kB at 8.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.pom (1.2 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.pom (1.7 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.pom (1.5 kB at 9.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 548 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.pom (1.8 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-provider/1.0.1/kerby-provider-1.0.1.pom (1.2 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/3.10/nimbus-jose-jwt-3.10.pom (14 kB at 167 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom (491 B at 5.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/1.3.1/json-smart-1.3.1.pom (2.0 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/parent/1.3.1/parent-1.3.1.pom (8.5 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.52/bcprov-jdk15on-1.52.pom (1.2 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 kB at 132 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 kB at 627 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 178 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.pom (1.7 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.pom (1.7 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.pom (1.1 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.pom (18 kB at 217 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom (72 kB at 706 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.40.v20210413/jetty-util-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.40.v20210413/jetty-util-9.4.40.v20210413.pom (3.9 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.40.v20210413/jetty-project-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.40.v20210413/jetty-project-9.4.40.v20210413.pom (63 kB at 571 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.19/jersey-client-1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.19/jersey-client-1.19.pom (6.7 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8.0 kB at 91 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 222 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.10.5/jackson-module-jaxb-annotations-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.10.5/jackson-module-jaxb-annotations-2.10.5.pom (3.5 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.10.5/jackson-modules-base-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.10.5/jackson-modules-base-2.10.5.pom (3.4 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5/jackson-databind-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.5/jackson-databind-2.10.5.pom (7.2 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom (16 kB at 195 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.2/jakarta.xml.bind-api-parent-2.3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.2/jakarta.xml.bind-api-parent-2.3.2.pom (7.7 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom (13 kB at 132 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom (4.6 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom (18 kB at 127 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 kB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.10.5/jackson-jaxrs-json-provider-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.10.5/jackson-jaxrs-json-provider-2.10.5.pom (4.0 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.10.5/jackson-jaxrs-providers-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.10.5/jackson-jaxrs-providers-2.10.5.pom (4.8 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.10.5/jackson-jaxrs-base-2.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.10.5/jackson-jaxrs-base-2.10.5.pom (1.7 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.40.v20210413/jetty-util-ajax-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.40.v20210413/jetty-util-ajax-9.4.40.v20210413.pom (1.3 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-common/3.3.1/hadoop-yarn-server-common-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-common/3.3.1/hadoop-yarn-server-common-3.3.1.pom (8.1 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-registry/3.3.1/hadoop-registry-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-registry/3.3.1/hadoop-registry-3.3.1.pom (10 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.1/hadoop-common-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.3.1/hadoop-common-3.3.1.pom (42 kB at 450 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/27.0-jre/guava-27.0-jre.pom (8.1 kB at 83 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/27.0-jre/guava-parent-27.0-jre.pom (10 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0/failureaccess-1.0.pom (1.7 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.1.1/commons-math3-3.1.1.pom (14 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/24/commons-parent-24.pom (47 kB at 301 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.pom (22 kB at 211 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 157 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.40.v20210413/jetty-server-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.40.v20210413/jetty-server-9.4.40.v20210413.pom (2.5 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.40.v20210413/jetty-http-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.40.v20210413/jetty-http-9.4.40.v20210413.pom (4.0 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.40.v20210413/jetty-io-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.40.v20210413/jetty-io-9.4.40.v20210413.pom (1.0 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.40.v20210413/jetty-servlet-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.40.v20210413/jetty-servlet-9.4.40.v20210413.pom (2.3 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.40.v20210413/jetty-security-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.40.v20210413/jetty-security-9.4.40.v20210413.pom (2.1 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.40.v20210413/jetty-webapp-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.40.v20210413/jetty-webapp-9.4.40.v20210413.pom (3.2 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.40.v20210413/jetty-xml-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.40.v20210413/jetty-xml-9.4.40.v20210413.pom (1.7 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.pom (157 B at 1.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.pom (23 kB at 249 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/41/commons-parent-41.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/41/commons-parent-41.pom (65 kB at 438 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 328 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.4/commons-text-1.4.pom (16 kB at 178 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/46/commons-parent-46.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/46/commons-parent-46.pom (75 kB at 808 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.7/avro-1.7.7.pom (5.6 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.7/avro-parent-1.7.7.pom (19 kB at 179 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.7/avro-toplevel-1.7.7.pom (9.6 kB at 91 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.pom (1.3 kB at 9.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.pom (1.5 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.pom (1.6 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/paranamer/paranamer-parent/2.3/paranamer-parent-2.3.pom (11 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/1/codehaus-parent-1.pom (3.4 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.5/snappy-java-1.0.5.pom (13 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.pom (11 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.0/xz-1.0.pom (1.9 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.4/slf4j-api-1.6.4.pom (2.7 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.4/slf4j-parent-1.6.4.pom (12 kB at 94 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.pom (3.6 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.2.4/gson-2.2.4.pom (8.0 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom (3.2 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom (4.8 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.pom (3.5 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.pom (3.3 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace/4.1.0-incubating/htrace-4.1.0-incubating.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace/4.1.0-incubating/htrace-4.1.0-incubating.pom (14 kB at 105 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.42.Final/netty-handler-4.1.42.Final.pom (3.4 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.42.Final/netty-parent-4.1.42.Final.pom (60 kB at 474 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.42.Final/netty-common-4.1.42.Final.pom (10 kB at 102 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.42.Final/netty-buffer-4.1.42.Final.pom (1.6 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.42.Final/netty-transport-4.1.42.Final.pom (1.9 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.42.Final/netty-resolver-4.1.42.Final.pom (1.6 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.42.Final/netty-codec-4.1.42.Final.pom (3.6 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.42.Final/netty-transport-native-epoll-4.1.42.Final.pom (16 kB at 170 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.42.Final/netty-transport-native-unix-common-4.1.42.Final.pom (16 kB at 138 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.3.0/woodstox-core-5.3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.3.0/woodstox-core-5.3.0.pom (9.7 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/37/oss-parent-37.pom (23 kB at 204 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2/stax2-api-4.2.pom (6.3 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 kB at 235 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.pom (7.2 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.8.2/snappy-java-1.1.8.2.pom (3.5 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-daemon/commons-daemon/1.0.13/commons-daemon-1.0.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-daemon/commons-daemon/1.0.13/commons-daemon-1.0.13.pom (4.3 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/23/commons-parent-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/23/commons-parent-23.pom (44 kB at 376 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.pom (7.2 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-project/1.8/leveldbjni-project-1.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-project/1.8/leveldbjni-project-1.8.pom (9.6 kB at 93 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.9/fusesource-pom-1.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.9/fusesource-pom-1.9.pom (15 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/specs/geronimo-jcache_1.0_spec/1.0-alpha-1/geronimo-jcache_1.0_spec-1.0-alpha-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/specs/geronimo-jcache_1.0_spec/1.0-alpha-1/geronimo-jcache_1.0_spec-1.0-alpha-1.pom (3.7 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.2/genesis-java5-flava-2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.2/genesis-java5-flava-2.2.pom (5.5 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.2/genesis-default-flava-2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.2/genesis-default-flava-2.2.pom (15 kB at 147 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.2/genesis-2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.2/genesis-2.2.pom (16 kB at 168 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/14/apache-14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/14/apache-14.pom (15 kB at 169 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ehcache/ehcache/3.3.1/ehcache-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ehcache/ehcache/3.3.1/ehcache-3.3.1.pom (1.8 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.7/slf4j-api-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.7/slf4j-api-1.7.7.pom (2.7 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.7/slf4j-parent-1.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.7/slf4j-parent-1.7.7.pom (12 kB at 142 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP-java7/2.4.12/HikariCP-java7-2.4.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP-java7/2.4.12/HikariCP-java7-2.4.12.pom (18 kB at 191 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom (2.8 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.21/slf4j-parent-1.7.21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.21/slf4j-parent-1.7.21.pom (14 kB at 165 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/microsoft/sqlserver/mssql-jdbc/6.2.1.jre7/mssql-jdbc-6.2.1.jre7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/microsoft/sqlserver/mssql-jdbc/6.2.1.jre7/mssql-jdbc-6.2.1.jre7.pom (8.8 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-applicationhistoryservice/3.3.1/hadoop-yarn-server-applicationhistoryservice-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-applicationhistoryservice/3.3.1/hadoop-yarn-server-applicationhistoryservice-3.3.1.pom (8.8 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/de/ruedigermoeller/fst/2.50/fst-2.50.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/de/ruedigermoeller/fst/2.50/fst-2.50.pom (7.8 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.8.8/jackson-core-2.8.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.8.8/jackson-core-2.8.8.pom (5.4 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom (8.0 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/27/oss-parent-27.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/27/oss-parent-27.pom (20 kB at 211 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.pom (2.8 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.5.1/objenesis-parent-2.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.5.1/objenesis-parent-2.5.1.pom (17 kB at 188 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/java-util/1.9.0/java-util-1.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/java-util/1.9.0/java-util-1.9.0.pom (4.9 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/json-io/2.5.1/json-io-2.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/json-io/2.5.1/json-io-2.5.1.pom (4.9 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-web-proxy/3.3.1/hadoop-yarn-server-web-proxy-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-web-proxy/3.3.1/hadoop-yarn-server-web-proxy-3.3.1.pom (4.6 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.60/bcprov-jdk15on-1.60.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.60/bcprov-jdk15on-1.60.pom (1.1 kB at 9.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.60/bcpkix-jdk15on-1.60.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.60/bcpkix-jdk15on-1.60.pom (1.5 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-storage-api/4.0.0-beta-1/hive-storage-api-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-storage-api/4.0.0-beta-1/hive-storage-api-4.0.0-beta-1.pom (7.8 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-standalone-metastore-common/4.0.0-beta-1/hive-standalone-metastore-common-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-standalone-metastore-common/4.0.0-beta-1/hive-standalone-metastore-common-4.0.0-beta-1.pom (22 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-standalone-metastore/4.0.0-beta-1/hive-standalone-metastore-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-standalone-metastore/4.0.0-beta-1/hive-standalone-metastore-4.0.0-beta-1.pom (25 kB at 132 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-jexl3/3.3/commons-jexl3-3.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-jexl3/3.3/commons-jexl3-3.3.pom (24 kB at 212 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/56/commons-parent-56.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/56/commons-parent-56.pom (82 kB at 762 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.51.0/grpc-netty-shaded-1.51.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.51.0/grpc-netty-shaded-1.51.0.pom (2.0 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-android/guava-31.1-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-android/guava-31.1-android.pom (11 kB at 125 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.1-android/guava-parent-31.1-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.1-android/guava-parent-31.1-android.pom (15 kB at 136 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom (2.1 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom (2.2 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom (11 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom (2.8 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.14.0/error_prone_annotations-2.14.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.14.0/error_prone_annotations-2.14.0.pom (2.2 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.14.0/error_prone_parent-2.14.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.14.0/error_prone_parent-2.14.0.pom (11 kB at 128 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.25.0/perfmark-api-0.25.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.25.0/perfmark-api-0.25.0.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from repository-release: https://repository.apache.org/content/repositories/releases/io/grpc/grpc-core/maven-metadata.xml -[INFO] Downloading from shibboleth: https://build.shibboleth.net/nexus/content/groups/public/io/grpc/grpc-core/maven-metadata.xml -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/maven-metadata.xml -[INFO] Downloading from ossrh-snapshots: https://oss.sonatype.org/content/repositories/snapshots/io/grpc/grpc-core/maven-metadata.xml -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/maven-metadata.xml (6.0 kB at 32 kB/s) -[INFO] Downloading from apache.snapshots: https://repository.apache.org/snapshots/io/grpc/grpc-core/maven-metadata.xml -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.51.0/grpc-core-1.51.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.51.0/grpc-core-1.51.0.pom (2.5 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/maven-metadata.xml -[INFO] Downloading from ossrh-snapshots: https://oss.sonatype.org/content/repositories/snapshots/io/grpc/grpc-api/maven-metadata.xml -[INFO] Downloading from repository-release: https://repository.apache.org/content/repositories/releases/io/grpc/grpc-api/maven-metadata.xml -[INFO] Downloading from shibboleth: https://build.shibboleth.net/nexus/content/groups/public/io/grpc/grpc-api/maven-metadata.xml -[INFO] Downloading from apache.snapshots: https://repository.apache.org/snapshots/io/grpc/grpc-api/maven-metadata.xml -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/maven-metadata.xml (4.4 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.51.0/grpc-api-1.51.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.51.0/grpc-api-1.51.0.pom (2.0 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.51.0/grpc-context-1.51.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.51.0/grpc-context-1.51.0.pom (1.2 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.pom (8.1 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.9.0/gson-parent-2.9.0.pom (4.5 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.pom (1.8 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.21/animal-sniffer-annotations-1.21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.21/animal-sniffer-annotations-1.21.pom (2.6 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.21/animal-sniffer-parent-1.21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.21/animal-sniffer-parent-1.21.pom (7.8 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/65/mojo-parent-65.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/65/mojo-parent-65.pom (35 kB at 321 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.1/junit-bom-5.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.1/junit-bom-5.8.1.pom (5.6 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.51.0/grpc-protobuf-1.51.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.51.0/grpc-protobuf-1.51.0.pom (2.7 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7.pom (5.4 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.21.7/protobuf-parent-3.21.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.21.7/protobuf-parent-3.21.7.pom (9.0 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.7/protobuf-bom-3.21.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.7/protobuf-bom-3.21.7.pom (3.5 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0.pom (2.2 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.1/protobuf-java-3.21.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.1/protobuf-java-3.21.1.pom (5.4 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.21.1/protobuf-parent-3.21.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.21.1/protobuf-parent-3.21.1.pom (9.0 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.1/protobuf-bom-3.21.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.1/protobuf-bom-3.21.1.pom (3.5 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.51.0/grpc-protobuf-lite-1.51.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.51.0/grpc-protobuf-lite-1.51.0.pom (2.0 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.51.0/grpc-stub-1.51.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.51.0/grpc-stub-1.51.0.pom (1.8 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-core/1.8.3/orc-core-1.8.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-core/1.8.3/orc-core-1.8.3.pom (6.6 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc/1.8.3/orc-1.8.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc/1.8.3/orc-1.8.3.pom (33 kB at 304 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/24/apache-24.pom (20 kB at 177 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-shims/1.8.3/orc-shims-1.8.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-shims/1.8.3/orc-shims-1.8.3.pom (3.8 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.17.3/protobuf-java-3.17.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.17.3/protobuf-java-3.17.3.pom (5.6 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.17.3/protobuf-parent-3.17.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.17.3/protobuf-parent-3.17.3.pom (8.2 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.17.3/protobuf-bom-3.17.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.17.3/protobuf-bom-3.17.3.pom (3.5 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/airlift/aircompressor/0.21/aircompressor-0.21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/airlift/aircompressor/0.21/aircompressor-0.21.pom (6.3 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/airlift/airbase/112/airbase-112.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/airlift/airbase/112/airbase-112.pom (69 kB at 695 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.0-M1/junit-bom-5.8.0-M1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.0-M1/junit-bom-5.8.0-M1.pom (5.7 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/17.0.0/annotations-17.0.0.pom (1.4 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/threeten/threeten-extra/1.7.1/threeten-extra-1.7.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/threeten/threeten-extra/1.7.1/threeten-extra-1.7.1.pom (36 kB at 366 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.0/junit-bom-5.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.0/junit-bom-5.9.0.pom (5.6 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.5/jackson-databind-2.13.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.5/jackson-databind-2.13.5.pom (18 kB at 150 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.13.5/jackson-base-2.13.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.13.5/jackson-base-2.13.5.pom (10 kB at 94 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.5/jackson-annotations-2.13.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.5/jackson-annotations-2.13.5.pom (6.1 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.5/jackson-core-2.13.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.5/jackson-core-2.13.5.pom (6.5 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/joshelser/dropwizard-metrics-hadoop-metrics2-reporter/0.1.2/dropwizard-metrics-hadoop-metrics2-reporter-0.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/joshelser/dropwizard-metrics-hadoop-metrics2-reporter/0.1.2/dropwizard-metrics-hadoop-metrics2-reporter-0.1.2.pom (7.7 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.2/metrics-core-3.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.2/metrics-core-3.1.2.pom (846 B at 8.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.1.2/metrics-parent-3.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.1.2/metrics-parent-3.1.2.pom (12 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/2.6.0/hadoop-common-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/2.6.0/hadoop-common-2.6.0.pom (31 kB at 324 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/2.6.0/hadoop-project-dist-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/2.6.0/hadoop-project-dist-2.6.0.pom (18 kB at 194 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/2.6.0/hadoop-project-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/2.6.0/hadoop-project-2.6.0.pom (43 kB at 341 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/2.6.0/hadoop-main-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/2.6.0/hadoop-main-2.6.0.pom (18 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/2.6.0/hadoop-annotations-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/2.6.0/hadoop-annotations-2.6.0.pom (2.4 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/11.0.2/guava-11.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/11.0.2/guava-11.0.2.pom (5.5 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom (2.0 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xmlenc/xmlenc/0.52/xmlenc-0.52.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xmlenc/xmlenc/0.52/xmlenc-0.52.pom (623 B at 5.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom (7.8 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom (5.3 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom (3.8 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.4/commons-codec-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.4/commons-codec-1.4.pom (10 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.1/commons-net-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.1/commons-net-3.1.pom (18 kB at 217 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 215 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.pom (157 B at 1.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26.pom (6.3 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/project/6.1.26/project-6.1.26.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/project/6.1.26/project-6.1.26.pom (9.2 kB at 110 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom (3.3 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom (16 kB at 211 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-util/6.1.26/jetty-util-6.1.26.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-util/6.1.26/jetty-util-6.1.26.pom (3.9 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.9/jersey-core-1.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.9/jersey-core-1.9.pom (10 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.9/jersey-project-1.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.9/jersey-project-1.9.pom (18 kB at 218 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom (4.7 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.9/jersey-json-1.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.9/jersey-json-1.9.pom (11 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.8.3/jackson-core-asl-1.8.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.8.3/jackson-core-asl-1.8.3.pom (1.0 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.8.3/jackson-mapper-asl-1.8.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.8.3/jackson-mapper-asl-1.8.3.pom (1.2 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.8.3/jackson-jaxrs-1.8.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.8.3/jackson-jaxrs-1.8.3.pom (1.6 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.8.3/jackson-xc-1.8.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.8.3/jackson-xc-1.8.3.pom (1.6 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.9/jersey-server-1.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.9/jersey-server-1.9.pom (12 kB at 143 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/asm/asm/3.1/asm-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm/3.1/asm-3.1.pom (278 B at 3.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/asm/asm-parent/3.1/asm-parent-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm-parent/3.1/asm-parent-3.1.pom (4.2 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/tomcat/jasper-compiler/5.5.23/jasper-compiler-5.5.23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/tomcat/jasper-compiler/5.5.23/jasper-compiler-5.5.23.pom (919 B at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/tomcat/tomcat-parent/5.5.23/tomcat-parent-5.5.23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/tomcat/tomcat-parent/5.5.23/tomcat-parent-5.5.23.pom (898 B at 9.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/tomcat/jasper-runtime/5.5.23/jasper-runtime-5.5.23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/tomcat/jasper-runtime/5.5.23/jasper-runtime-5.5.23.pom (934 B at 9.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.4/servlet-api-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.4/servlet-api-2.4.pom (156 B at 1.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-el/commons-el/1.0/commons-el-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-el/commons-el/1.0/commons-el-1.0.pom (4.1 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 9.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 176 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 557 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jets3t/jets3t/0.9.0/jets3t-0.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jets3t/jets3t/0.9.0/jets3t-0.9.0.pom (2.4 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom (18 kB at 219 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/5/commons-parent-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/5/commons-parent-5.pom (16 kB at 165 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.1.2/httpclient-4.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.1.2/httpclient-4.1.2.pom (6.0 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.1.2/httpcomponents-client-4.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.1.2/httpcomponents-client-4.1.2.pom (11 kB at 134 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.1.1/project-4.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.1.1/project-4.1.1.pom (17 kB at 171 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.1.2/httpcore-4.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.1.2/httpcore-4.1.2.pom (7.4 kB at 94 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.1.2/httpcomponents-core-4.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.1.2/httpcomponents-core-4.1.2.pom (9.8 kB at 127 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jamesmurty/utils/java-xmlbuilder/0.4/java-xmlbuilder-0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jamesmurty/utils/java-xmlbuilder/0.4/java-xmlbuilder-0.4.pom (3.0 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/3/oss-parent-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/3/oss-parent-3.pom (3.4 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom (17 kB at 148 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom (31 kB at 321 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 178 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.6/commons-configuration-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.6/commons-configuration-1.6.pom (13 kB at 153 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 144 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom (357 B at 4.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 1.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 1.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 1.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (156 B at 1.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils-core/1.8.0/commons-beanutils-core-1.8.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils-core/1.8.0/commons-beanutils-core-1.8.0.pom (1.6 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom (2.7 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom (12 kB at 128 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.pom (1.6 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.4/avro-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.7.4/avro-1.7.4.pom (4.2 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.4/avro-parent-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.7.4/avro-parent-1.7.4.pom (15 kB at 176 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.4/avro-toplevel-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.7.4/avro-toplevel-1.7.4.pom (9.6 kB at 102 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.8.8/jackson-core-asl-1.8.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.8.8/jackson-core-asl-1.8.8.pom (1.0 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.8.8/jackson-mapper-asl-1.8.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.8.8/jackson-mapper-asl-1.8.8.pom (1.2 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.4.1/snappy-java-1.0.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.0.4.1/snappy-java-1.0.4.1.pom (9.3 kB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/2.6.0/hadoop-auth-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/2.6.0/hadoop-auth-2.6.0.pom (7.8 kB at 103 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.2.5/httpclient-4.2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.2.5/httpclient-4.2.5.pom (5.9 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.2.5/httpcomponents-client-4.2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.2.5/httpcomponents-client-4.2.5.pom (15 kB at 168 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/6/project-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/6/project-6.pom (24 kB at 289 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.2.4/httpcore-4.2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.2.4/httpcore-4.2.4.pom (5.7 kB at 65 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.2.4/httpcomponents-core-4.2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.2.4/httpcomponents-core-4.2.4.pom (12 kB at 117 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.6/commons-codec-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.6/commons-codec-1.6.pom (11 kB at 145 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/22/commons-parent-22.pom (42 kB at 349 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M15/apacheds-kerberos-codec-2.0.0-M15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/server/apacheds-kerberos-codec/2.0.0-M15/apacheds-kerberos-codec-2.0.0-M15.pom (3.9 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/server/apacheds-parent/2.0.0-M15/apacheds-parent-2.0.0-M15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/server/apacheds-parent/2.0.0-M15/apacheds-parent-2.0.0-M15.pom (43 kB at 453 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/project/project/31/project-31.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/project/project/31/project-31.pom (27 kB at 212 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/server/apacheds-i18n/2.0.0-M15/apacheds-i18n-2.0.0-M15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/server/apacheds-i18n/2.0.0-M15/apacheds-i18n-2.0.0-M15.pom (2.4 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-asn1-api/1.0.0-M20/api-asn1-api-1.0.0-M20.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-asn1-api/1.0.0-M20/api-asn1-api-1.0.0-M20.pom (2.7 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-asn1-parent/1.0.0-M20/api-asn1-parent-1.0.0-M20.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-asn1-parent/1.0.0-M20/api-asn1-parent-1.0.0-M20.pom (1.5 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-parent/1.0.0-M20/api-parent-1.0.0-M20.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-parent/1.0.0-M20/api-parent-1.0.0-M20.pom (27 kB at 300 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-util/1.0.0-M20/api-util-1.0.0-M20.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/directory/api/api-util/1.0.0-M20/api-util-1.0.0-M20.pom (2.4 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.6/zookeeper-3.4.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.6/zookeeper-3.4.6.pom (3.4 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom (3.0 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom (9.3 kB at 83 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.6.1/slf4j-log4j12-1.6.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.6.1/slf4j-log4j12-1.6.1.pom (1.7 kB at 9.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.16/log4j-1.2.16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.16/log4j-1.2.16.pom (20 kB at 234 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jline/jline/0.9.94/jline-0.9.94.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jline/jline/0.9.94/jline-0.9.94.pom (6.4 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.pom (26 kB at 285 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.6.0/curator-framework-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.6.0/curator-framework-2.6.0.pom (2.2 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.6.0/apache-curator-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.6.0/apache-curator-2.6.0.pom (30 kB at 304 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.6.0/curator-client-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.6.0/curator-client-2.6.0.pom (2.3 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom (2.7 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom (12 kB at 149 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.42/jsch-0.1.42.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.42/jsch-0.1.42.pom (967 B at 6.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.6.0/curator-recipes-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.6.0/curator-recipes-2.6.0.pom (2.4 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/htrace/htrace-core/3.0.4/htrace-core-3.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/htrace/htrace-core/3.0.4/htrace-core-3.0.4.pom (2.8 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/htrace/htrace/3.0.4/htrace-3.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/htrace/htrace/3.0.4/htrace-3.0.4.pom (6.5 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/12.0.1/guava-12.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/12.0.1/guava-12.0.1.pom (5.3 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/12.0.1/guava-parent-12.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/12.0.1/guava-parent-12.0.1.pom (2.5 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.14/slf4j-api-1.7.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.14/slf4j-api-1.7.14.pom (2.8 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.14/slf4j-parent-1.7.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.14/slf4j-parent-1.7.14.pom (13 kB at 131 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.pom (26 kB at 366 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.pom (846 B at 8.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.1.0/metrics-parent-3.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/3.1.0/metrics-parent-3.1.0.pom (12 kB at 147 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.pom (967 B at 8.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.pom (1.4 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.4.2/jackson-databind-2.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.4.2/jackson-databind-2.4.2.pom (5.7 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.4/jackson-parent-2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.4/jackson-parent-2.4.pom (6.4 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/16/oss-parent-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/16/oss-parent-16.pom (19 kB at 195 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.4.0/jackson-annotations-2.4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.4.0/jackson-annotations-2.4.0.pom (1.2 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.4.2/jackson-core-2.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.4.2/jackson-core-2.4.2.pom (4.8 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javolution/javolution/5.5.1/javolution-5.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javolution/javolution/5.5.1/javolution-5.5.1.pom (14 kB at 159 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.4/ST4-4.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.4/ST4-4.0.4.pom (9.6 kB at 127 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.pom (4.1 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.3/antlr-master-3.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.3/antlr-master-3.3.pom (9.4 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.pom (7.5 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.pom (632 B at 6.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/derby/derby/10.14.2.0/derby-10.14.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/derby/derby/10.14.2.0/derby-10.14.2.0.pom (2.3 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/derby/derby-project/10.14.2.0/derby-project-10.14.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/derby/derby-project/10.14.2.0/derby-project-10.14.2.0.pom (5.9 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libfb303/0.9.3/libfb303-0.9.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libfb303/0.9.3/libfb303-0.9.3.pom (2.9 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.9.3/libthrift-0.9.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.9.3/libthrift-0.9.3.pom (3.3 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.12/slf4j-api-1.7.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.12/slf4j-api-1.7.12.pom (2.7 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.12/slf4j-parent-1.7.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.12/slf4j-parent-1.7.12.pom (12 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.4.1/httpclient-4.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.4.1/httpclient-4.4.1.pom (6.4 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.4.1/httpcomponents-client-4.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.4.1/httpcomponents-client-4.4.1.pom (16 kB at 201 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/7/project-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/7/project-7.pom (27 kB at 281 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.1/httpcore-4.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.1/httpcore-4.4.1.pom (4.6 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.1/httpcomponents-core-4.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.1/httpcomponents-core-4.4.1.pom (13 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.9/commons-codec-1.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.9/commons-codec-1.9.pom (12 kB at 158 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/32/commons-parent-32.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/32/commons-parent-32.pom (53 kB at 652 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.4/caffeine-2.8.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.4/caffeine-2.8.4.pom (2.1 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.4.0/checker-qual-3.4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.4.0/checker-qual-3.4.0.pom (2.2 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom (2.1 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom (5.4 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/5.2.0/curator-recipes-5.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/5.2.0/curator-recipes-5.2.0.pom (3.6 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.pom (15 kB at 188 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.pom (29 kB at 263 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jline/jline/2.14.6/jline-2.14.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jline/jline/2.14.6/jline-2.14.6.pom (20 kB at 207 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-rewrite/9.4.40.v20210413/jetty-rewrite-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-rewrite/9.4.40.v20210413/jetty-rewrite-9.4.40.v20210413.pom (1.4 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.9/joda-time-2.9.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.9/joda-time-2.9.9.pom (35 kB at 364 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-1.2-api/2.18.0/log4j-1.2-api-2.18.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-1.2-api/2.18.0/log4j-1.2-api-2.18.0.pom (8.8 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.18.0/log4j-2.18.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.18.0/log4j-2.18.0.pom (72 kB at 761 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/5/logging-parent-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/5/logging-parent-5.pom (3.3 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.18.0/log4j-api-2.18.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.18.0/log4j-api-2.18.0.pom (15 kB at 149 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-web/2.18.0/log4j-web-2.18.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-web/2.18.0/log4j-web-2.18.0.pom (7.1 kB at 94 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.18.0/log4j-core-2.18.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.18.0/log4j-core-2.18.0.pom (23 kB at 252 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.18.0/log4j-slf4j-impl-2.18.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.18.0/log4j-slf4j-impl-2.18.0.pom (12 kB at 144 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.23.0/commons-compress-1.23.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.23.0/commons-compress-1.23.0.pom (22 kB at 193 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.10.13/ant-1.10.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.10.13/ant-1.10.13.pom (17 kB at 174 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-parent/1.10.13/ant-parent-1.10.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-parent/1.10.13/ant-parent-1.10.13.pom (6.6 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.pom (3.2 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/sf/jpam/jpam/1.1/jpam-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/sf/jpam/jpam/1.1/jpam-1.1.pom (14 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tez/tez-api/0.10.2/tez-api-0.10.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tez/tez-api/0.10.2/tez-api-0.10.2.pom (7.8 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tez/tez/0.10.2/tez-0.10.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tez/tez/0.10.2/tez-0.10.2.pom (46 kB at 556 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom (11 kB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom (15 kB at 154 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 186 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 958 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.30/slf4j-log4j12-1.7.30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.30/slf4j-log4j12-1.7.30.pom (1.1 kB at 7.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.pom (1.1 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-client/3.3.1/hadoop-yarn-client-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-client/3.3.1/hadoop-yarn-client-3.3.1.pom (7.2 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.40.v20210413/websocket-client-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.40.v20210413/websocket-client-9.4.40.v20210413.pom (4.6 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-parent/9.4.40.v20210413/websocket-parent-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-parent/9.4.40.v20210413/websocket-parent-9.4.40.v20210413.pom (1.4 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.40.v20210413/jetty-client-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.40.v20210413/jetty-client-9.4.40.v20210413.pom (5.0 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.40.v20210413/websocket-common-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.40.v20210413/websocket-common-9.4.40.v20210413.pom (3.6 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.40.v20210413/websocket-api-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.40.v20210413/websocket-api-9.4.40.v20210413.pom (2.5 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jline/jline/3.9.0/jline-3.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jline/jline/3.9.0/jline-3.9.0.pom (15 kB at 145 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jline/jline-parent/3.9.0/jline-parent-3.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jline/jline-parent/3.9.0/jline-parent-3.9.0.pom (18 kB at 175 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom (21 kB at 207 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/38/commons-parent-38.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/38/commons-parent-38.pom (62 kB at 707 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.pom (3.9 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.3.4/jansi-2.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.3.4/jansi-2.3.4.pom (14 kB at 198 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.12/fusesource-pom-1.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.12/fusesource-pom-1.12.pom (15 kB at 200 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/tdunning/json/1.8/json-1.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/tdunning/json/1.8/json-1.8.pom (5.5 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-serde/4.0.0-beta-1/hive-serde-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-serde/4.0.0-beta-1/hive-serde-4.0.0-beta-1.pom (9.3 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service-rpc/4.0.0-beta-1/hive-service-rpc-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service-rpc/4.0.0-beta-1/hive-service-rpc-4.0.0-beta-1.pom (6.4 kB at 8.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 153 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-vector/12.0.0/arrow-vector-12.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-vector/12.0.0/arrow-vector-12.0.0.pom (10 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-java-root/12.0.0/arrow-java-root-12.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-java-root/12.0.0/arrow-java-root-12.0.0.pom (45 kB at 434 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.13.4/jackson-bom-2.13.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.13.4/jackson-bom-2.13.4.pom (17 kB at 197 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-bom/31.1-jre/guava-bom-31.1-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-bom/31.1-jre/guava-bom-31.1-jre.pom (1.7 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.82.Final/netty-bom-4.1.82.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.82.Final/netty-bom-4.1.82.Final.pom (13 kB at 169 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-bom/1.49.1/grpc-bom-1.49.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-bom/1.49.1/grpc-bom-1.49.1.pom (5.1 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.6/protobuf-bom-3.21.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.21.6/protobuf-bom-3.21.6.pom (3.5 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-format/12.0.0/arrow-format-12.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-format/12.0.0/arrow-format-12.0.0.pom (1.8 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.pom (4.6 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-core/12.0.0/arrow-memory-core-12.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-core/12.0.0/arrow-memory-core-12.0.0.pom (3.4 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory/12.0.0/arrow-memory-12.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory/12.0.0/arrow-memory-12.0.0.pom (1.4 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.pom (5.5 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.13.4/jackson-base-2.13.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.13.4/jackson-base-2.13.4.pom (9.9 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.pom (6.1 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.pom (16 kB at 111 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.pom (4.9 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.13.4/jackson-modules-java8-2.13.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.13.4/jackson-modules-java8-2.13.4.pom (3.2 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/carrotsearch/hppc/0.7.2/hppc-0.7.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/carrotsearch/hppc/0.7.2/hppc-0.7.2.pom (17 kB at 249 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/carrotsearch/hppc-parent/0.7.2/hppc-parent-0.7.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/carrotsearch/hppc-parent/0.7.2/hppc-parent-0.7.2.pom (20 kB at 253 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.11.1/avro-1.11.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.11.1/avro-1.11.1.pom (9.5 kB at 86 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.11.1/avro-parent-1.11.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-parent/1.11.1/avro-parent-1.11.1.pom (24 kB at 264 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.11.1/avro-toplevel-1.11.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro-toplevel/1.11.1/avro-toplevel-1.11.1.pom (25 kB at 241 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom (20 kB at 143 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.7/jackson-bom-2.12.7.pom (17 kB at 161 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom (7.5 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom (23 kB at 308 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.pom (5.5 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.12.7/jackson-base-2.12.7.pom (9.3 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7/jackson-databind-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.12.7/jackson-databind-2.12.7.pom (15 kB at 201 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.pom (6.0 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 187 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/sf/opencsv/opencsv/2.3/opencsv-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/sf/opencsv/opencsv/2.3/opencsv-2.3.pom (5.4 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-hadoop-bundle/1.13.0/parquet-hadoop-bundle-1.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-hadoop-bundle/1.13.0/parquet-hadoop-bundle-1.13.0.pom (2.6 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet/1.13.0/parquet-1.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet/1.13.0/parquet-1.13.0.pom (25 kB at 263 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/esri/geometry/esri-geometry-api/2.2.4/esri-geometry-api-2.2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/esri/geometry/esri-geometry-api/2.2.4/esri-geometry-api-2.2.4.pom (6.1 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.6/jackson-core-2.9.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.6/jackson-core-2.9.6.pom (4.1 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.6/jackson-base-2.9.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.6/jackson-base-2.9.6.pom (5.4 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.6/jackson-bom-2.9.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.6/jackson-bom-2.9.6.pom (12 kB at 148 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.1/jackson-parent-2.9.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.1/jackson-parent-2.9.1.1.pom (8.0 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/33/oss-parent-33.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/33/oss-parent-33.pom (22 kB at 280 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service/4.0.0-beta-1/hive-service-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service/4.0.0-beta-1/hive-service-4.0.0-beta-1.pom (16 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-exec/4.0.0-beta-1/hive-exec-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-exec/4.0.0-beta-1/hive-exec-4.0.0-beta-1.pom (42 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-v2/2.1.0/atlas-client-v2-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-v2/2.1.0/atlas-client-v2-2.1.0.pom (1.7 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client/2.1.0/atlas-client-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client/2.1.0/atlas-client-2.1.0.pom (2.2 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/apache-atlas/2.1.0/apache-atlas-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/apache-atlas/2.1.0/apache-atlas-2.1.0.pom (89 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-intg/2.1.0/atlas-intg-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-intg/2.1.0/atlas-intg-2.1.0.pom (4.8 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.1.1/hadoop-common-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.1.1/hadoop-common-3.1.1.pom (46 kB at 543 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.1.1/hadoop-project-dist-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project-dist/3.1.1/hadoop-project-dist-3.1.1.pom (18 kB at 226 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.1.1/hadoop-project-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-project/3.1.1/hadoop-project-3.1.1.pom (68 kB at 805 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.1.1/hadoop-main-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-main/3.1.1/hadoop-main-3.1.1.pom (26 kB at 254 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.1.1/hadoop-annotations-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.1.1/hadoop-annotations-3.1.1.pom (1.9 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.2/httpclient-4.5.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.2/httpclient-4.5.2.pom (6.4 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.2/httpcomponents-client-4.5.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.2/httpcomponents-client-4.5.2.pom (16 kB at 184 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.4/httpcore-4.4.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.4/httpcore-4.4.4.pom (5.5 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.4/httpcomponents-core-4.4.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.4/httpcomponents-core-4.4.4.pom (13 kB at 174 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.pom (15 kB at 131 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.pom (22 kB at 255 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/37/commons-parent-37.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/37/commons-parent-37.pom (63 kB at 508 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.1.1/hadoop-auth-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.1.1/hadoop-auth-3.1.1.pom (8.2 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/4.41.1/nimbus-jose-jwt-4.41.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/4.41.1/nimbus-jose-jwt-4.41.1.pom (13 kB at 187 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.pom (9.0 kB at 105 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.3/minidev-parent-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.3/minidev-parent-2.3.pom (8.5 kB at 121 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.pom (12 kB at 124 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom (1.9 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom (5.5 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom (9.5 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.9/zookeeper-3.4.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.9/zookeeper-3.4.9.pom (4.2 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.10.5.Final/netty-3.10.5.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty/3.10.5.Final/netty-3.10.5.Final.pom (29 kB at 412 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.12.0/curator-framework-2.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/2.12.0/curator-framework-2.12.0.pom (2.5 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.12.0/apache-curator-2.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/apache-curator/2.12.0/apache-curator-2.12.0.pom (32 kB at 443 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.12.0/curator-client-2.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/2.12.0/curator-client-2.12.0.pom (4.5 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.pom (4.0 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.pom (3.2 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.12.0/curator-recipes-2.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/2.12.0/curator-recipes-2.12.0.pom (2.9 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.7.8/jackson-databind-2.7.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.7.8/jackson-databind-2.7.8.pom (5.2 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.7/jackson-parent-2.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.7/jackson-parent-2.7.pom (8.1 kB at 109 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/25/oss-parent-25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/25/oss-parent-25.pom (19 kB at 242 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.7.0/jackson-annotations-2.7.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.7.0/jackson-annotations-2.7.0.pom (1.5 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.7.8/jackson-core-2.7.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.7.8/jackson-core-2.7.8.pom (5.1 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.pom (5.5 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.pom (7.1 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/24/oss-parent-24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/24/oss-parent-24.pom (19 kB at 162 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.6/commons-validator-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.6/commons-validator-1.6.pom (12 kB at 135 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.2/commons-beanutils-1.9.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.2/commons-beanutils-1.9.2.pom (14 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/33/commons-parent-33.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/33/commons-parent-33.pom (53 kB at 717 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.pom (10 kB at 113 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.9/jackson-jaxrs-base-2.9.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.9/jackson-jaxrs-base-2.9.9.pom (1.5 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.9.9/jackson-jaxrs-providers-2.9.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.9.9/jackson-jaxrs-providers-2.9.9.pom (4.1 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.9/jackson-base-2.9.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.9/jackson-base-2.9.9.pom (5.5 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.9/jackson-bom-2.9.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.9/jackson-bom-2.9.9.pom (12 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom (7.9 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/34/oss-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/34/oss-parent-34.pom (23 kB at 295 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.9/jackson-core-2.9.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.9/jackson-core-2.9.9.pom (4.1 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.pom (6.4 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.pom (1.9 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.0/jackson-parent-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.0/jackson-parent-2.9.0.pom (7.8 kB at 94 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/28/oss-parent-28.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/28/oss-parent-28.pom (20 kB at 250 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.9/jackson-jaxrs-json-provider-2.9.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.9/jackson-jaxrs-json-provider-2.9.9.pom (3.9 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.9/jackson-module-jaxb-annotations-2.9.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.9/jackson-module-jaxb-annotations-2.9.9.pom (2.0 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.9.9/jackson-modules-base-2.9.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.9.9/jackson-modules-base-2.9.9.pom (3.0 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.9/jackson-annotations-2.9.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.9/jackson-annotations-2.9.9.pom (2.6 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/4.3.20.RELEASE/spring-context-4.3.20.RELEASE.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/4.3.20.RELEASE/spring-context-4.3.20.RELEASE.pom (5.0 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/4.3.20.RELEASE/spring-aop-4.3.20.RELEASE.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/4.3.20.RELEASE/spring-aop-4.3.20.RELEASE.pom (2.7 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/4.3.20.RELEASE/spring-beans-4.3.20.RELEASE.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/4.3.20.RELEASE/spring-beans-4.3.20.RELEASE.pom (2.5 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/4.3.20.RELEASE/spring-core-4.3.20.RELEASE.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/4.3.20.RELEASE/spring-core-4.3.20.RELEASE.pom (2.5 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/4.3.20.RELEASE/spring-expression-4.3.20.RELEASE.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/4.3.20.RELEASE/spring-expression-4.3.20.RELEASE.pom (1.7 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.10/commons-configuration-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.10/commons-configuration-1.10.pom (21 kB at 259 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/cglib/cglib/2.2.2/cglib-2.2.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/cglib/cglib/2.2.2/cglib-2.2.2.pom (1.5 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1.pom (266 B at 2.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom (4.3 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-common/2.1.0/atlas-client-common-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-common/2.1.0/atlas-client-common-2.1.0.pom (1.9 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.4/httpclient-4.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.4/httpclient-4.5.4.pom (6.2 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.4/httpcomponents-client-4.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.4/httpcomponents-client-4.5.4.pom (15 kB at 163 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/10/httpcomponents-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/10/httpcomponents-parent-10.pom (34 kB at 437 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.7/httpcore-4.4.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.7/httpcore-4.4.7.pom (5.1 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.7/httpcomponents-core-4.4.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.7/httpcomponents-core-4.4.7.pom (14 kB at 148 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/8/project-8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/8/project-8.pom (35 kB at 427 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.10/commons-codec-1.10.pom (12 kB at 133 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/35/commons-parent-35.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/35/commons-parent-35.pom (58 kB at 621 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/15/apache-15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/15/apache-15.pom (15 kB at 198 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom (7.8 kB at 95 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom (10 kB at 109 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom (4.2 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom (1.8 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom (5.1 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-multipart/1.19/jersey-multipart-1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-multipart/1.19/jersey-multipart-1.19.pom (8.4 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.pom (13 kB at 92 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-dbcp2/2.9.0/commons-dbcp2-2.9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-dbcp2/2.9.0/commons-dbcp2-2.9.0.pom (20 kB at 249 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.10.0/commons-pool2-2.10.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.10.0/commons-pool2-2.10.0.pom (18 kB at 218 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.pom (18 kB at 221 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-vector-code-gen/4.0.0-beta-1/hive-vector-code-gen-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-vector-code-gen/4.0.0-beta-1/hive-vector-code-gen-4.0.0-beta-1.pom (1.7 kB at 5.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-tez/4.0.0-beta-1/hive-llap-tez-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-tez/4.0.0-beta-1/hive-llap-tez-4.0.0-beta-1.pom (8.4 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-client/4.0.0-beta-1/hive-llap-client-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-client/4.0.0-beta-1/hive-llap-client-4.0.0-beta-1.pom (8.0 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1.pom (10.0 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-api/0.10.5/jjwt-api-0.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-api/0.10.5/jjwt-api-0.10.5.pom (1.3 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-root/0.10.5/jjwt-root-0.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-root/0.10.5/jjwt-root-0.10.5.pom (22 kB at 289 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-impl/0.10.5/jjwt-impl-0.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-impl/0.10.5/jjwt-impl-0.10.5.pom (2.0 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-jackson/0.10.5/jjwt-jackson-0.10.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-jackson/0.10.5/jjwt-jackson-0.10.5.pom (1.6 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.6/jackson-databind-2.9.6.pom (6.3 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/1.0.1/aws-secretsmanager-caching-java-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/1.0.1/aws-secretsmanager-caching-java-1.0.1.pom (7.0 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.12.0/commons-io-2.12.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.12.0/commons-io-2.12.0.pom (20 kB at 254 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/57/commons-parent-57.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/57/commons-parent-57.pom (83 kB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom (5.6 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom (21 kB at 274 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/54/commons-parent-54.pom (82 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-registry/3.3.1/hadoop-yarn-registry-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-registry/3.3.1/hadoop-yarn-registry-3.3.1.pom (1.4 kB at 4.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.5.1/ivy-2.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.5.1/ivy-2.5.1.pom (6.8 kB at 99 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.pom (22 kB at 270 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/datanucleus/datanucleus-core/5.2.10/datanucleus-core-5.2.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/datanucleus/datanucleus-core/5.2.10/datanucleus-core-5.2.10.pom (5.1 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/datanucleus/datanucleus-maven-parent/5.0.0/datanucleus-maven-parent-5.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/datanucleus/datanucleus-maven-parent/5.0.0/datanucleus-maven-parent-5.0.0.pom (11 kB at 112 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.pom (1.5 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-netty/12.0.0/arrow-memory-netty-12.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-netty/12.0.0/arrow-memory-netty-12.0.0.pom (2.9 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.pom (9.3 kB at 106 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom (11 kB at 146 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom (3.8 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom (14 kB at 173 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.pom (1.9 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.10/json-smart-2.4.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.10/json-smart-2.4.10.pom (9.2 kB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.pom (11 kB at 149 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.3/asm-9.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.3/asm-9.3.pom (2.4 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/commons-compiler/3.0.11/commons-compiler-3.0.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/commons-compiler/3.0.11/commons-compiler-3.0.11.pom (1.2 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino-parent/3.0.11/janino-parent-3.0.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino-parent/3.0.11/janino-parent-3.0.11.pom (7.0 kB at 83 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino/3.0.11/janino-3.0.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino/3.0.11/janino-3.0.11.pom (2.0 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-server/4.0.0-beta-1/hive-llap-server-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-server/4.0.0-beta-1/hive-llap-server-4.0.0-beta-1.pom (16 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-all/4.1.77.Final/netty-all-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-all/4.1.77.Final/netty-all-4.1.77.Final.pom (33 kB at 287 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.pom (1.6 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.77.Final/netty-parent-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.77.Final/netty-parent-4.1.77.Final.pom (75 kB at 846 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.pom (4.4 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-dns/4.1.77.Final/netty-codec-dns-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-dns/4.1.77.Final/netty-codec-dns-4.1.77.Final.pom (2.1 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-haproxy/4.1.77.Final/netty-codec-haproxy-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-haproxy/4.1.77.Final/netty-codec-haproxy-4.1.77.Final.pom (1.8 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.77.Final/netty-codec-http-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.77.Final/netty-codec-http-4.1.77.Final.pom (3.3 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.77.Final/netty-codec-http2-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.77.Final/netty-codec-http2-4.1.77.Final.pom (3.6 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-memcache/4.1.77.Final/netty-codec-memcache-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-memcache/4.1.77.Final/netty-codec-memcache-4.1.77.Final.pom (2.0 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-mqtt/4.1.77.Final/netty-codec-mqtt-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-mqtt/4.1.77.Final/netty-codec-mqtt-4.1.77.Final.pom (2.1 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-redis/4.1.77.Final/netty-codec-redis-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-redis/4.1.77.Final/netty-codec-redis-4.1.77.Final.pom (2.0 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-smtp/4.1.77.Final/netty-codec-smtp-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-smtp/4.1.77.Final/netty-codec-smtp-4.1.77.Final.pom (2.0 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.77.Final/netty-codec-socks-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.77.Final/netty-codec-socks-4.1.77.Final.pom (2.0 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-stomp/4.1.77.Final/netty-codec-stomp-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-stomp/4.1.77.Final/netty-codec-stomp-4.1.77.Final.pom (2.0 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-xml/4.1.77.Final/netty-codec-xml-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-xml/4.1.77.Final/netty-codec-xml-4.1.77.Final.pom (1.9 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.pom (13 kB at 134 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.pom (3.7 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.77.Final/netty-handler-proxy-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.77.Final/netty-handler-proxy-4.1.77.Final.pom (2.8 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.pom (1.6 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns/4.1.77.Final/netty-resolver-dns-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns/4.1.77.Final/netty-resolver-dns-4.1.77.Final.pom (3.2 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.pom (1.9 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-rxtx/4.1.77.Final/netty-transport-rxtx-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-rxtx/4.1.77.Final/netty-transport-rxtx-4.1.77.Final.pom (1.8 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-sctp/4.1.77.Final/netty-transport-sctp-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-sctp/4.1.77.Final/netty-transport-sctp-4.1.77.Final.pom (2.4 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-udt/4.1.77.Final/netty-transport-udt-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-udt/4.1.77.Final/netty-transport-udt-4.1.77.Final.pom (2.7 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.pom (2.1 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.pom (26 kB at 263 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.77.Final/netty-transport-classes-kqueue-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.77.Final/netty-transport-classes-kqueue-4.1.77.Final.pom (2.1 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.77.Final/netty-resolver-dns-classes-macos-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.77.Final/netty-resolver-dns-classes-macos-4.1.77.Final.pom (2.0 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final.pom (19 kB at 164 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-kqueue/4.1.77.Final/netty-transport-native-kqueue-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-kqueue/4.1.77.Final/netty-transport-native-kqueue-4.1.77.Final.pom (25 kB at 257 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.77.Final/netty-resolver-dns-native-macos-4.1.77.Final.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.77.Final/netty-resolver-dns-native-macos-4.1.77.Final.pom (13 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.pom (7.8 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/lmax/disruptor/3.3.7/disruptor-3.3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/lmax/disruptor/3.3.7/disruptor-3.3.7.pom (1.3 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-hplsql/4.0.0-beta-1/hive-hplsql-4.0.0-beta-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-hplsql/4.0.0-beta-1/hive-hplsql-4.0.0-beta-1.pom (4.6 kB at 7.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.9.3/antlr4-runtime-4.9.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.9.3/antlr4-runtime-4.9.3.pom (3.6 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.9.3/antlr4-master-4.9.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.9.3/antlr4-master-4.9.3.pom (4.4 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.31/nimbus-jose-jwt-9.31.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.31/nimbus-jose-jwt-9.31.pom (13 kB at 155 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-runner/9.4.40.v20210413/jetty-runner-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-runner/9.4.40.v20210413/jetty-runner-9.4.40.v20210413.pom (4.6 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-plus/9.4.40.v20210413/jetty-plus-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-plus/9.4.40.v20210413/jetty-plus-9.4.40.v20210413.pom (2.5 kB at 7.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jndi/9.4.40.v20210413/jetty-jndi-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jndi/9.4.40.v20210413/jetty-jndi-9.4.40.v20210413.pom (2.6 kB at 7.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-annotations/9.4.40.v20210413/jetty-annotations-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-annotations/9.4.40.v20210413/jetty-annotations-9.4.40.v20210413.pom (2.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.0/asm-9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.0/asm-9.0.pom (2.7 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.pom (3.3 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.pom (2.9 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.pom (3.0 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jaas/9.4.40.v20210413/jetty-jaas-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jaas/9.4.40.v20210413/jetty-jaas-9.4.40.v20210413.pom (3.8 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.40.v20210413/websocket-server-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.40.v20210413/websocket-server-9.4.40.v20210413.pom (4.1 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.40.v20210413/websocket-servlet-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.40.v20210413/websocket-servlet-9.4.40.v20210413.pom (2.2 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jsp/9.4.40.v20210413/apache-jsp-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jsp/9.4.40.v20210413/apache-jsp-9.4.40.v20210413.pom (4.3 kB at 40 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-schemas/3.1.2/jetty-schemas-3.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-schemas/3.1.2/jetty-schemas-3.1.2.pom (5.3 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-toolchain/1.6/jetty-toolchain-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-toolchain/1.6/jetty-toolchain-1.6.pom (17 kB at 208 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jstl/9.4.40.v20210413/apache-jstl-9.4.40.v20210413.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jstl/9.4.40.v20210413/apache-jstl-9.4.40.v20210413.pom (2.3 kB at 9.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.pom (5.3 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard/1.2.5/taglibs-standard-1.2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard/1.2.5/taglibs-standard-1.2.5.pom (4.3 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-parent/3/taglibs-parent-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-parent/3/taglibs-parent-3.pom (7.6 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.pom (6.9 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-saml-opensamlv3/4.5.5/pac4j-saml-opensamlv3-4.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-saml-opensamlv3/4.5.5/pac4j-saml-opensamlv3-4.5.5.pom (10 kB at 106 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j/4.5.5/pac4j-4.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j/4.5.5/pac4j-4.5.5.pom (18 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-core/4.5.5/pac4j-core-4.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-core/4.5.5/pac4j-core-4.5.5.pom (4.8 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-core/3.4.5/opensaml-core-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-core/3.4.5/opensaml-core-3.4.5.pom (2.6 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-parent/3.4.5/opensaml-parent-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-parent/3.4.5/opensaml-parent-3.4.5.pom (6.9 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/parent/7.11.0/parent-7.11.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/shibboleth/parent/7.11.0/parent-7.11.0.pom (48 kB at 503 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/4.3.19.RELEASE/spring-framework-bom-4.3.19.RELEASE.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/4.3.19.RELEASE/spring-framework-bom-4.3.19.RELEASE.pom (5.1 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9/joda-time-2.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9/joda-time-2.9.pom (29 kB at 354 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/utilities/java-support/7.5.1/java-support-7.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/shibboleth/utilities/java-support/7.5.1/java-support-7.5.1.pom (5.9 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.pom (6.8 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/20.0/guava-parent-20.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/20.0/guava-parent-20.0.pom (9.9 kB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-api/3.4.5/opensaml-saml-api-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-api/3.4.5/opensaml-saml-api-3.4.5.pom (2.6 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-api/3.4.5/opensaml-xmlsec-api-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-api/3.4.5/opensaml-xmlsec-api-3.4.5.pom (2.1 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-api/3.4.5/opensaml-security-api-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-api/3.4.5/opensaml-security-api-3.4.5.pom (3.3 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-api/3.4.5/opensaml-messaging-api-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-api/3.4.5/opensaml-messaging-api-3.4.5.pom (1.8 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.3/httpclient-4.5.3.pom (6.4 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.3/httpcomponents-client-4.5.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.3/httpcomponents-client-4.5.3.pom (16 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.6/httpcore-4.4.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.6/httpcore-4.4.6.pom (5.1 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.6/httpcomponents-core-4.4.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.6/httpcomponents-core-4.4.6.pom (13 kB at 105 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.1.3/cryptacular-1.1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.1.3/cryptacular-1.1.3.pom (12 kB at 105 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.59/bcprov-jdk15on-1.59.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.59/bcprov-jdk15on-1.59.pom (1.1 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-api/3.4.5/opensaml-soap-api-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-api/3.4.5/opensaml-soap-api-3.4.5.pom (1.7 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-api/3.4.5/opensaml-profile-api-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-api/3.4.5/opensaml-profile-api-3.4.5.pom (2.6 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-api/3.4.5/opensaml-storage-api-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-api/3.4.5/opensaml-storage-api-3.4.5.pom (1.3 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-impl/3.4.5/opensaml-saml-impl-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-impl/3.4.5/opensaml-saml-impl-3.4.5.pom (6.1 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-impl/3.4.5/opensaml-security-impl-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-impl/3.4.5/opensaml-security-impl-3.4.5.pom (2.5 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-impl/3.4.5/opensaml-xmlsec-impl-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-impl/3.4.5/opensaml-xmlsec-impl-3.4.5.pom (3.8 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-impl/3.4.5/opensaml-soap-impl-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-impl/3.4.5/opensaml-soap-impl-3.4.5.pom (2.8 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-impl/3.4.5/opensaml-profile-impl-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-impl/3.4.5/opensaml-profile-impl-3.4.5.pom (3.4 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-impl/3.4.5/opensaml-messaging-impl-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-impl/3.4.5/opensaml-messaging-impl-3.4.5.pom (2.2 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-impl/3.4.5/opensaml-storage-impl-3.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-impl/3.4.5/opensaml-storage-impl-3.4.5.pom (6.4 kB at 84 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ldaptive/ldaptive/1.0.13/ldaptive-1.0.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ldaptive/ldaptive/1.0.13/ldaptive-1.0.13.pom (9.5 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/json/javax.json-api/1.0/javax.json-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/json/javax.json-api/1.0/javax.json-api-1.0.pom (6.4 kB at 70 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/json/1.0/json-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/json/1.0/json-1.0.pom (10 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/spy/spymemcached/2.12.3/spymemcached-2.12.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/spy/spymemcached/2.12.3/spymemcached-2.12.3.pom (1.9 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.pom (9.2 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/json/1.0.4/json-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/json/1.0.4/json-1.0.4.pom (11 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom (11 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom (13 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom (2.4 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.2.4/cryptacular-1.2.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.2.4/cryptacular-1.2.4.pom (13 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.pom -[INFO] Downloading from repository-release: https://repository.apache.org/content/repositories/releases/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.pom -[INFO] Downloading from shibboleth: https://build.shibboleth.net/nexus/content/groups/public/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.pom -[INFO] Downloaded from shibboleth: https://build.shibboleth.net/nexus/content/groups/public/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.pom (6.7 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/parent-v3/9/parent-v3-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/shibboleth/parent-v3/9/parent-v3-9.pom (40 kB at 421 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/utilities/java-support/7.2.0/java-support-7.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/shibboleth/utilities/java-support/7.2.0/java-support-7.2.0.pom (4.4 kB at 59 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.pom (5.7 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom (7.7 kB at 90 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-core/3.2.0/opensaml-core-3.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-core/3.2.0/opensaml-core-3.2.0.pom (2.1 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-parent/3.2.0/opensaml-parent-3.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-parent/3.2.0/opensaml-parent-3.2.0.pom (4.5 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-api/3.2.0/opensaml-security-api-3.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-api/3.2.0/opensaml-security-api-3.2.0.pom (2.2 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-api/3.2.0/opensaml-messaging-api-3.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-api/3.2.0/opensaml-messaging-api-3.2.0.pom (1.5 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.3.6/httpclient-4.3.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.3.6/httpclient-4.3.6.pom (5.2 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.3.6/httpcomponents-client-4.3.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.3.6/httpcomponents-client-4.3.6.pom (16 kB at 170 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.3.3/httpcore-4.3.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.3.3/httpcore-4.3.3.pom (4.6 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.3.3/httpcomponents-core-4.3.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.3.3/httpcomponents-core-4.3.3.pom (13 kB at 150 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.0/cryptacular-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.0/cryptacular-1.0.pom (9.1 kB at 128 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.50/bcprov-jdk15on-1.50.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.50/bcprov-jdk15on-1.50.pom (1.2 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.53/bcprov-jdk15on-1.53.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.53/bcprov-jdk15on-1.53.pom (1.2 kB at 9.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-api/3.2.0/opensaml-xmlsec-api-3.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-api/3.2.0/opensaml-xmlsec-api-3.2.0.pom (1.8 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.pom (9.3 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-impl/3.2.0/opensaml-xmlsec-impl-3.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-impl/3.2.0/opensaml-xmlsec-impl-3.2.0.pom (1.9 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-impl/3.2.0/opensaml-security-impl-3.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-impl/3.2.0/opensaml-security-impl-3.2.0.pom (1.9 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.6/joda-time-2.10.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.6/joda-time-2.10.6.pom (37 kB at 373 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.pom (10 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-parent/2.3/velocity-engine-parent-2.3.pom (14 kB at 154 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-master/4/velocity-master-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-master/4/velocity-master-4.pom (7.8 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.pom (30 kB at 330 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom (78 kB at 1.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.pom (1.2 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/santuario/xmlsec/2.3.0/xmlsec-2.3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/santuario/xmlsec/2.3.0/xmlsec-2.3.0.pom (30 kB at 329 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-runtime/2.4.1/jamon-runtime-2.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-runtime/2.4.1/jamon-runtime-2.4.1.pom (1.5 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-java-parent/2.4.1/jamon-java-parent-2.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-java-parent/2.4.1/jamon-java-parent-2.4.1.pom (4.4 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-parent/2.4.1/jamon-parent-2.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-parent/2.4.1/jamon-parent-2.4.1.pom (7.7 kB at 84 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.15.0/libthrift-0.15.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.15.0/libthrift-0.15.0.pom (2.7 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.28/slf4j-api-1.7.28.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.28/slf4j-api-1.7.28.pom (3.8 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.28/slf4j-parent-1.7.28.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.28/slf4j-parent-1.7.28.pom (14 kB at 194 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10.pom (6.6 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.10/httpcomponents-client-4.5.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.10/httpcomponents-client-4.5.10.pom (16 kB at 178 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.pom (5.0 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.12/httpcomponents-core-4.4.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.12/httpcomponents-core-4.4.12.pom (13 kB at 176 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/2.0.6/slf4j-simple-2.0.6.jar (15 kB at 181 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar (63 kB at 388 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 256 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-metastore/4.0.0-beta-1/hive-metastore-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar (361 kB at 1.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-common/4.0.0-beta-1/hive-common-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjrt/1.9.8.M1/aspectjrt-1.9.8.M1.jar (123 kB at 627 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-classification/4.0.0-beta-1/hive-classification-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 1.8 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-storage-api/4.0.0-beta-1/hive-storage-api-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.20.2/assertj-core-3.20.2.jar (4.9 MB at 14 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar (587 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-core/1.8.3/orc-core-1.8.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-metastore/4.0.0-beta-1/hive-metastore-4.0.0-beta-1.jar (41 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-shims/1.8.3/orc-shims-1.8.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-classification/4.0.0-beta-1/hive-classification-4.0.0-beta-1.jar (11 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/airlift/aircompressor/0.21/aircompressor-0.21.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-core/1.8.3/orc-core-1.8.3.jar (1.2 MB at 2.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/17.0.0/annotations-17.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/orc/orc-shims/1.8.3/orc-shims-1.8.3.jar (29 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/threeten/threeten-extra/1.7.1/threeten-extra-1.7.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-storage-api/4.0.0-beta-1/hive-storage-api-4.0.0-beta-1.jar (264 kB at 401 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/17.0.0/annotations-17.0.0.jar (19 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.40.v20210413/jetty-http-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/airlift/aircompressor/0.21/aircompressor-0.21.jar (184 kB at 264 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-rewrite/9.4.40.v20210413/jetty-rewrite-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/jline/jline/2.14.6/jline-2.14.6.jar (269 kB at 357 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.40.v20210413/jetty-webapp-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/threeten/threeten-extra/1.7.1/threeten-extra-1.7.1.jar (257 kB at 309 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.40.v20210413/jetty-xml-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.40.v20210413/jetty-http-9.4.40.v20210413.jar (222 kB at 266 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.9/joda-time-2.9.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.40.v20210413/jetty-webapp-9.4.40.v20210413.jar (140 kB at 164 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-web/2.18.0/log4j-web-2.18.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-rewrite/9.4.40.v20210413/jetty-rewrite-9.4.40.v20210413.jar (45 kB at 49 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tez/tez-api/0.10.2/tez-api-0.10.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.9.9/joda-time-2.9.9.jar (634 kB at 665 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.1/hadoop-auth-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-auth/3.3.1/hadoop-auth-3.3.1.jar (104 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.30/slf4j-log4j12-1.7.30.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.40.v20210413/jetty-xml-9.4.40.v20210413.jar (68 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.1/hadoop-annotations-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-web/2.18.0/log4j-web-2.18.0.jar (36 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-api/3.3.1/hadoop-yarn-api-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-annotations/3.3.1/hadoop-annotations-3.3.1.jar (25 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.11/jaxb-api-2.2.11.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-log4j12/1.7.30/slf4j-log4j12-1.7.30.jar (12 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tez/tez-api/0.10.2/tez-api-0.10.2.jar (1.1 MB at 898 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-common/3.3.1/hadoop-yarn-common-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-common/4.0.0-beta-1/hive-common-4.0.0-beta-1.jar (597 kB at 484 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-servlet/4.0/guice-servlet-4.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.2.11/jaxb-api-2.2.11.jar (102 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/extensions/guice-servlet/4.0/guice-servlet-4.0.jar (77 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-protobuf_3_7/1.1.1/hadoop-shaded-protobuf_3_7-1.1.1.jar (1.5 MB at 1.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-guice/1.19/jersey-guice-1.19.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-common/3.3.1/hadoop-yarn-common-3.3.1.jar (3.0 MB at 2.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-client/3.3.1/hadoop-yarn-client-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0.jar (668 kB at 478 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jline/jline/3.9.0/jline-3.9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-api/3.3.1/hadoop-yarn-api-3.3.1.jar (3.6 MB at 2.6 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.19/jersey-json-1.19.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-guice/1.19/jersey-guice-1.19.jar (16 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 3.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.2/jackson-core-asl-1.9.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-client/3.3.1/hadoop-yarn-client-3.3.1.jar (288 kB at 196 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.2/jackson-mapper-asl-1.9.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-json/1.19/jersey-json-1.19.jar (165 kB at 110 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.9.2/jackson-jaxrs-1.9.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jline/jline/3.9.0/jline-3.9.0.jar (707 kB at 460 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.9.2/jackson-xc-1.9.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.2/jackson-core-asl-1.9.2.jar (228 kB at 147 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-hdfs-client/3.3.1/hadoop-hdfs-client-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-jaxrs/1.9.2/jackson-jaxrs-1.9.2.jar (18 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp/okhttp/2.7.5/okhttp-2.7.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.2.3-1/jaxb-impl-2.2.3-1.jar (890 kB at 562 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.6.0/okio-1.6.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-mapper-asl/1.9.2/jackson-mapper-asl-1.9.2.jar (766 kB at 479 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.3.4/jansi-2.3.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-xc/1.9.2/jackson-xc-1.9.2.jar (27 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/tdunning/json/1.8/json-1.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.6.0/okio-1.6.0.jar (66 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/2.3.4/jansi-2.3.4.jar (214 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp/okhttp/2.7.5/okhttp-2.7.5.jar (331 kB at 194 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/tdunning/json/1.8/json-1.8.jar (25 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.5/jackson-databind-2.13.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-hdfs-client/3.3.1/hadoop-hdfs-client-3.3.1.jar (5.5 MB at 3.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.5/jackson-core-2.13.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-core/3.1.0/metrics-core-3.1.0.jar (112 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/joshelser/dropwizard-metrics-hadoop-metrics2-reporter/0.1.2/dropwizard-metrics-hadoop-metrics2-reporter-0.1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-jvm/3.1.0/metrics-jvm-3.1.0.jar (36 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-serde/4.0.0-beta-1/hive-serde-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-json/3.1.0/metrics-json-3.1.0.jar (16 kB at 8.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/joshelser/dropwizard-metrics-hadoop-metrics2-reporter/0.1.2/dropwizard-metrics-hadoop-metrics2-reporter-0.1.2.jar (16 kB at 8.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-vector/12.0.0/arrow-vector-12.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.13.5/jackson-databind-2.13.5.jar (1.5 MB at 825 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-format/12.0.0/arrow-format-12.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.13.5/jackson-core-2.13.5.jar (375 kB at 198 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.jar (33 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/carrotsearch/hppc/0.7.2/hppc-0.7.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-format/12.0.0/arrow-format-12.0.0.jar (110 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-vector/12.0.0/arrow-vector-12.0.0.jar (1.9 MB at 932 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.11.1/avro-1.11.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.13.4/jackson-datatype-jsr310-2.13.4.jar (121 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/sf/opencsv/opencsv/2.3/opencsv-2.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/flatbuffers/flatbuffers-java/1.12.0/flatbuffers-java-1.12.0.jar (65 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-hadoop-bundle/1.13.0/parquet-hadoop-bundle-1.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/carrotsearch/hppc/0.7.2/hppc-0.7.2.jar (1.7 MB at 798 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/esri/geometry/esri-geometry-api/2.2.4/esri-geometry-api-2.2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/avro/avro/1.11.1/avro-1.11.1.jar (610 kB at 288 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-shims/4.0.0-beta-1/hive-shims-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/sf/opencsv/opencsv/2.3/opencsv-2.3.jar (20 kB at 9.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-common/4.0.0-beta-1/hive-shims-common-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/esri/geometry/esri-geometry-api/2.2.4/esri-geometry-api-2.2.4.jar (948 kB at 425 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-0.23/4.0.0-beta-1/hive-shims-0.23-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-serde/4.0.0-beta-1/hive-serde-4.0.0-beta-1.jar (987 kB at 388 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-resourcemanager/3.3.1/hadoop-yarn-server-resourcemanager-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/parquet/parquet-hadoop-bundle/1.13.0/parquet-hadoop-bundle-1.13.0.jar (6.2 MB at 2.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-common/3.3.1/hadoop-yarn-server-common-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-shims/4.0.0-beta-1/hive-shims-4.0.0-beta-1.jar (11 kB at 4.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/specs/geronimo-jcache_1.0_spec/1.0-alpha-1/geronimo-jcache_1.0_spec-1.0-alpha-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-common/4.0.0-beta-1/hive-shims-common-4.0.0-beta-1.jar (69 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ehcache/ehcache/3.3.1/ehcache-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/specs/geronimo-jcache_1.0_spec/1.0-alpha-1/geronimo-jcache_1.0_spec-1.0-alpha-1.jar (55 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP-java7/2.4.12/HikariCP-java7-2.4.12.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-common/3.3.1/hadoop-yarn-server-common-3.3.1.jar (1.4 MB at 498 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/microsoft/sqlserver/mssql-jdbc/6.2.1.jre7/mssql-jdbc-6.2.1.jre7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ehcache/ehcache/3.3.1/ehcache-3.3.1.jar (1.7 MB at 581 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-applicationhistoryservice/3.3.1/hadoop-yarn-server-applicationhistoryservice-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP-java7/2.4.12/HikariCP-java7-2.4.12.jar (134 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/de/ruedigermoeller/fst/2.50/fst-2.50.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-resourcemanager/3.3.1/hadoop-yarn-server-resourcemanager-3.3.1.jar (2.5 MB at 824 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/microsoft/sqlserver/mssql-jdbc/6.2.1.jre7/mssql-jdbc-6.2.1.jre7.jar (792 kB at 262 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/java-util/1.9.0/java-util-1.9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/de/ruedigermoeller/fst/2.50/fst-2.50.jar (388 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/json-io/2.5.1/json-io-2.5.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/shims/hive-shims-0.23/4.0.0-beta-1/hive-shims-0.23-4.0.0-beta-1.jar (61 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-web-proxy/3.3.1/hadoop-yarn-server-web-proxy-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.jar (54 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.60/bcpkix-jdk15on-1.60.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/json-io/2.5.1/json-io-2.5.1.jar (75 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-applicationhistoryservice/3.3.1/hadoop-yarn-server-applicationhistoryservice-3.3.1.jar (258 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-standalone-metastore-common/4.0.0-beta-1/hive-standalone-metastore-common-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/cedarsoftware/java-util/1.9.0/java-util-1.9.0.jar (58 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-jexl3/3.3/commons-jexl3-3.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.jar (1.0 MB at 322 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.51.0/grpc-netty-shaded-1.51.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcpkix-jdk15on/1.60/bcpkix-jdk15on-1.60.jar (797 kB at 244 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.25.0/perfmark-api-0.25.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-jexl3/3.3/commons-jexl3-3.3.jar (521 kB at 159 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.51.0/grpc-core-1.51.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-server-web-proxy/3.3.1/hadoop-yarn-server-web-proxy-3.3.1.jar (57 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/perfmark/perfmark-api/0.25.0/perfmark-api-0.25.0.jar (6.7 kB at 2.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.51.0/grpc-protobuf-1.51.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.51.0/grpc-core-1.51.0.jar (731 kB at 216 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.51.0/grpc-api-1.51.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.51.0/grpc-protobuf-1.51.0.jar (5.1 kB at 1.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.51.0/grpc-context-1.51.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar (3.1 kB at 892 B/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-api/1.51.0/grpc-api-1.51.0.jar (261 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.51.0/grpc-protobuf-lite-1.51.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.51.0/grpc-netty-shaded-1.51.0.jar (9.3 MB at 2.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.51.0/grpc-stub-1.51.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.51.0/grpc-context-1.51.0.jar (31 kB at 8.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.51.0/grpc-stub-1.51.0.jar (51 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/2.9.0/proto-google-common-protos-2.9.0.jar (1.8 MB at 486 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.21.7/protobuf-java-3.21.7.jar (1.7 MB at 457 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.4/caffeine-2.8.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar (62 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.4.0/checker-qual-3.4.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar (159 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javolution/javolution/5.5.1/javolution-5.5.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.51.0/grpc-protobuf-lite-1.51.0.jar (7.6 kB at 2.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.8.4/caffeine-2.8.4.jar (881 kB at 233 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.4.0/checker-qual-3.4.0.jar (212 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar (12 kB at 3.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.jar (2.6 MB at 664 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (8.8 kB at 2.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/derby/derby/10.14.2.0/derby-10.14.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javolution/javolution/5.5.1/javolution-5.5.1.jar (395 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libfb303/0.9.3/libfb303-0.9.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (3.5 kB at 881 B/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service/4.0.0-beta-1/hive-service-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.jar (58 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service-rpc/4.0.0-beta-1/hive-service-rpc-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libfb303/0.9.3/libfb303-0.9.3.jar (314 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-server/4.0.0-beta-1/hive-llap-server-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/derby/derby/10.14.2.0/derby-10.14.2.0.jar (3.2 MB at 794 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service/4.0.0-beta-1/hive-service-4.0.0-beta-1.jar (853 kB at 188 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-api/0.10.5/jjwt-api-0.10.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-api/0.10.5/jjwt-api-0.10.5.jar (75 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-impl/0.10.5/jjwt-impl-0.10.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-standalone-metastore-common/4.0.0-beta-1/hive-standalone-metastore-common-4.0.0-beta-1.jar (19 MB at 4.1 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-jackson/0.10.5/jjwt-jackson-0.10.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-impl/0.10.5/jjwt-impl-0.10.5.jar (68 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-client/4.0.0-beta-1/hive-llap-client-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jsonwebtoken/jjwt-jackson/0.10.5/jjwt-jackson-0.10.5.jar (4.7 kB at 996 B/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-all/4.1.77.Final/netty-all-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-all/4.1.77.Final/netty-all-4.1.77.Final.jar (4.4 kB at 906 B/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-service-rpc/4.0.0-beta-1/hive-service-rpc-4.0.0-beta-1.jar (1.8 MB at 369 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar (304 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-dns/4.1.77.Final/netty-codec-dns-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-dns/4.1.77.Final/netty-codec-dns-4.1.77.Final.jar (65 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-haproxy/4.1.77.Final/netty-codec-haproxy-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar (337 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.77.Final/netty-codec-http-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-haproxy/4.1.77.Final/netty-codec-haproxy-4.1.77.Final.jar (36 kB at 7.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.77.Final/netty-codec-http2-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.77.Final/netty-codec-http-4.1.77.Final.jar (639 kB at 125 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-memcache/4.1.77.Final/netty-codec-memcache-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1.jar (661 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-mqtt/4.1.77.Final/netty-codec-mqtt-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-memcache/4.1.77.Final/netty-codec-memcache-4.1.77.Final.jar (43 kB at 8.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-redis/4.1.77.Final/netty-codec-redis-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.77.Final/netty-codec-http2-4.1.77.Final.jar (474 kB at 91 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-smtp/4.1.77.Final/netty-codec-smtp-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-redis/4.1.77.Final/netty-codec-redis-4.1.77.Final.jar (45 kB at 8.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.77.Final/netty-codec-socks-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-mqtt/4.1.77.Final/netty-codec-mqtt-4.1.77.Final.jar (100 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-stomp/4.1.77.Final/netty-codec-stomp-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-smtp/4.1.77.Final/netty-codec-smtp-4.1.77.Final.jar (20 kB at 3.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-xml/4.1.77.Final/netty-codec-xml-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-stomp/4.1.77.Final/netty-codec-stomp-4.1.77.Final.jar (29 kB at 5.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.77.Final/netty-codec-socks-4.1.77.Final.jar (119 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.77.Final/netty-handler-proxy-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-xml/4.1.77.Final/netty-codec-xml-4.1.77.Final.jar (18 kB at 3.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-client/4.0.0-beta-1/hive-llap-client-4.0.0-beta-1.jar (154 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns/4.1.77.Final/netty-resolver-dns-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar (653 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar (38 kB at 6.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-rxtx/4.1.77.Final/netty-transport-rxtx-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.77.Final/netty-handler-proxy-4.1.77.Final.jar (24 kB at 4.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-sctp/4.1.77.Final/netty-transport-sctp-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar (481 kB at 86 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-udt/4.1.77.Final/netty-transport-udt-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns/4.1.77.Final/netty-resolver-dns-4.1.77.Final.jar (157 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-rxtx/4.1.77.Final/netty-transport-rxtx-4.1.77.Final.jar (18 kB at 3.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-server/4.0.0-beta-1/hive-llap-server-4.0.0-beta-1.jar (880 kB at 157 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.77.Final/netty-transport-classes-kqueue-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-sctp/4.1.77.Final/netty-transport-sctp-4.1.77.Final.jar (49 kB at 8.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.77.Final/netty-resolver-dns-classes-macos-4.1.77.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-udt/4.1.77.Final/netty-transport-udt-4.1.77.Final.jar (32 kB at 5.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar (43 kB at 7.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.77.Final/netty-resolver-dns-classes-macos-4.1.77.Final.jar (9.1 kB at 1.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-kqueue/4.1.77.Final/netty-transport-native-kqueue-4.1.77.Final-osx-x86_64.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-kqueue/4.1.77.Final/netty-transport-classes-kqueue-4.1.77.Final.jar (108 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-kqueue/4.1.77.Final/netty-transport-native-kqueue-4.1.77.Final-osx-aarch_64.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar (140 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.77.Final/netty-resolver-dns-native-macos-4.1.77.Final-osx-x86_64.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar (39 kB at 6.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.77.Final/netty-resolver-dns-native-macos-4.1.77.Final-osx-aarch_64.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar (38 kB at 6.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-kqueue/4.1.77.Final/netty-transport-native-kqueue-4.1.77.Final-osx-aarch_64.jar (25 kB at 4.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.40.v20210413/jetty-util-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-kqueue/4.1.77.Final/netty-transport-native-kqueue-4.1.77.Final-osx-x86_64.jar (26 kB at 4.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/lmax/disruptor/3.3.7/disruptor-3.3.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.77.Final/netty-resolver-dns-native-macos-4.1.77.Final-osx-x86_64.jar (19 kB at 3.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1-tests.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.77.Final/netty-resolver-dns-native-macos-4.1.77.Final-osx-aarch_64.jar (19 kB at 3.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-hplsql/4.0.0-beta-1/hive-hplsql-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/jettison/jettison/1.5.4/jettison-1.5.4.jar (90 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.9.3/antlr4-runtime-4.9.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/lmax/disruptor/3.3.7/disruptor-3.3.7.jar (86 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.31/nimbus-jose-jwt-9.31.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.40.v20210413/jetty-util-9.4.40.v20210413.jar (572 kB at 96 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.9.3/antlr4-runtime-4.9.3.jar (337 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/sf/jpam/jpam/1.1/jpam-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar (4.7 kB at 778 B/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.40.v20210413/jetty-server-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/sf/jpam/jpam/1.1/jpam-1.1.jar (12 kB at 2.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.40.v20210413/jetty-io-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/9.31/nimbus-jose-jwt-9.31.jar (759 kB at 125 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.40.v20210413/jetty-servlet-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.40.v20210413/jetty-io-9.4.40.v20210413.jar (170 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.40.v20210413/jetty-security-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.40.v20210413/jetty-servlet-9.4.40.v20210413.jar (146 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.40.v20210413/jetty-util-ajax-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.40.v20210413/jetty-security-9.4.40.v20210413.jar (118 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-runner/9.4.40.v20210413/jetty-runner-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.40.v20210413/jetty-server-9.4.40.v20210413.jar (711 kB at 113 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-plus/9.4.40.v20210413/jetty-plus-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.40.v20210413/jetty-util-ajax-9.4.40.v20210413.jar (65 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-annotations/9.4.40.v20210413/jetty-annotations-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-plus/9.4.40.v20210413/jetty-plus-9.4.40.v20210413.jar (66 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.0/asm-9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-common/4.0.0-beta-1/hive-llap-common-4.0.0-beta-1-tests.jar (45 kB at 7.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-annotations/9.4.40.v20210413/jetty-annotations-9.4.40.v20210413.jar (87 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.0/asm-commons-9.0.jar (72 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.0/asm-9.0.jar (122 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jaas/9.4.40.v20210413/jetty-jaas-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.0/asm-tree-9.0.jar (53 kB at 7.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.40.v20210413/websocket-server-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.0/asm-analysis-9.0.jar (33 kB at 5.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.40.v20210413/websocket-common-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-common/9.4.40.v20210413/websocket-common-9.4.40.v20210413.jar (214 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.40.v20210413/websocket-api-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jaas/9.4.40.v20210413/jetty-jaas-9.4.40.v20210413.jar (48 kB at 7.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.40.v20210413/websocket-client-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-runner/9.4.40.v20210413/jetty-runner-9.4.40.v20210413.jar (9.2 MB at 1.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.40.v20210413/jetty-client-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-server/9.4.40.v20210413/websocket-server-9.4.40.v20210413.jar (45 kB at 6.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.40.v20210413/websocket-servlet-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-hplsql/4.0.0-beta-1/hive-hplsql-4.0.0-beta-1.jar (755 kB at 110 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jndi/9.4.40.v20210413/jetty-jndi-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-api/9.4.40.v20210413/websocket-api-9.4.40.v20210413.jar (52 kB at 7.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jsp/9.4.40.v20210413/apache-jsp-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-client/9.4.40.v20210413/jetty-client-9.4.40.v20210413.jar (323 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-schemas/3.1.2/jetty-schemas-3.1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-servlet/9.4.40.v20210413/websocket-servlet-9.4.40.v20210413.jar (30 kB at 4.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jstl/9.4.40.v20210413/apache-jstl-9.4.40.v20210413.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/websocket/websocket-client/9.4.40.v20210413/websocket-client-9.4.40.v20210413.jar (46 kB at 6.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/toolchain/jetty-schemas/3.1.2/jetty-schemas-3.1.2.jar (200 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jsp/9.4.40.v20210413/apache-jsp-9.4.40.v20210413.jar (21 kB at 3.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.jar (40 kB at 5.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/5.2.0/curator-framework-5.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.jar (206 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/5.2.0/curator-client-5.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (96 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/5.2.0/curator-recipes-5.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-framework/5.2.0/curator-framework-5.2.0.jar (336 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-saml-opensamlv3/4.5.5/pac4j-saml-opensamlv3-4.5.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-jndi/9.4.40.v20210413/jetty-jndi-9.4.40.v20210413.jar (47 kB at 6.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-core/4.5.5/pac4j-core-4.5.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-recipes/5.2.0/curator-recipes-5.2.0.jar (316 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-core/3.4.5/opensaml-core-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/curator/curator-client/5.2.0/curator-client-5.2.0.jar (3.0 MB at 410 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/utilities/java-support/7.5.1/java-support-7.5.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/apache-jstl/9.4.40.v20210413/apache-jstl-9.4.40.v20210413.jar (13 kB at 1.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-api/3.4.5/opensaml-saml-api-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-core/4.5.5/pac4j-core-4.5.5.jar (230 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-api/3.4.5/opensaml-storage-api-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-core/3.4.5/opensaml-core-3.4.5.jar (182 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-impl/3.4.5/opensaml-saml-impl-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/shibboleth/utilities/java-support/7.5.1/java-support-7.5.1.jar (272 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-impl/3.4.5/opensaml-soap-impl-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-api/3.4.5/opensaml-saml-api-3.4.5.jar (408 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-api/3.4.5/opensaml-soap-api-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-api/3.4.5/opensaml-storage-api-3.4.5.jar (24 kB at 3.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-api/3.4.5/opensaml-xmlsec-api-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-impl/3.4.5/opensaml-soap-impl-3.4.5.jar (403 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-api/3.4.5/opensaml-security-api-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-saml-impl/3.4.5/opensaml-saml-impl-3.4.5.jar (1.2 MB at 156 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-impl/3.4.5/opensaml-security-impl-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-soap-api/3.4.5/opensaml-soap-api-3.4.5.jar (170 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-api/3.4.5/opensaml-profile-api-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-api/3.4.5/opensaml-security-api-3.4.5.jar (67 kB at 8.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-impl/3.4.5/opensaml-profile-impl-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-api/3.4.5/opensaml-xmlsec-api-3.4.5.jar (210 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-api/3.4.5/opensaml-messaging-api-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-security-impl/3.4.5/opensaml-security-impl-3.4.5.jar (112 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-impl/3.4.5/opensaml-messaging-impl-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-api/3.4.5/opensaml-profile-api-3.4.5.jar (31 kB at 4.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-impl/3.4.5/opensaml-storage-impl-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/pac4j/pac4j-saml-opensamlv3/4.5.5/pac4j-saml-opensamlv3-4.5.5.jar (193 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ldaptive/ldaptive/1.0.13/ldaptive-1.0.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-api/3.4.5/opensaml-messaging-api-3.4.5.jar (56 kB at 7.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/json/javax.json-api/1.0/javax.json-api-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-profile-impl/3.4.5/opensaml-profile-impl-3.4.5.jar (27 kB at 3.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/spy/spymemcached/2.12.3/spymemcached-2.12.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-messaging-impl/3.4.5/opensaml-messaging-impl-3.4.5.jar (20 kB at 2.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-storage-impl/3.4.5/opensaml-storage-impl-3.4.5.jar (75 kB at 9.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-impl/3.4.5/opensaml-xmlsec-impl-3.4.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/json/javax.json-api/1.0/javax.json-api-1.0.jar (20 kB at 2.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.2.4/cryptacular-1.2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar (85 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/spy/spymemcached/2.12.3/spymemcached-2.12.3.jar (474 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/opensaml/opensaml-xmlsec-impl/3.4.5/opensaml-xmlsec-impl-3.4.5.jar (297 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ldaptive/ldaptive/1.0.13/ldaptive-1.0.13.jar (798 kB at 102 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/cryptacular/cryptacular/1.2.4/cryptacular-1.2.4.jar (162 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/santuario/xmlsec/2.3.0/xmlsec-2.3.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.jar (64 kB at 8.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-runtime/2.4.1/jamon-runtime-2.4.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-engine-core/2.3/velocity-engine-core-2.3.jar (531 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-exec/4.0.0-beta-1/hive-exec-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jamon/jamon-runtime/2.4.1/jamon-runtime-2.4.1.jar (25 kB at 3.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-v2/2.1.0/atlas-client-v2-2.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/santuario/xmlsec/2.3.0/xmlsec-2.3.0.jar (1.1 MB at 141 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/cglib/cglib/2.2.2/cglib-2.2.2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.jar (4.8 MB at 591 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-common/2.1.0/atlas-client-common-2.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-v2/2.1.0/atlas-client-v2-2.1.0.jar (23 kB at 2.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.19/jersey-client-1.19.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/cglib/cglib/2.2.2/cglib-2.2.2.jar (287 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-intg/2.1.0/atlas-intg-2.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1.jar (44 kB at 5.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-client/1.19/jersey-client-1.19.jar (134 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.1.1/hadoop-common-3.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-intg/2.1.0/atlas-intg-2.1.0.jar (560 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 71 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-net/commons-net/3.6/commons-net-3.6.jar (307 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-common/3.1.1/hadoop-common-3.1.1.jar (4.0 MB at 481 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19/jersey-server-1.19.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/atlas/atlas-client-common/2.1.0/atlas-client-common-2.1.0.jar (38 kB at 4.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-servlet/1.19/jersey-servlet-1.19.jar (129 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar (101 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar (246 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.19/jersey-server-1.19.jar (703 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar (490 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.jar (617 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.1/re2j-1.1.jar (128 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar (281 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar (20 kB at 2.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar (113 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar (31 kB at 3.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.jar (1.5 MB at 172 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar (205 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar (227 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar (102 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar (65 kB at 7.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar (41 kB at 4.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar (116 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar (37 kB at 4.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar (19 kB at 2.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar (83 kB at 9.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar (20 kB at 2.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar (29 kB at 3.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.6/commons-validator-1.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar (162 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar (513 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.9/jackson-jaxrs-base-2.9.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.6/commons-validator-1.6.jar (186 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.9/jackson-jaxrs-json-provider-2.9.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar (81 kB at 8.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.9/jackson-module-jaxb-annotations-2.9.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar (146 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.9/jackson-annotations-2.9.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.9/jackson-jaxrs-base-2.9.9.jar (32 kB at 3.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.9/jackson-jaxrs-json-provider-2.9.9.jar (16 kB at 1.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/4.3.20.RELEASE/spring-context-4.3.20.RELEASE.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.9/jackson-annotations-2.9.9.jar (67 kB at 7.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/4.3.20.RELEASE/spring-aop-4.3.20.RELEASE.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 268 B/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/4.3.20.RELEASE/spring-beans-4.3.20.RELEASE.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.9/jackson-module-jaxb-annotations-2.9.9.jar (33 kB at 3.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/4.3.20.RELEASE/spring-core-4.3.20.RELEASE.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/4.3.20.RELEASE/spring-aop-4.3.20.RELEASE.jar (380 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/4.3.20.RELEASE/spring-expression-4.3.20.RELEASE.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/4.3.20.RELEASE/spring-context-4.3.20.RELEASE.jar (1.1 MB at 122 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.10/commons-configuration-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/4.3.20.RELEASE/spring-beans-4.3.20.RELEASE.jar (763 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/4.3.20.RELEASE/spring-expression-4.3.20.RELEASE.jar (275 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-dbcp2/2.9.0/commons-dbcp2-2.9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/4.3.20.RELEASE/spring-core-4.3.20.RELEASE.jar (1.1 MB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-configuration/commons-configuration/1.10/commons-configuration-1.10.jar (363 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar (284 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-vector-code-gen/4.0.0-beta-1/hive-vector-code-gen-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-dbcp2/2.9.0/commons-dbcp2-2.9.0.jar (211 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-tez/4.0.0-beta-1/hive-llap-tez-4.0.0-beta-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar (146 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/1.0.1/aws-secretsmanager-caching-java-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar (2.2 MB at 229 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.12.0/commons-io-2.12.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/amazonaws/secretsmanager/aws-secretsmanager-caching-java/1.0.1/aws-secretsmanager-caching-java-1.0.1.jar (17 kB at 1.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.12.0/commons-io-2.12.0.jar (474 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar (751 kB at 76 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-1.2-api/2.18.0/log4j-1.2-api-2.18.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar (238 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.18.0/log4j-api-2.18.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-1.2-api/2.18.0/log4j-1.2-api-2.18.0.jar (350 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.18.0/log4j-core-2.18.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.18.0/log4j-api-2.18.0.jar (315 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.18.0/log4j-slf4j-impl-2.18.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.18.0/log4j-core-2.18.0.jar (1.9 MB at 183 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.4/ST4-4.0.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-slf4j-impl/2.18.0/log4j-slf4j-impl-2.18.0.jar (25 kB at 2.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-vector-code-gen/4.0.0-beta-1/hive-vector-code-gen-4.0.0-beta-1.jar (49 kB at 4.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.4/ST4-4.0.4.jar (237 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.jar (149 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.10.13/ant-1.10.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.3/antlr-runtime-3.3.jar (164 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.jar (445 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.23.0/commons-compress-1.23.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.jar (21 kB at 2.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-registry/3.3.1/hadoop-yarn-registry-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.10.13/ant-1.10.13.jar (2.3 MB at 219 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-registry/3.3.1/hadoop-registry-3.3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-llap-tez/4.0.0-beta-1/hive-llap-tez-4.0.0-beta-1.jar (151 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-daemon/commons-daemon/1.0.13/commons-daemon-1.0.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-registry/3.3.1/hadoop-registry-3.3.1.jar (192 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.23.0/commons-compress-1.23.0.jar (1.1 MB at 100 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-daemon/commons-daemon/1.0.13/commons-daemon-1.0.13.jar (24 kB at 2.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.5.1/ivy-2.5.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar (308 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.7.1/zookeeper-3.7.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/thirdparty/hadoop-shaded-guava/1.1.1/hadoop-shaded-guava-1.1.1.jar (3.4 MB at 312 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.7.1/zookeeper-jute-3.7.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper/3.7.1/zookeeper-3.7.1.jar (1.3 MB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/zookeeper/zookeeper-jute/3.7.1/zookeeper-jute-3.7.1.jar (256 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.76.Final/netty-handler-4.1.76.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hadoop/hadoop-yarn-registry/3.3.1/hadoop-yarn-registry-3.3.1.jar (7.8 kB at 716 B/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.76.Final/netty-transport-native-epoll-4.1.76.Final.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/yetus/audience-annotations/0.12.0/audience-annotations-0.12.0.jar (21 kB at 1.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.76.Final/netty-transport-native-epoll-4.1.76.Final.jar (5.5 kB at 499 B/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/datanucleus/datanucleus-core/5.2.10/datanucleus-core-5.2.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.76.Final/netty-handler-4.1.76.Final.jar (528 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ivy/ivy/2.5.1/ivy-2.5.1.jar (1.4 MB at 127 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar (249 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-netty/12.0.0/arrow-memory-netty-12.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/datanucleus/datanucleus-core/5.2.10/datanucleus-core-5.2.10.jar (2.2 MB at 198 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-core/12.0.0/arrow-memory-core-12.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-netty/12.0.0/arrow-memory-netty-12.0.0.jar (39 kB at 3.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.jar (27 kB at 2.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/arrow/arrow-memory-core/12.0.0/arrow-memory-core-12.0.0.jar (111 kB at 9.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.jar (130 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.jar (852 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.jar (7.2 MB at 635 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/commons-compiler/3.0.11/commons-compiler-3.0.11.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar (278 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino/3.0.11/janino-3.0.11.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar (30 kB at 2.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-multipart/1.19/jersey-multipart-1.19.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar (120 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/commons-compiler/3.0.11/commons-compiler-3.0.11.jar (38 kB at 3.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19/jersey-core-1.19.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/janino/janino/3.0.11/janino-3.0.11.jar (847 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/hive/hive-exec/4.0.0-beta-1/hive-exec-4.0.0-beta-1.jar (83 MB at 7.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.15.0/libthrift-0.15.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/contribs/jersey-multipart/1.19/jersey-multipart-1.19.jar (53 kB at 4.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar (46 kB at 4.0 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.jar (62 kB at 5.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.19/jersey-core-1.19.jar (437 kB at 38 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.10/httpclient-4.5.10.jar (775 kB at 67 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/thrift/libthrift/0.15.0/libthrift-0.15.0.jar (306 kB at 26 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar (27 kB at 2.3 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.12/httpcore-4.4.12.jar (328 kB at 28 kB/s) -[INFO] Downloading from repository-release: https://repository.apache.org/content/repositories/releases/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.jar -[INFO] Downloading from shibboleth: https://build.shibboleth.net/nexus/content/groups/public/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.jar -[INFO] Downloaded from shibboleth: https://build.shibboleth.net/nexus/content/groups/public/net/shibboleth/tool/xmlsectool/2.0.0/xmlsectool-2.0.0.jar (39 kB at 112 kB/s) -[INFO] -[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 9.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 96 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom (4.1 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 90 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 106 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar (226 kB at 2.2 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 kB at 96 kB/s) -[INFO] Deleting /home/cc/sosp24-ae/wasabi/wasabi-testing/target -[INFO] -[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (2.6 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2.0 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3.0 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 5.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2.0 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (2.6 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (1.9 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (1.9 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (6.7 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom (1.9 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (1.8 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (1.4 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 4.2 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (3.9 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (1.7 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (2.1 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom (2.0 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom (1.3 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 151 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom (5.8 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 91 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 103 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom (889 B at 8.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (2.9 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3.0 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5.0 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom (890 B at 7.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom (2.8 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 180 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar (57 kB at 657 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar (116 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar (35 kB at 309 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar (152 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar (29 kB at 213 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar (21 kB at 120 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar (9.9 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar (5.9 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar (24 kB at 98 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar (14 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar (37 kB at 118 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 111 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar (87 kB at 251 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar (49 kB at 133 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar (10 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar (86 kB at 204 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 453 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar (223 kB at 468 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 252 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar (43 kB at 83 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar (61 kB at 117 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (6.8 kB at 13 kB/s) -[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! -[INFO] Copying 220 resources -[INFO] Copying 9 resources -[INFO] -[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 61 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 492 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 143 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 46 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 209 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 7.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 47 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 166 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom (5.0 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom (4.1 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 208 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom (2.4 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 192 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom (1.1 kB at 8.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom (8.4 kB at 63 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom (2.7 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 86 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom (1.1 kB at 9.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 6.3 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 34 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 252 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom (1.2 kB at 9.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom (1.3 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 43 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 2.0 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 124 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar (55 kB at 488 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 1.3 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar (27 kB at 142 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 1.6 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar (267 kB at 1.2 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar (122 kB at 549 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar (4.7 kB at 18 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar (23 kB at 87 kB/s) -[INFO] Changes detected - recompiling the module! :dependency -[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent! -[INFO] Compiling 9 source files with javac [debug target 1.8] to target/classes -[INFO] -[INFO] --- aspectj-maven-plugin:1.13:compile (default) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.pom (2.3 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 232 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 96 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 156 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 82 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 391 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom (3.0 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom (26 kB at 224 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 460 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom (4.1 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom (5.3 kB at 69 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom (2.4 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 213 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom (4.2 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom (14 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 94 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 209 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom (2.6 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom (14 kB at 169 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 162 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 124 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 96 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.pom (4.6 kB at 39 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom (3.4 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom (1.4 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom (1.9 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom (2.5 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 77 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 72 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom (8.8 kB at 96 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom (1.9 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 284 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 333 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 168 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 89 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 114 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 54 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 204 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom (4.3 kB at 38 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom (2.6 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom (19 kB at 155 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom (2.7 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom (2.8 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom (4.2 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom (3.8 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom (14 kB at 138 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 60 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 551 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom (11 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom (16 kB at 156 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom (7.8 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom (10 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom (4.2 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.pom (1.9 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.4.3/wagon-3.4.3.pom (21 kB at 161 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.pom (1.6 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.10/doxia-1.10.pom (18 kB at 149 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.pom (1.6 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom (3.0 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5.1 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 283 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 80 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 224 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 258 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (18 kB at 222 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 25 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.pom (7.7 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.10/doxia-sitetools-1.10.pom (14 kB at 146 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.pom (4.5 kB at 36 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 131 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 717 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 67 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 108 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.pom (3.4 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 6.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 57 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.pom (3.0 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.pom (2.0 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.10/doxia-modules-1.10.pom (2.7 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.pom (2.0 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 92 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 48 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 153 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 11 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 2.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 44 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 101 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 1.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 1.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.pom (7.6 kB at 87 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 62 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 24 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 66 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 22 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (4.9 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom (1.5 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom (15 kB at 206 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (41 kB at 399 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom (1.5 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom (3.4 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom (14 kB at 159 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom (748 B at 7.6 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom (3.8 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom (22 kB at 291 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (3.8 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom (4.1 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom (4.9 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom (9.4 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom (13 kB at 123 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom (3.0 kB at 33 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom (6.7 kB at 53 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom (3.0 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom (1.6 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom (2.6 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 8.8 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom (9.0 kB at 88 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom (653 B at 8.1 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom (4.3 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom (9.8 kB at 81 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom (12 kB at 133 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom (3.4 kB at 29 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom (145 B at 1.7 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom (3.1 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom (2.9 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 50 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.jar (47 kB at 547 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar (11 kB at 109 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 1.5 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.jar (215 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.jar (58 kB at 313 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar (205 kB at 769 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar (379 kB at 1.4 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 152 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.8.1/maven-compat-3.8.1.jar (288 kB at 779 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 131 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjtools/1.9.8.M1/aspectjtools-1.9.8.M1.jar (15 MB at 32 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar (14 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.jar (192 kB at 406 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.jar (44 kB at 92 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.jar (42 kB at 86 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.jar (38 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 23 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar (521 kB at 833 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar (2.6 MB at 3.9 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.jar (634 kB at 865 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.jar (66 kB at 90 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar (32 kB at 42 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar (41 kB at 55 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.jar (180 kB at 216 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.jar (27 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.jar (149 kB at 175 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar (14 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar (169 kB at 196 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 92 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.10/doxia-logging-api-1.10.jar (12 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.4.3/wagon-provider-api-3.4.3.jar (55 kB at 58 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar (4.2 kB at 4.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.10/doxia-sink-api-1.10.jar (12 kB at 12 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.10/doxia-site-renderer-1.10.jar (65 kB at 64 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar (183 kB at 172 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.10/doxia-core-1.10.jar (218 kB at 204 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 312 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 710 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 294 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.10/doxia-skin-model-1.10.jar (16 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.10/doxia-decoration-model-1.10.jar (60 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.10/doxia-module-xhtml-1.10.jar (17 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.10/doxia-module-xhtml5-1.10.jar (18 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 6.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar (237 kB at 190 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 9.4 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 349 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 197 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 107 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 255 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 177 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 318 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar (53 kB at 37 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 45 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 62 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 329 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar (18 kB at 12 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar (165 kB at 106 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 134 kB/s) -[INFO] Showing AJC message detail for messages of types: [error, warning, fail] -[WARNING] no match for this type name: org.apache.hadoop.hive.druid.DruidStorageHandlerUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:176 -(withincode(* org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hive.druid.DruidStorageHandlerUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:178 -(withincode(* org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hive.druid.DruidStorageHandlerUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:202 -(withincode(* org.apache.hadoop.hive.druid.DruidStorageHandlerUtils.publishSegmentWithShardSpec(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hive.hcatalog.templeton.LauncherDelegator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:204 -(withincode(* org.apache.hive.hcatalog.templeton.LauncherDelegator.killTempletonJobWithRetry(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hive.hcatalog.templeton.LauncherDelegator [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:205 -call(* org.apache.hive.hcatalog.templeton.LauncherDelegator.killJob(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hive.kafka.RetryUtils [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:206 -(withincode(* org.apache.hadoop.hive.kafka.RetryUtils.retry(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:234 -(withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:236 -(withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:238 -(withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:240 -(withincode(* org.apache.hadoop.hive.metastore.HiveMetaStoreClientPreCatalog.open(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hive.jdbc.HiveConnection [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:309 -((withincode(* org.apache.hive.jdbc.HiveConnection.HiveConnection(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hive.jdbc.HiveConnection [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:310 -call(* org.apache.hive.jdbc.HiveConnection.executeInitSql(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hive.jdbc.HiveConnection [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:311 -(withincode(* org.apache.hive.jdbc.HiveConnection.HiveConnection(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hive.jdbc.HiveConnection [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:312 -call(* org.apache.hive.jdbc.HiveConnection.openSession(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hive.jdbc.HiveConnection [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:313 -(withincode(* org.apache.hive.jdbc.HiveConnection.HiveConnection(..)) && - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] no match for this type name: org.apache.hive.jdbc.HiveConnection [Xlint:invalidAbsoluteTypeName] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:314 -call(* org.apache.hive.jdbc.HiveConnection.openTransport(..) throws *Exception*)) || - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHive has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:331 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHive has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:252 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHive has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:135 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHive has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:93 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHive has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:76 - -[WARNING] advice defined in edu.uchicago.cs.systems.wasabi.InterceptHive has not been applied [Xlint:adviceDidNotMatch] - /home/cc/sosp24-ae/wasabi/wasabi-testing/src/main/aspect/edu/uchicago/cs/systems/wasabi/InterceptHive.aj:58 - -[INFO] -[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ wasabi --- -[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent! -[INFO] skip non existing resourceDirectory /home/cc/sosp24-ae/wasabi/wasabi-testing/src/test/resources -[INFO] -[INFO] --- aspectj-maven-plugin:1.13:test-compile (default) @ wasabi --- -[WARNING] No sources found skipping aspectJ compile -[INFO] -[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (1.5 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 kB at 134 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 kB at 78 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.pom (3.0 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.pom (2.5 kB at 31 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.pom (5.5 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.pom (1.6 kB at 13 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.1/maven-plugin-tools-3.1.pom (16 kB at 174 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (1.6 kB at 9.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 35 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 182 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (2.7 kB at 17 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (2.1 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (3.1 kB at 28 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (2.0 kB at 20 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (2.7 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (1.9 kB at 14 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2.0 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (7.8 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2.0 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (1.8 kB at 18 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (1.5 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (1.7 kB at 19 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (2.1 kB at 15 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (1.3 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom (3.5 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom (17 kB at 158 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom (3.7 kB at 30 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 68 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 119 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 10 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.12.4/surefire-booter-2.12.4.jar (35 kB at 361 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.12.4/maven-surefire-common-2.12.4.jar (263 kB at 2.6 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar (316 kB at 1.7 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar (31 kB at 159 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar (232 kB at 1.2 MB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 445 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar (118 kB at 523 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 126 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 163 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 287 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 318 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 74 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 395 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 51 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 134 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 73 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 27 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 46 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar (10 kB at 18 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar (38 kB at 65 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 17 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.1/maven-plugin-annotations-3.1.jar (14 kB at 22 kB/s) -[INFO] Tests are skipped. -[INFO] -[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom (4.5 kB at 52 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom (2.8 kB at 32 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom (1.7 kB at 16 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom (2.7 kB at 26 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 kB at 143 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom (1.0 kB at 8.9 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 56 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar (22 kB at 266 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (38 kB at 364 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar (60 kB at 441 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar (184 kB at 1.1 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar (208 kB at 1.2 MB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar (58 kB at 315 kB/s) -[INFO] Building jar: /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar -[INFO] -[INFO] --- maven-install-plugin:2.4:install (default-install) @ wasabi --- -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.pom (2.5 kB at 21 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.1/plexus-3.1.pom (19 kB at 129 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.pom (1.1 kB at 9.5 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.7/plexus-components-1.1.7.pom (5.0 kB at 41 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 85 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom (7.3 kB at 75 kB/s) -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar -[INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-digest/1.0/plexus-digest-1.0.jar (12 kB at 125 kB/s) -[INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.5/plexus-utils-3.0.5.jar (230 kB at 1.5 MB/s) -[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/target/wasabi-1.0.0.jar to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.jar -[INFO] Installing /home/cc/sosp24-ae/wasabi/wasabi-testing/pom.xml to /home/cc/.m2/repository/edu/uchicago/cs/systems/wasabi/1.0.0/wasabi-1.0.0.pom -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 02:38 min -[INFO] Finished at: 2025-10-03T02:20:03Z -[INFO] ------------------------------------------------------------------------ diff --git a/benchmarks/arteval_bench/go-python.Dockerfile b/benchmarks/arteval_bench/go-python.Dockerfile new file mode 100644 index 00000000..af386424 --- /dev/null +++ b/benchmarks/arteval_bench/go-python.Dockerfile @@ -0,0 +1,36 @@ +FROM python:3.12.6 + +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Etc/UTC + +WORKDIR / +ADD . . + +# SWE-ReX will always attempt to install its server into your docker container +# however, this takes a couple of seconds. If we already provide it in the image, +# this is much faster. +RUN pip install pipx +RUN pipx install swe-rex +RUN pipx ensurepath + +RUN pip install flake8 + +ENV GOLANG_VERSION=1.22.3 + +RUN apt-get update && apt-get install -y wget tar git build-essential \ + && wget https://go.dev/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz \ + && tar -C /usr/local -xzf go${GOLANG_VERSION}.linux-amd64.tar.gz \ + && rm go${GOLANG_VERSION}.linux-amd64.tar.gz \ + && apt-get clean && rm -rf /var/lib/apt/lists/* + +ENV PATH="/usr/local/go/bin:${PATH}" + +RUN python --version && go version + +SHELL ["/bin/bash", "-c"] +# This is where pipx installs things +ENV PATH="$PATH:/root/.local/bin/" + +RUN python --version && go version + +CMD ["bash"] diff --git a/benchmarks/arteval_bench/install.sh b/benchmarks/arteval_bench/install.sh index 8a2c40c6..ce58fe96 100644 --- a/benchmarks/arteval_bench/install.sh +++ b/benchmarks/arteval_bench/install.sh @@ -2,18 +2,56 @@ set -e # Exit immediately on error. -# if .venv does not exist, create it -if [ -d ".venv" ]; then - echo "==> .venv already exists, skipping creation." +docker --version +python3.12 -m venv .venv +# python3 -m venv .venvdoc +source .venv/bin/activate + +if [ ! -d "SWE-agent" ]; then + echo "==> Install SWE-agent and its dependencies..." + git clone https://github.com/SWE-agent/SWE-agent.git + cd SWE-agent + git checkout 0c27f286303a939aa868ad2003bc4b6776771791 + pip install --editable . + sweagent --help + cd .. +else + echo "==> SWE-agent repository already exists, skipping clone." +fi + +pip install -r requirements.txt +pip install pytest +pip install pytest-cov +deactivate + +echo "==> Setting up SystemCourseProject environment..." +cd data/benchmark/projects +if [ -d "test-repo" ]; then + echo "==> test-repo already exists, skipping clone." +else + echo "==> Cloning test-repo... " + git clone https://github.com/SWE-agent/test-repo.git +fi + +if [ -d "6.5840-golabs-2024" ]; then + echo "==> 6.5840-golabs-2024 already exists, skipping clone." +else + echo "==> Cloning 6.5840-golabs-2024..." + git clone git://g.csail.mit.edu/6.5840-golabs-2024 +fi + +if [ -d "xv6-labs-2024" ]; then + echo "==> xv6-labs-2024 already exists, skipping clone." +else + echo "==> Cloning xv6-labs-2024..." + git clone git://g.csail.mit.edu/xv6-labs-2024 +fi + +if [ -d "6.5840-golabs-2025" ]; then + echo "==> 6.5840-golabs-2025 already exists, skipping clone." else - echo "==> Creating .venv directory..." - - python3 -m venv .venv - source .venv/bin/activate - pip install -r requirements.txt - pip install pytest - pip install pytest-cov - deactivate + echo "==> Cloning 6.5840-golabs-2025..." + git clone git://g.csail.mit.edu/6.5840-golabs-2025 fi -echo "==> ExampleBench environment is set up successfully." +echo "==> SystemCourseProject environment is set up successfully." diff --git a/benchmarks/arteval_bench/run.sh b/benchmarks/arteval_bench/run.sh index 45f0f103..e23e5d70 100644 --- a/benchmarks/arteval_bench/run.sh +++ b/benchmarks/arteval_bench/run.sh @@ -19,11 +19,19 @@ NEW_MODEL_NAME="${MODEL_NAME//\//_}" # export OPENAI_API_KEY="EMPTY" source .venv/bin/activate -echo "==> Start to run ExampleBench" +echo "==> Start to run SystemCoursePoject" # Note that if you benchmark has multiple tasks, you need to add --task # in your code to enable task selection. -python src/main.py \ - --model_name "${MODEL_NAME}" - # --save_path "./outputs/examplebench__${NEW_MODEL_NAME}__$(date +"%Y-%m-%d_%H-%M-%S")" \ - +# sweagent --help +# python src/main.py \ +# --task "test" + # --save_path "./outputs/systemcourseproject__${NEW_MODEL_NAME}__$(date +"%Y-%m-%d_%H-%M-%S")" \ + +python src/main_setup.py + # --model "$MODEL_NAME" \ + # --save_path "./outputs/systemcourseproject__${NEW_MODEL_NAME}__$(date +"%Y-%m-%d_%H-%M-%S")" \ + +# python src/main_setup.py \ +# --input_json "./data/benchmark/course_lab_task_examples.jsonl" + deactivate diff --git a/benchmarks/arteval_bench/src/__init__.py b/benchmarks/arteval_bench/src/__init__.py index 284e62cb..246d4f7e 100644 --- a/benchmarks/arteval_bench/src/__init__.py +++ b/benchmarks/arteval_bench/src/__init__.py @@ -1 +1 @@ -"""Init file for the example_bench package.""" +"""Init file for the ArtEval package.""" diff --git a/benchmarks/arteval_bench/src/agents/claudecode/install.sh b/benchmarks/arteval_bench/src/agents/claudecode/install.sh new file mode 100644 index 00000000..46a11589 --- /dev/null +++ b/benchmarks/arteval_bench/src/agents/claudecode/install.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +set -e # Exit immediately on error. + +apt-get update -y +apt-get install -y nodejs npm + +npm install -g @anthropic-ai/claude-code diff --git a/benchmarks/arteval_bench/src/agents/claudecode/runner.sh b/benchmarks/arteval_bench/src/agents/claudecode/runner.sh new file mode 100644 index 00000000..75608b97 --- /dev/null +++ b/benchmarks/arteval_bench/src/agents/claudecode/runner.sh @@ -0,0 +1,14 @@ + +#!/bin/bash + +set -e # Exit immediately on error. + +# set the model and task as parameters +if [ $# -ne 2 ]; then + echo "Usage: $0 " + echo "Example: $0 azure/gpt-4.1 \"set java env\"" + exit 1 +fi + +export ANTHROPIC_API_KEY="sk-XXXX" +claude -p "$2" --model "$1" --output-format json \ No newline at end of file diff --git a/benchmarks/arteval_bench/src/agents/minisweagent/runner.sh b/benchmarks/arteval_bench/src/agents/minisweagent/runner.sh new file mode 100644 index 00000000..0e8e468b --- /dev/null +++ b/benchmarks/arteval_bench/src/agents/minisweagent/runner.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +set -e # Exit immediately on error. + +# set the model and task as parameters +if [ $# -ne 2 ]; then + echo "Usage: $0 " + echo "Example: $0 azure/gpt-4.1 \"set java env\"" + exit 1 +fi + +pip install mini-swe-agent + +export AZURE_API_KEY="XXXX" +export AZURE_API_BASE="XXXX" +export ANTHROPIC_API_KEY="sk-XXXX" + + +mini -t "$2" -m "$1" -y -o agent_trajectory.json +# mini -t "set java env" -m "anthropic/claude-sonnet-4-5-20250929" -y \ No newline at end of file diff --git a/benchmarks/arteval_bench/src/agents/openhand/config.toml b/benchmarks/arteval_bench/src/agents/openhand/config.toml new file mode 100644 index 00000000..977d8e92 --- /dev/null +++ b/benchmarks/arteval_bench/src/agents/openhand/config.toml @@ -0,0 +1,6 @@ +[core] +runtime = "local" + +[llm] +model = "claude-3-5-sonnet-20241022" +# model = "claude-3-7-sonnet-20250219" \ No newline at end of file diff --git a/benchmarks/arteval_bench/src/agents/openhand/install.sh b/benchmarks/arteval_bench/src/agents/openhand/install.sh new file mode 100644 index 00000000..5b3fdd9a --- /dev/null +++ b/benchmarks/arteval_bench/src/agents/openhand/install.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +set -e # Exit immediately on error. +curl -sSL https://install.python-poetry.org | python3 - +# Make sure ~/.local/bin is on PATH for your shell session: +export PATH="$HOME/.local/bin:$PATH" + +python -V # should show 3.12.7 +apt-get update -y +apt-get install -y tmux + +pip install --no-cache-dir playwright && python -m playwright install --with-deps chromium + +git clone https://github.com/All-Hands-AI/OpenHands.git +cd OpenHands/ +poetry env use $(command -v python3.12) +poetry run python -V +poetry install \ No newline at end of file diff --git a/benchmarks/arteval_bench/src/agents/openhand/runner.sh b/benchmarks/arteval_bench/src/agents/openhand/runner.sh new file mode 100644 index 00000000..2fd48920 --- /dev/null +++ b/benchmarks/arteval_bench/src/agents/openhand/runner.sh @@ -0,0 +1,17 @@ + +#!/bin/bash + +set -e # Exit immediately on error. + +# set the model and task as parameters +if [ $# -ne 2 ]; then + echo "Usage: $0 " + echo "Example: $0 azure/gpt-4.1 \"set java env\"" + exit 1 +fi + +export ANTHROPIC_API_KEY="sk-XXXX" + +echo "==> Start to run OpenHand Agent" +cd OpenHands/ +poetry run python -m openhands.core.main --config-file /agent/config.toml --agent-cls CodeActAgent --selected-repo /repo -t "$2" --directory . \ No newline at end of file diff --git a/benchmarks/arteval_bench/src/config_aoi.yaml b/benchmarks/arteval_bench/src/config_aoi.yaml new file mode 100644 index 00000000..3d4cd573 --- /dev/null +++ b/benchmarks/arteval_bench/src/config_aoi.yaml @@ -0,0 +1,122 @@ +agent: + model: + name: azure/gpt-4.1 + api_version: "2023-05-15" + temperature: 0.7 + top_p: 1.0 + per_instance_cost_limit: 0.0 + templates: + system_template: |- + SETTING: + + You are an autonomous programmer, and you are working directly in the command line with a special terminal interface. + The terminal interface is formatted as follows: + + (Open file: ) + (Current directory: ) + bash-$ + + You can use any bash commands over the special terminal interface, then it will execute the command and return the output. + In addition to typical bash commands, the interface also consists of a file editor that shows you {{WINDOW}} lines of a file at a time. + You can use specific commands to use the file editor that helps you navigate and edit files. + To call a command, you need to invoke it with a function call/tool call. + + Please note that THE EDIT COMMAND REQUIRES PROPER INDENTATION. For example, if you are looking at this file: + + def fct(): + print("Hello world") + + and you want to edit the file to read: + + def fct(): + print("Hello") + print("world") + + you search string should be `Hello world` and your replace string should be `"Hello"\n print("world")` + (note the extra spaces before the print statement!). + You could also get the same result by search for ` print("Hello world")` and replace with ` print("Hello")\n print("world")`. + + The special terminal interface does NOT support interactive session commands (e.g., python, vim), so please do not invoke them. + Instead, you can write scripts and run them. E.g., you can write a python script and then run it with the python command. + + The special terminal interface also does NOT support container commands (e.g., docker, podman), so please do not invoke them. + Instead, you can directly install any dependencies you need and directly run the programs you need. + + A few important tips for using the special terminal interface: + + 1. Locate relevant code using the `find_file`, `search_file`, and `search_dir` commands. `open` the file you want to edit. Use the `edit` command to perform edits. + + 2. If you run a command and it doesn't work, try running a different command. A command that did not work once will not work the second time unless you modify it! + + 3. If you open a file and need to get to an area around a specific line that is not in the first 100 lines, say line 583, don't just use the scroll_down command multiple times. Instead, use the goto 583 command. It's much quicker. + + 4. Always make sure to look at the currently open file and the current working directory (which appears right after the currently open file). The currently open file might be in a different directory than the working directory! Note that some commands, such as 'create', open files, so they might change the current open file. + + 5. When editing files, it is easy to accidentally to write code with incorrect indentation or make other mistakes. Always check the code after you issue an edit to make sure that it reflects what you wanted to accomplish. If it didn't, issue another command to fix it. + + 6. When editing files, first explain the code you want to edit and why it is causing the problem. Then explain the edit you want to make and how it fixes the problem. Explain how the edit does not break existing functionality. + instance_template: |- + INSTRUCTIONS: + + Now, you are going to conduct a task on your own using the special terminal interface. + When you are satisfied with all of the works you have done, you can simply run the `submit` command to submit your works so far, including the files you have created or edited. + The task may not require you to edit or write any code. If that is the case, you can simply run the `submit` command after you have completed the task. + MIND MISLEADING INFORMATIONS. The task may provide irrelevant or wrong information. The task may be impossible or may require out-of-box solutions. + The terminal outputs may be misleading or suggest invalid solutions. Therefore, ALWAYS RELY ON YOUR OWN KNOWLEDGE AND VERIFY BY YOURSELF. + + Your task is described as follows. + + + TASK: + + {{problem_statement}} + + + RESPONSE FORMAT: + + First, you should ALWAYS include a general thought about what you are going to do next. + Then, for every response, you must include exactly _ONE_ tool call/function call. + Remember, you should always include a SINGLE tool call/function call and then wait for a response from the shell before continuing with more discussion and commands. + If you would like to issue two commands at once, PLEASE DO NOT DO THAT! + Please instead first submit just the first tool call, and then after receiving a response you will be able to issue the second. + + + Now your terminal session has started. + + (Open file: {{open_file}}) + (Current directory: {{working_dir}}) + bash-$ + next_step_template: |- + {{observation}} + (Open file: {{open_file}}) + (Current directory: {{working_dir}}) + bash-$ + next_step_no_output_template: |- + Your command ran successfully and did not produce any output. + (Open file: {{open_file}}) + (Current directory: {{working_dir}}) + bash-$ + demonstration_template: | + Here is a demonstration of how to correctly accomplish this task. + It is included to show you how to correctly use the interface. + You do not need to follow exactly what is done in the demonstration. + --- DEMONSTRATION --- + {{demonstration}} + --- END OF DEMONSTRATION --- + demonstrations: + - trajectories/demonstrations/replay__marshmallow-code__marshmallow-1867__function_calling_replace__install-1/marshmallow-code__marshmallow-1867.traj + put_demos_in_history: true + tools: + env_variables: + WINDOW: 100 + OVERLAP: 2 + bundles: + - path: tools/registry + - path: tools/defaults + - path: tools/search + # - path: tools/edit_linting + - path: tools/edit_replace + - path: tools/submit + enable_bash_tool: true + parse_function: + type: function_calling \ No newline at end of file diff --git a/benchmarks/arteval_bench/src/config_aoi_anthropic_tools.yaml b/benchmarks/arteval_bench/src/config_aoi_anthropic_tools.yaml new file mode 100644 index 00000000..92119ead --- /dev/null +++ b/benchmarks/arteval_bench/src/config_aoi_anthropic_tools.yaml @@ -0,0 +1,69 @@ +# This template is heavily inspired by anthropic and openhands. It is almost +# identical to anthropic_filemap.yaml, but it removes python-specific language +# and adds the multilingual_setup tool to support evaluation on the Multilingual dataset. +agent: + type: default + model: + name: azure/gpt-4o + api_version: "2023-05-15" + temperature: 0.7 + top_p: 1.0 + per_instance_cost_limit: 0.0 + templates: + system_template: |- + You are a helpful assistant that can interact with a computer to solve tasks. + instance_template: |- + + {{working_dir}} + + I've uploaded a code repository in the directory {{working_dir}}. Consider the following PR description: + + + {{problem_statement}} + + + Can you help me implement the necessary changes to the repository so that the requirements specified in the are met? + I've already taken care of all changes to any of the test files described in the . This means you DON'T have to modify the testing logic or any of the tests in any way! + Your task is to make the minimal changes to non-tests files in the {{working_dir}} directory to ensure the is satisfied. + Follow these steps to resolve the issue: + 1. As a first step, it might be a good idea to find and read code relevant to the + 2. Create a script to reproduce the error and execute it using the bash tool, to confirm the error + 3. Edit the sourcecode of the repo to resolve the issue + 4. Rerun your reproduce script and confirm that the error is fixed! + 5. Think about edgecases and make sure your fix handles them as well + Your thinking should be thorough and so it's fine if it's very long. + next_step_template: |- + OBSERVATION: + {{observation}} + next_step_no_output_template: |- + Your command ran successfully and did not produce any output. + tools: + execution_timeout: 300 + bundles: + - path: tools/multilingual_setup + - path: tools/registry + - path: tools/edit_anthropic + - path: tools/review_on_submit_m + - path: tools/diff_state + enable_bash_tool: true + parse_function: + type: function_calling + registry_variables: + USE_FILEMAP: 'true' + SUBMIT_REVIEW_MESSAGES: + - | + Thank you for your work on this issue. Please carefully follow the steps below to help review your changes. + + 1. If you made any changes to your code after running the reproduction script, please run the reproduction script again. + If the reproduction script is failing, please revisit your changes and make sure they are correct. + If you have already removed your reproduction script, please ignore this step. + 2. Remove your reproduction script (if you haven't done so already). + 3. If you have modified any TEST files, please revert them to the state they had before you started fixing the issue. + You can do this with `git checkout -- /path/to/test/file`. Use below to find the files you need to revert. + 4. Run the submit command again to confirm. + + Here is a list of all of your changes: + + + {{diff}} + diff --git a/benchmarks/arteval_bench/src/main.py b/benchmarks/arteval_bench/src/main.py index 9432a39e..b4d40b70 100644 --- a/benchmarks/arteval_bench/src/main.py +++ b/benchmarks/arteval_bench/src/main.py @@ -1,233 +1,70 @@ -""" -Artifact Evaluation Benchmark - -This script drives an agent to perform artifact evaluation, -namely succesfully setup, install, and run experiments -for a series of software prototypes that accompany peer-reviewed -papers published at various CS conferences. - -Author: Bogdan 'Bo' Stoica (bastoica@illinois.edu) -""" +"""This script runs a benchmark for evaluating patches in a software project.""" import argparse import json import os import sys from datetime import datetime -from statistics import median -from statistics import mean -from typing import Iterable, Tuple sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '../../../'))) +from sdk.logger import logger from sdk.utils import set_llm_endpoint_from_config set_llm_endpoint_from_config('env.toml') -from sdk.evaluator import Evaluator -from sdk.executor import Executor -from sdk.logger import logger -from sdk.llm import LLM - -ARTIFACT_STAGES = ("prep_environment", "build_code", "prep_benchmarks", "run_experiments") - -class ArtEvalExecutor(Executor): - """Example class for one simple LLM module.""" - - def __init__(self, _model_name, _sys_prompt) -> None: - """Initialize the BasicExecutor class.""" - self.system_prompt = _sys_prompt - self.model_name = _model_name - self.LLM = LLM(engine=self.model_name, system_prompt=self.system_prompt, temperature=0.1) - - def run(self, nl, lang=''): - """Run the model.""" - ans = self.LLM.query(nl) - return ans - - -class ArtEvalValidator(Evaluator): - """Validation class for evaluating the model's ability to install, run, and test a given artifact.""" - - def __init__(self) -> None: - """Initialize the Evaluator class.""" - super().__init__() - - def run(cmd: Iterable[str]) -> Tuple[int, str, str]: - """Run a command and return a (rc, stdout, stderr) tuple.""" - try: - cp = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) - return cp.returncode, cp.stdout or "", cp.stderr or "" - except FileNotFoundError: - return 127, "", "" +from run_eval_in_env import run_eval +from utils import get_task - def eval(self, cmd): - """Run the artifact evaluation stage validator.""" - rc, stdout, stderr = self.run(cmd) - if rc != 0: - raise ValueError(f"Validation script failed with error code {rc}.") - - try: - data = json.loads(stdout) - except json.JSONDecodeError: - return 0 - - score_breakdown = {} - for k in ARTIFACT_STAGES: - if k not in data: - raise KeyError(f"Missing required field: {k}") - - val = data[k] - try: - rc = int(val) - except (TypeError, ValueError) as e: - raise ValueError(f"Field '{k}' is not an integer error code: {val!r}") from e - - if not (0 <= rc <= 255): - raise ValueError(f"Field '{k}' must be in range 0-255, got {rc}.") - - if rc == 0: - success += 1 - - score_breakdown[k] = 1 if rc == 0 else 0 - - result = { - "score_total": sum(score_breakdown.values()), - "score_breakdown": score_breakdown, - } - return result - - - -def main(input_file, output_dir, model_name, agent_name): +def main(file_path, model, agent, save_path): """Main function for running the benchmark.""" + logger.info(f'Using model: {model}, agent: {agent}') + with open(file_path) as f: + for line in f: + if not line.strip(): + continue # Skip empty lines - with open(input_file, encoding='utf-8') as f: - data = [json.loads(line) for line in f] - - results = [] - for artifact in data: - try: - logger.info(f"============ {artifact['task_id']} ============") - - system_prompt = ( - f"You are an experienced software engineer.\n" - + f"You are asked to follow the step-by-step instructions in README.md below to set-up," - + f"install, compile, and reproduce the results of Wasabi" - + f"Note that you are in a docker env with root access. If sudo is needed," - + f"please remove sudo command in the install file." - + f"Note that you can ignore branch siwitch instructions in the README as you are already" - + f"in the correct branch. So do not use git branch at all." + try: + item = json.loads(line) + except json.JSONDecodeError: + logger.info(f'Skipping invalid JSON line: {line}') + continue + + deployment = item.get('docker_env', None) + project_path = f"./data/benchmark/{item.get('repo_name', None)}" + task_file = item.get('task_file', None) + task_id = item.get('task_id', None) + test_method = item.get('test_method', None) + + task = get_task(task_file) + + result = run_eval( + deployment=deployment, + project_path=project_path, + task_id=task_id, + task=task, + model=model, + agent_path=agent, + test_method=test_method, + save_path=save_path, ) - - logger.info("Reading task...") - - task_file = artifact['task_file'] - with open(task_file, encoding='utf-8') as f: - lines = f.readlines() - task = "\n".join(lines) - user_prompt = 'Below is the README of the artifact:\n\n' + task - - prompt = f"{system_prompt}\n {user_prompt}" - if agent_name == 'llm': - executor = ArtEvalExecutor(model_name, prompt) - else: - raise ValueError(f'Unknown agent name: {agent_name}') - - logger.info("Calling LLM with user prompt...") - - response = executor.run(user_prompt, lang='json') - response = json.loads(response) - - logger.info("Parsing LLM's answer...") - - answer = str(response.get('answer', '')) - explanation = response.get('explanation', '') - logger.info(f'Model Answer: {answer}') - logger.info(f'Model Explanation: {explanation}') - - test_method = artifact['test_method'] - - logger.info("Interaction with LLM succesful. Proceeding to validation...") - - evaluator = ArtEvalValidator() - metrics = evaluator.eval(cmd=test_method) - - result = { - 'id': artifact['instance_id'], - 'system_prompt': system_prompt, - 'user_prompt': user_prompt, - 'score_expected': artifact['expected_score'], - 'llm_answer': answer, - 'llm_explanation': explanation, - 'llm_score_final': metrics['score_total'], - 'llm_score_breakdown': metrics['score_breakdown'], - 'error': None, - } - results.append(result) - - logger.info('Evaluation Result:') - logger.info(result) - - except Exception as e: - logger.error(f"Error processing instance {artifact['task_id']}: {e}") - result = { - 'id': artifact['task_id'], - 'system_prompt': locals().get('system_prompt'), - 'user_prompt': locals().get('user_prompt'), - 'llm_answer': None, - 'llm_explanation': None, - 'llm_score_final': None, - 'llm_score_breakdown': None, - 'error': str(e), - } - results.append(result) - - with open(os.path.join(output_dir, 'result.jsonl'), 'a+', encoding='utf-8') as output_file: - output_file.write(json.dumps(result)) - output_file.write('\n') - - scored = [ - r for r in results - if r.get('error') in (None, '', 'null') # only include successful artifact runs - and isinstance(r.get('llm_score_final'), (int, float)) - ] - - overall_scores = [r['llm_score_final'] for r in scored] - avg_overall = mean(overall_scores) if overall_scores else 0.0 - med_overall = median(overall_scores) if overall_scores else 0.0 - - per_stage_values = {k: [] for k in ARTIFACT_STAGES} - for r in scored: - sb = r.get('llm_score_breakdown') or {} - for k in ARTIFACT_STAGES: - v = sb.get(k) - if isinstance(v, (int)): - per_stage_values[k].append(int(v)) - - avg_by_stage = { - k: (sum(vals) / len(vals)) if vals else 0.0 - for k, vals in per_stage_values.items() - } - - med_by_stage = { - k: (median(vals) if vals else 0.0) - for k, vals in per_stage_values.items() - } - - summary_data = { - 'artifact_count': len(scored), - 'average_overall_score': avg_overall, - 'median_overall_score': med_overall, - 'average_by_stage': avg_by_stage, - 'median_by_stage': med_by_stage, - } - - with open(os.path.join(output_dir, 'avg_score.json'), 'w', encoding='utf-8') as summary_file: + with open(f'{save_path}/result.jsonl', 'a+', encoding='utf-8') as fw: + fw.write(json.dumps(result) + '\n') + + success_count = 0 + total_count = 0 + with open(f'{save_path}/result.jsonl', encoding='utf-8') as f: + for line in f: + result = json.loads(line.strip()) + if result.get('status') == 'success': + score_count += (result.get('score') == item.get('expected_score', -1)) + total_count += 1 + logger.info(f'Test run completed: {success_count}/{total_count} tasks succeeded.') + summary_data = {'final_score': success_count / total_count, 'total_tasks': total_count} + + with open(os.path.join(save_path, 'avg_score.json'), 'w', encoding='utf-8') as summary_file: json.dump(summary_data, summary_file, indent=4) - logger.info('************ Final average score ************') - if __name__ == '__main__': parser = argparse.ArgumentParser(description='example benchmark') @@ -236,30 +73,43 @@ def main(input_file, output_dir, model_name, agent_name): '--input_file', help='Benchmark input file', default='./data/benchmark/arteval_tasks.jsonl', + #default='./data/benchmark/env_setup_examples.jsonl', ) parser.add_argument('-o', '--save_path', help='Result save path', default=None) - parser.add_argument('-a', '--agent', help='Agent Name', default='llm') - + parser.add_argument( + '-a', + '--agent', + help='Agent Name', + default='claudecode', + ) parser.add_argument( '-m', '--model_name', help='Model Name', + default='claude-sonnet-4-5-20250929', ) - + # Note that if your benchmark has multiple tasks, you need to add --task + # in your code to enable task selection. parser.add_argument('-t', '--task', help='specify task in scenarios', default=None) args = parser.parse_args() model_name = args.model_name + agent = args.agent input_file = args.input_file save_path = args.save_path + task = args.task + + logger.debug(f"Benchmark path: {input_file}") if save_path is None: str_model_name = model_name.replace('/', '_') timestamp = datetime.now().strftime('%Y-%m-%d_%H-%M-%S') - save_path = os.path.join('./outputs', f'examplebench__{str_model_name}__{args.agent}__{timestamp}') + save_path = os.path.join('./outputs', f'env_setup_project__{str_model_name}__{args.agent}__{timestamp}') + if agent == 'claudecode': + agent = './src/agents/claudecode' save_path = os.path.abspath(os.path.expanduser(save_path)) os.makedirs(save_path, exist_ok=True) - main(input_file, save_path, model_name, agent_name=args.agent) + main(input_file, model_name, agent, save_path) diff --git a/benchmarks/arteval_bench/src/main_patch.py b/benchmarks/arteval_bench/src/main_patch.py new file mode 100644 index 00000000..cc554b56 --- /dev/null +++ b/benchmarks/arteval_bench/src/main_patch.py @@ -0,0 +1,122 @@ +"""This script runs a benchmark for evaluating patches in a software project.""" + +import argparse +import json +import os +import sys +from datetime import datetime + +sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '../../../'))) + +from sdk.logger import logger +from sdk.utils import set_llm_endpoint_from_config + +set_llm_endpoint_from_config('env.toml') + +from run_eval_sweagent import run # noqa: E402 + + +def main(file_path, save_path): + """Main function for running the benchmark.""" + # file_path = "system_lab_tasks.jsonl" + image = 'xuafeng/swe-go-python:latest' + + with open(file_path) as f: + for line in f: + if not line.strip(): + continue # Skip empty lines + + try: + task = json.loads(line) + except json.JSONDecodeError: + logger.info(f'Skipping invalid JSON line: {line}') + continue + + task_id = task.get('task_id') + repo_path = task.get('repo_name') + problem_path = f'./data/benchmark/problems/{task_id}.md' + test_method = task.get('test_method') + + run(task_id, repo_path, problem_path, test_method, image, save_path) + + success_count = 0 + total_count = 0 + with open(f'{save_path}/result.jsonl', encoding='utf-8') as f: + for line in f: + result = json.loads(line.strip()) + if result.get('status') == 'success': + success_count += 1 + total_count += 1 + logger.info(f'Test run completed: {success_count}/{total_count} tasks succeeded.') + summary_data = {'final_score': success_count / total_count, 'total_tasks': total_count} + + with open(os.path.join(save_path, 'avg_score.json'), 'w', encoding='utf-8') as summary_file: + json.dump(summary_data, summary_file, indent=4) + + +def test_run(): + """Test function to run the benchmark with a sample task.""" + run( + task_id='test_1', + repo_path='projects/test-repo', + problem_path='./data/benchmark/problems/test-repo-problems/1.md', + test_method='pip install -e . && pytest tests/test_tribonaccy.py', + image='xuafeng/swe-go-python:latest', + save_path='./outputs/test_run', + ) + + success_count = 0 + total_count = 0 + with open('./outputs/test_run/result.jsonl', encoding='utf-8') as f: + for line in f: + result = json.loads(line.strip()) + if result.get('status') == 'success': + success_count += 1 + total_count += 1 + logger.info(f'Test run completed: {success_count}/{total_count} tasks succeeded.') + summary_data = {'score': success_count / total_count, 'total_tasks': total_count} + + with open('./outputs/test_run/avg_score.json', 'w', encoding='utf-8') as summary_file: + json.dump(summary_data, summary_file, indent=4) + + +if __name__ == '__main__': + parser = argparse.ArgumentParser(description='example benchmark') + parser.add_argument( + '-i', + '--input_file', + help='Benchmark input file', + # default='./data/benchmark/system_lab_tasks.jsonl', + default='./data/benchmark/system_lab_tasks.jsonl', + ) + parser.add_argument('-o', '--save_path', help='Result save path', default=None) + parser.add_argument('-a', '--agent', help='Agent Name', default='sweagent') + parser.add_argument( + '-m', + '--model_name', + help='Model Name', + default='gpt-4o', + ) + # Note that if your benchmark has multiple tasks, you need to add --task + # in your code to enable task selection. + parser.add_argument('-t', '--task', help='specify task in scenarios', default=None) + + args = parser.parse_args() + + model_name = args.model_name + input_file = args.input_file + save_path = args.save_path + task = args.task + if task == 'test': + logger.info('Running test benchmark...') + test_run() + else: + if save_path is None: + str_model_name = model_name.replace('/', '_') + timestamp = datetime.now().strftime('%Y-%m-%d_%H-%M-%S') + save_path = os.path.join('./outputs', f'systemcourseproject__{str_model_name}__{args.agent}__{timestamp}') + + save_path = os.path.abspath(os.path.expanduser(save_path)) + os.makedirs(save_path, exist_ok=True) + + main(input_file, save_path) diff --git a/benchmarks/arteval_bench/src/patch_evaluator.py b/benchmarks/arteval_bench/src/patch_evaluator.py new file mode 100644 index 00000000..734a56df --- /dev/null +++ b/benchmarks/arteval_bench/src/patch_evaluator.py @@ -0,0 +1,133 @@ +"""Patch evaluator for running tests in a deployment.""" + +import asyncio +import json +import os + +from swerex.deployment.docker import DockerDeployment +from swerex.runtime.abstract import BashAction, Command, CreateBashSessionRequest, UploadRequest + +from sdk.logger import logger + + +async def run_some_stuff(task_id, project_path, patch, test_method, deployment): + """Spoiler: This function will work with any deployment.""" + await deployment.start() + runtime = deployment.runtime + + # Issue a few one-off commands, similar to `subprocess.run()` + logger.info(await runtime.execute(Command(command=['echo', 'Hello, world!']))) + + # Create a bash session + await runtime.create_session(CreateBashSessionRequest()) + + # Run a command in the session + # The difference to the one-off commands is that environment state persists! + logger.info(await runtime.run_in_session(BashAction(command="export MYVAR='test'"))) + logger.info(await runtime.run_in_session(BashAction(command='echo $MYVAR'))) + + logger.info( + await runtime.upload( + UploadRequest( + source_path='./data/benchmark/projects', + target_path='/projects', + ) + ) + ) + logger.info( + await runtime.upload( + UploadRequest( + source_path=patch, + target_path='/patch.patch', + ) + ) + ) + + logger.info(await runtime.run_in_session(BashAction(command='export PATH=/usr/local/go/bin:${PATH}'))) + logger.info(await runtime.run_in_session(BashAction(command='export HOME=/tmp'))) + logger.info(await runtime.run_in_session(BashAction(command='go version'))) + logger.info(await runtime.run_in_session(BashAction(command='pip install pytest'))) + # logger.info(await runtime.run_in_session(BashAction(command="pytest -v"))) + + logger.info(await runtime.run_in_session(BashAction(command='ls /projects'))) + logger.info(await runtime.run_in_session(BashAction(command='ls /patch.patch'))) + + logger.info(await runtime.run_in_session(BashAction(command='cd /' + project_path))) + logger.info(await runtime.run_in_session(BashAction(command='git apply /patch.patch'))) + logger.info(await runtime.run_in_session(BashAction(command='pwd'))) + + try: + test_output = await runtime.run_in_session(BashAction(command=test_method)) + logger.info(test_output) + return { + 'task_id': task_id, + 'reop_location': project_path, + 'patch': patch, + 'test_method': test_method, + 'status': 'success', + 'output': test_output.output if hasattr(test_output, 'output') else str(test_output), + } + except Exception as e: + logger.info(f'Error running test method: {e}') + return { + 'task_id': task_id, + 'reop_location': project_path, + 'patch': patch, + 'test_method': test_method, + 'status': 'error', + 'output': str(e), + } + + # logger.info(await runtime.run_in_session(BashAction(command="cd projects/6.5840-golabs-2024/src/kvsrv"))) + # logger.info(await runtime.run_in_session(BashAction(command="go test"))) + + await deployment.stop() + + +def pacth_eval(task_id, project_path, patch, test_method, output_path, image): + """Evaluate a patch by running a test method in a deployment.""" + # deployment = LocalDeployment() + deployment = DockerDeployment(image=image) + if not os.path.exists(patch): + logger.error(f'Patch file {patch} does not exist.') + eval_out = { + 'task_id': task_id, + 'reop_location': project_path, + 'patch': '', + 'test_method': test_method, + 'status': 'no_patch', + 'output': 'Patch file does not exist.', + } + + else: + eval_out = asyncio.run(run_some_stuff(task_id, project_path, patch, test_method, deployment)) + + return eval_out + + +if __name__ == '__main__': + # add arguments via argparse + import argparse + + parser = argparse.ArgumentParser(description='Run some stuff in a deployment.') + parser.add_argument('--task_id', type=str, required=True, help='Task ID') + parser.add_argument('--project_path', type=str, required=True, help='Project path') + parser.add_argument('--patch', type=str, required=True, help='Patch file path') + parser.add_argument('--test_method', type=str, required=True, help='Test method command') + parser.add_argument('--output_path', type=str, default='eval_results', help='Output file path') + parser.add_argument('--image', type=str, default='xuafeng/swe-go-python:latest', help='Deployment type') + + # Parse the arguments + args = parser.parse_args() + task_id = args.task_id + project_path = args.project_path + patch = args.patch + test_method = args.test_method + output_path = args.output_path + image = args.image + + eval_out = pacth_eval(task_id, project_path, patch, test_method, output_path, image) + + with open(os.path.join(output_path, f'{task_id}_result.json'), 'w', encoding='utf-8') as fw: + fw.write(json.dumps(eval_out, indent=4)) + logger.info('Evaluation completed successfully.') diff --git a/benchmarks/arteval_bench/src/run_eval_in_env.py b/benchmarks/arteval_bench/src/run_eval_in_env.py new file mode 100644 index 00000000..2c814443 --- /dev/null +++ b/benchmarks/arteval_bench/src/run_eval_in_env.py @@ -0,0 +1,186 @@ +"""Patch evaluator for running tests in a deployment.""" + +import asyncio +import os +import sys + +sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '../../../'))) + +from swerex.deployment.docker import DockerDeployment +from swerex.runtime.abstract import BashAction, Command, CreateBashSessionRequest, UploadRequest + +from sdk.logger import logger + + +def get_task(file_path): + """Get agent task from a file""" + task = (f"You are an experienced software engineer.\n" + + f"You are asked to follow the step-by-step instructions in README.md below to set-up," + + f"install, compile, and reproduce the results of Wasabi" + + f"Note that you are in a docker env with root access. If sudo is needed," + + f"please remove sudo command in the install file." + + f"Note that you can ignore branch siwitch instructions in the README as you are already" + + f"in the correct branch. So do not use git branch at all." + + f"\nBelow is the README of the artifact:\n\n") + + try: + with open(file_path, encoding='utf-8') as f: + lines = f.readlines() + task = task + "\n".join(lines) + except Exception as e: + logger.info(f'Error extracting task from {file_path}: {e}') + + return task + + +def write_to_file(file_path, content): + """Write content to a file.""" + with open(file_path, 'w') as f: + f.write(content) + + +async def run_eval_in_env(deployment, project_path, task_id, task, model, agent_path, test_method, save_path): + """Spoiler: This function will work with any deployment.""" + await deployment.start() + runtime = deployment.runtime + + # Issue a few one-off commands, similar to `subprocess.run()` + logger.info(await runtime.execute(Command(command=['echo', 'Hello, world!']))) + + # Create a bash session + await runtime.create_session(CreateBashSessionRequest()) + # Run a command in the session + # The difference to the one-off commands is that environment state persists! + logger.info(await runtime.run_in_session(BashAction(command="export MYVAR='test'"))) + logger.info(await runtime.run_in_session(BashAction(command='echo $MYVAR'))) + + logger.info('Uploading project files...') + logger.info( + await runtime.upload( + UploadRequest( + source_path=project_path, + target_path='/repo', + ) + ) + ) + logger.info('Project files uploaded.') + logger.info(await runtime.run_in_session(BashAction(command='ls /repo'))) + logger.info(await runtime.run_in_session(BashAction(command='cd /repo'))) + logger.info(await runtime.run_in_session(BashAction(command='ls'))) + + logger.info('Uploading agent runner script...') + logger.info( + await runtime.upload( + UploadRequest( + source_path=agent_path, + target_path='/agent', + ) + ) + ) + logger.info(await runtime.run_in_session(BashAction(command='ls /agent/runner.sh'))) + logger.info('Agent runner script uploaded.') + + # logger.info("Test Python and Go environment...") + # logger.info(await runtime.run_in_session(BashAction(command='export PATH=/usr/local/go/bin:${PATH}'))) + # logger.info(await runtime.run_in_session(BashAction(command='export HOME=/tmp'))) + # logger.info(await runtime.run_in_session(BashAction(command='go version'))) + # logger.info(await runtime.run_in_session(BashAction(command='pip install pytest'))) + # logger.info(await runtime.run_in_session(BashAction(command="pytest -v"))) + + logger.info('Setup the agent running environment...') + logger.info(await runtime.run_in_session(BashAction(command='chmod +x /agent/runner.sh /agent/install.sh'))) + logger.info(await runtime.run_in_session(BashAction(command='cat /agent/runner.sh'))) + logger.info(await runtime.run_in_session(BashAction(command='/agent/install.sh'))) + + logger.info('Running runner script...') + run_results = await runtime.run_in_session(BashAction(command='pwd && ls && ls /agent')) + logger.info(f'Current directory: {run_results}') + run_results = await runtime.run_in_session(BashAction(command=f'/agent/runner.sh "{model}" "{task}"')) + logger.info(f"agent's run results: {run_results}") + logger.info('Runner script finished.') + + # logger.info('Copying outputs to save path...') + # a = await runtime.run_in_session(BashAction(command='cat agent_trajectory.json')) + # output_file = os.path.join(save_path, f'{task_id}_agent_trajectory.json') + # os.makedirs(os.path.dirname(output_file), exist_ok=True) + # write_to_file(output_file, a.output if hasattr(a, 'output') else str(a)) + # logger.info(f'Output saved to: {output_file}') + + try: + test_output = await runtime.run_in_session(BashAction(command=test_method)) + logger.info(test_output) + return { + 'task': task, + 'project_path': project_path, + 'agent_run_results': run_results.output if hasattr(run_results, 'output') else str(run_results), + 'test_method': test_method, + 'score': int(test_output), + 'status': 'success', + } + except Exception as e: + logger.info(f'Error running test method: {e}') + return { + 'task': task, + 'project_path': project_path, + 'agent_run_results': run_results.output if hasattr(run_results, 'output') else str(run_results), + 'test_method': test_method, + 'score': 0, + 'status': f'error: {str(e)}', + } + + await deployment.stop() + + +def run_eval(deployment, project_path, task_id, task, model, agent_path, test_method, save_path): + deployment = ( + DockerDeployment(image=deployment) if deployment else DockerDeployment(image='xuafeng/swe-go-python:latest') + ) + return asyncio.run( + run_eval_in_env(deployment, project_path, task_id, task, model, agent_path, test_method, save_path) + ) + + +def test(): + task = 'The java is not installed. Can you please setup it? Note: you are in a docker with root permission. DO NOT use sudo.' + project_path = '../data/benchmark/projects/test-repo' + test_method = 'java -version' + deployment = 'xuafeng/swe-go-python:latest' + model = 'claude-sonnet-4-5-20250929' + agent_path = './agents/claudecode' + save_path = './eval_results' + task_id = 'test_task_1' + result = run_eval(deployment, project_path, task_id, task, model, agent_path, test_method, save_path) + print('Test result:', result) + + +# TODO: still work on add openhand agent +def test1(): + task = 'The java is not installed. Can you please setup it? Note: you are in a docker with root permission. DO NOT use sudo.' + project_path = '../data/benchmark/projects/test-repo' + test_method = 'java -version' + deployment = 'xuafeng/swe-go-python:latest' + model = 'claude-sonnet-4-5-20250929' + agent_path = './agents/openhand' + save_path = './eval_results' + task_id = 'test_task_1' + result = run_eval(deployment, project_path, task_id, task, model, agent_path, test_method, save_path) + print('Test result:', result) + + +def test2(): + task = "create a python file named hello.py that prints 'hello world'" + project_path = '../data/benchmark/projects/test-repo' + test_method = 'python hello.py' + deployment = 'xuafeng/swe-go-python:latest' + model = 'claude-sonnet-4-5-20250929' + agent_path = './agents/claudecode' + save_path = './eval_results' + task_id = 'test_task_1' + eval_out = asyncio.run( + run_eval_in_env(deployment, project_path, task_id, task, model, agent_path, test_method, save_path) + ) + print(eval_out) + + +if __name__ == '__main__': + test1() diff --git a/benchmarks/arteval_bench/src/run_eval_sweagent.py b/benchmarks/arteval_bench/src/run_eval_sweagent.py new file mode 100644 index 00000000..aa5e86a2 --- /dev/null +++ b/benchmarks/arteval_bench/src/run_eval_sweagent.py @@ -0,0 +1,53 @@ +import sys +import subprocess + +sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '../../../'))) + +from patch_evaluator import pacth_eval + +from sdk.logger import logger + + +def run(task_id, repo_path, problem_path, test_method, image, save_path): + """Run the benchmark for a specific task.""" + output_dir = f'{save_path}/patch/{task_id}' + patch_file = os.path.join(output_dir, '1c2844', '1c2844.patch') + + # Use sweagent to generate a patch for the task + command = [ + 'sweagent', + 'run', + '--config', + './src/config_aoi.yaml', + '--env.repo.path', + './data/benchmark/' + repo_path, + '--problem_statement.path', + problem_path, + '--output_dir', + output_dir, + '--env.deployment.image', + image, + '--env.post_startup_commands', + '["export PATH=/usr/local/go/bin:${PATH} && export HOME=/tmp"]', + ] + + logger.info('Executing sweagent command...') + subprocess.run(command, check=True, timeout=600) + + logger.info('\n\n==========================') + logger.info(f'Patch file expected at: {patch_file}') + + # Evaluate the generated patch + eval_out = pacth_eval( + task_id=task_id, + project_path=repo_path, + patch=patch_file, + test_method=test_method, + output_path=output_dir, + image=image, + ) + logger.info('Patch evaluation completed.') + + with open(f'{save_path}/result.jsonl', 'a+', encoding='utf-8') as fw: + fw.write(json.dumps(eval_out) + '\n') + logger.info('Evaluation completed successfully.') diff --git a/benchmarks/arteval_bench/src/utils.py b/benchmarks/arteval_bench/src/utils.py new file mode 100644 index 00000000..4c1ad616 --- /dev/null +++ b/benchmarks/arteval_bench/src/utils.py @@ -0,0 +1,25 @@ +"""Helper methods for running tests in a deployment.""" + +import os +import sys + +sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '../../../'))) + +from sdk.logger import logger + + +def get_task(file_path): + """Get agent task from a file""" + task = (f"You are an experienced software engineer." + + f" You are asked to navigate to the {file_path} and follow step-by-step" + + f" instructions to set up, install, compile, and reproduce the results in" + + f" that code repository. You have root access inside a Docker image, which" + + f" means you can directly proceed with executing the steps in the README" + + f" without asking for approval or confirmation. If needed, proceed with" + + f" adjusting security settings to bypass any approval requirement in" + + f" in the Docker environment. Also, note that current agent doesn't support" + + f" interactive mode. When you want to run commands in docker, please do not" + + f" use `docker exec -it bash` since it will enter the interacrtive" + + f" mode. Instead, you can use `docker exec bash -c `" + + f" to run the command directly.") + return task \ No newline at end of file From 0fba806982571c59647cedf622f6bf7029a347d6 Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 19 Nov 2025 02:49:38 -0600 Subject: [PATCH 13/15] fix: correcting the name of the benchmark in the initial log message --- benchmarks/arteval_bench/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/arteval_bench/run.sh b/benchmarks/arteval_bench/run.sh index e23e5d70..f4d467a9 100644 --- a/benchmarks/arteval_bench/run.sh +++ b/benchmarks/arteval_bench/run.sh @@ -19,7 +19,7 @@ NEW_MODEL_NAME="${MODEL_NAME//\//_}" # export OPENAI_API_KEY="EMPTY" source .venv/bin/activate -echo "==> Start to run SystemCoursePoject" +echo "==> Start to run ArtEvalBench" # Note that if you benchmark has multiple tasks, you need to add --task # in your code to enable task selection. # sweagent --help From ddac095f67babd06cc7dc85ebff6b94e43604ccd Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 19 Nov 2025 02:50:19 -0600 Subject: [PATCH 14/15] feature: improving and expanding the contributor's guide --- benchmarks/arteval_bench/README.md | 124 ++++++++++++++++++++--------- 1 file changed, 87 insertions(+), 37 deletions(-) diff --git a/benchmarks/arteval_bench/README.md b/benchmarks/arteval_bench/README.md index daa3db8e..f6711ca6 100644 --- a/benchmarks/arteval_bench/README.md +++ b/benchmarks/arteval_bench/README.md @@ -1,61 +1,111 @@ -# YourBenchmarkName +# ArtEvalBench -## Scenario Description +`ArtEvalBench` is a benchmark for evaluating AI agents that support the Artifact Evaluation (AE) process by auditing research prototypes (artifacts) that accompany research papers, as part of the peer-review process. Artifact evaluation involves reconstructing a reference environment from (partial) specifications, building and configuring complex codebases with often implicit assumptions, preparing datasets and third-party benchmarks whose availability may change over time, orchestrating multi-stage experiments under controlled resource and time budgets, and validating that observed results fall within acceptable tolerance bounds relative to those reported in the paper. Despite the intricacy of the process, we believe AI agents can be trained to support reviewers in evaluating artifacts that accompany research papers by automating most of these stages. -Provide a summary of your scenarios here. This section should give an overview of the context, objectives, and key elements involved in your scenarios. +Want to find out more or contribute? Jump to the [contributor's guide](#contributors-guide). -### Task Details +## Goals and Objectives -Describe your task in detail, including: +Artifact evaluation has become a standard component of the peer-review process across a wide range of conferences in Computer Science, especially in Systems and related areas. Despite this progress however, the practical work of provisioning operational environments, resolving dependencies, building artifacts, preparing benchmarks, running experiments, and checking results remains brittle and time-consuming. To alleviate this burden, we envision an automated artifact evaluation AI assistant that executes repeatable steps under (human) reviewer supervision. This "AE assistant" would target artifact mechanics (e.g., code compilation, dataset/benchmark preparation, experiment orchestration, and output validation) alongside code auditing (e.g., does the artifact implementation match the paper prose? are results closely matching those in the paper?). The agent's output can then inform more a complex methodological assessment, design trade-off analysis, and results interpretation that reviewers need to perform to complete the AE process. -- **Input**: Specify the type of input data required for the task. -- **Output**: Define the expected output from the task. -- **Evaluation**: Explain how to evaluate the output, including any metrics or criteria used to measure performance. +Concretely, given an artifact (code, documentation, experiment framework), a complete installation & operation guide, and the paper itself, the AE assistant: -## Benchmark Setup +1. provisions the reference environment; + +2. builds/installs a particular version of the artifact using the specified toolchain; + +3. retrieves and prepares datasets or other third-party targets; + +4. orchestrates experiments with explicit configuration, time and resource budgets; and + +5. generates a human-readable report that summarizes the outcome of each step, indicating any blockers (e.g., install missing dependencies) and how it managed to overcome them. + +The goal is to reduce reviewer effort on mechanical tasks so attention can shift to scientific auditing. + +## Background + +#### » The artifact evaluation process + +Most conferences award badges to incentivize high-quality artifacts that support the paper's claims by asking authors to participate in a multi-stage evaluation process where reviewers attempt to download, install, and operate the artifacts themselves. The following summarizes the widely used criteria for each badge: + +* Artifact Available. This badge indicates that the artifact itself (code, documentation, scripts, benchmarks, etc.) is publicly accessible with a persistent identifier (e.g., DOI, commit ID) on an (ideally, long-term) archival repository (e.g., Zenodo, Github). Availability does not imply the artifact can compile, build, or is functionally correct. It only confirms that the materials needed to verify key claims, reproduce experimental results, and reuse the tool itself are open-sourced. + +* Artifact Functional. This badge indicates that the artifact installs/builds in a reference environment and runs at least a subset of the documented experiments. It confirms that dependencies and configurations are explicitly recorded, and outputs, at least for said subset of experiments, are consistent with the paper's prose. + +* Results Reproduced. This badge indicates that a third party can re-execute all necessary experiments to obtain results consistent with the paper, with a reasonable degree of tolerance (e.g., within relative error bounds, confidence intervals, or rank-ordering equivalence). On top of re-obtaining results that support the paper's claims, reproducibility further requires verifiable provenance (e.g., SW/HW environment characteristics, configuration parameters, experiment logs) and principled handling of non-determinism (e.g., repeated trials, fixed initial states, or variance analysis). -### Test in Docker +Further reading and a detailed description of criteria for each badge can be found [here](https://sysartifacts.github.io/eurosys2026/badges) and [here](https://sysartifacts.github.io/evaluator-guide.html). -To test your benchmark in a Docker container, follow these steps: +#### » What makes AE challenging in practice? -1. Build the Docker image using the provided Dockerfile. You can do this by running the following command in the terminal: +Reproducibility and reusability can be obstructed by multiple factors including, but not limited to: (i) environment drift (e.g., legacy libraries no longer available, drivers mismatch in newer OS versions); (ii) undocumented or implicit build assumptions (e.g., hard-coded compiler flags, directory paths, IPs, or reliance on OS-wide libraries that differ across distributions); (iii) brittle preprocessing of third-party benchmarks or datasets (e.g., broken download URL, non-deterministic compilation steps that silently invalidate subsequent stages); and (iv) unspecified results tolerance bounds that complicate validation for non-deterministic experiments (e.g., performance claims without clarifying what constitutes an acceptable deviation when running within a similar SW/HW setup). - ```sh - docker build -t your_benchmark_image . - ``` +Overcoming such challenges require persistence and careful bookkeeping, precisely where an automated AE assistant can provide leverage. -2. Once the image is built, you can run it using the following command: +## Contributor's guide + +#### » Overview and high-level structure + +To train and improve AE agents in a principled way we introduce `ArtEvalBench`, a curated collection of artifacts accompanying peer-reviewed papers. To ensure a fair comparison we include artifacts that have been already evaluated in an official AE process and awarded all three badges by the committee. Each entry includes the original artifact (instructions, code, scripts, datasets/benchmarks, etc.), the original paper, and a collection of "oracle" scripts that define objective checkpoints at four canonical stages: environment setup, build/install, benchmark preparation, and experiment execution. + +`ArtEvalBench` is designed to evaluate agents on capability (which stages they complete), efficiency (wall-clock time and intervention count), and fidelity (how closely reproduced results match those reported). + +To check those capabilities, each artifact includes four oracle scripts that encode minimal, verifiable success criteria for each of the four stages. The oracles are invoked non-interactively and must be idempotent. Conceptually, these for stages correspond to: + +1. Environment Setup: verifies presence and versions of required tools, libraries, or other dependencies; confirms hardware availability when applicable; and checks that configurations are portable rather than hardcoded or tied to a specific machine. +2. Build/Install: confirms a complete build (or install) operation from a specified version, with expected binaries/modules present; running tests, when available, or simple validation commands like invoking `--help` or equivalent. +3. Benchmark Preparation: asserts that datasets/benchmarks are present and checksums match; verifies that necessary third-party tools compile and the artifact's instrumentation/monitoring hooks are enabled, if applicable. +4. Experiment Runs: executes each experiment according to the authors' guidelines; checks that the artifact produces the expected metrics, logs, files, figures, etc.; provides an initial assessment relative to specified tolerance bounds. + +For a typical example, check out the [agent evaluator](data/benchmark/sosp24_wasabi/wasabi/_agent_eval/) of [WASABI](data/benchmark/sosp24_wasabi/wasabi/). + +#### » Adding a new artifact + +Adding a new artifact to the benchmark requires several steps: + +1. Create a stand-alone directory in `./data/benchmark` and copying all artifact files including the README file. +2. Implement oracles for evaluating the AI agent. This feature should follow the same structure as Wasabi's [evaluator](data/benchmark/sosp24_wasabi/wasabi/_agent_eval/), where each oracle is implemented in a separate Python source file and orchestrated by a `main.py` whose `main()` method returns a single integer, the overal score (0..4) the agent achieved. +3. Create an entry into the [task journal](data/benchmark/arteval_tasks.jsonl) and populate the appropriate fields. + +## Benchmark Setup - ```sh - docker run -it --rm your_benchmark_image - # docker run --rm your_benchmark_image - ``` +#### » Install dependencies -3. Inside the container, navigate to the appropriate directory and execute the benchmark script to start the testing process. +To install the benchmark, simply run the `install.sh` script to set up the environment: + ```sh + ./install.sh + ``` - ```sh - ./run.sh - ``` + This operaiton will: + * Install Python 3.12 virtual environment + * Clone and install SWE-agent + * Install required Python packages (pytest, pytest-cov) + * Clone course repositories (6.5840-golabs-2024, xv6-labs-2024, etc.) -### Maunaly Test +#### » Run the benchmark -To manually test your benchmark, follow these steps: +To run the benchmark: -#### Install Dependencies +1. Execute the `run.sh` script with your model: -To install and configure your benchmark, follow these steps: + ```sh + ./run.sh + # Example: ./run.sh claude-sonnet-4-5-20250929 + ``` -1. Run the `install.sh` script to set up the environment and install necessary dependencies. You can simply execute the following command: +2. Configure your LLM endpoint in `env.toml`: +* For Azure/OpenAI models: Set `AZURE_API_KEY`, `AZURE_API_BASE`, `AZURE_API_VERSION` +* For Anthropic models: Set `ANTHROPIC_API_KEY` +* For self-hosted models: Configure `OPENAI_API_TYPE` and `OPENAI_BASE_URL` - ```sh - ./install.sh - ``` +3. Results will be saved to `outputs/` with timestamp and model information -#### Run -To run your benchmark and obtain results for a specific task and model, follow these steps: +#### » Supported Agents -1. Review the `run.sh` script to understand the expected commands and parameters. -2. Execute the `run.sh` script to start the benchmark. The script will guide you through the process and generate the results. +The benchmark supports multiple AI agents: +* **Claude Code**: Anthropic's code assistant +* **Mini SWE Agent**: The compact version of [SWE-agent](https://github.com/SWE-agent) assistant +* **OpenHands**: Open-source coding agent -Feel free to adjust the details to better fit your specific scenario and requirements. Let me know if there's anything else you need! +To add your own agent to the benchmark, see [add_agents.md](add_agents.md). From ffedcc0d7a6616faf7cb0af2806d74e486ca9567 Mon Sep 17 00:00:00 2001 From: Bogdan-Alexandru Stoica Date: Wed, 19 Nov 2025 03:11:16 -0600 Subject: [PATCH 15/15] fix: rebase the repository's top-level README --- README.md | 150 +++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 119 insertions(+), 31 deletions(-) diff --git a/README.md b/README.md index b01c98db..8ea31034 100644 --- a/README.md +++ b/README.md @@ -1,61 +1,149 @@ -# ArtEvalBench +# System Intelligence Benchmark: A Benchmark Suite for Evaluating LLM's System Capabilities -`ArtEvalBench` is a benchmark for evaluating AI agents that support the Artifact Evaluation (AE) process by auditing research prototypes (artifacts) that accompany research papers, as part of the peer-review process. Artifact evaluation involves reconstructing a reference environment from (partial) specifications, building and configuring complex codebases with often implicit assumptions, preparing datasets and third-party benchmarks whose availability may change over time, orchestrating multi-stage experiments under controlled resource and time budgets, and validating that observed results fall within acceptable tolerance bounds relative to those reported in the paper. Despite the intricacy of the process, we believe AI agents can be trained to support reviewers in evaluating artifacts that accompany research papers by automating most of these stages. +System Intelligence Benchmark is a comprehensive benchmark suite for evaluating the performance of Large Language Models (LLMs) and AI systems across critical system capabilities. It features tutorial, example benchmarks and offers both CLI tools and an SDK for further development. -Want to find out more or contribute? Jump to the [contributor's guide](#contributors-guide). +## Benchmark Overview +A benchmark is a standard or point of reference against which things may be compared or assessed. In the context of AI and LLMs, benchmarks are essential for evaluating model capabilities, guiding research directions, and measuring progress. -## Goals and Objectives +### Benchmark Framework -Artifact evaluation has become a standard component of the peer-review process across a wide range of conferences in Computer Science, especially in Systems and related areas. Despite this progress however, the practical work of provisioning operational environments, resolving dependencies, building artifacts, preparing benchmarks, running experiments, and checking results remains brittle and time-consuming. To alleviate this burden, we envision an automated artifact evaluation AI assistant that executes repeatable steps under (human) reviewer supervision. This "AE assistant" would target artifact mechanics (e.g., code compilation, dataset/benchmark preparation, experiment orchestration, and output validation) alongside code auditing (e.g., does the artifact implementation match the paper prose? are results closely matching those in the paper?). The agent's output can then inform more a complex methodological assessment, design trade-off analysis, and results interpretation that reviewers need to perform to complete the AE process. +To advance benchmark development, we propose the System Intelligence Benchmark, a modular and extensible framework designed to support diverse research domains and problem types. As shown in the below figure, the framework comprises four abstractions: task set, environment, executor, and evaluator. Each task is associated with a specific environment, wherein the executor generates a solution that is subsequently assessed by the evaluator, which returns the evaluation metrics. This design enables the flexible integration of heterogeneous agents and their systematic evaluation. Additionally, the framework includes built-in executors (agents), evaluators (methodologies and grading rubrics), and tutorials. In an ideal case, users need only supply tasks that represent specific capabilities, select an evaluator, and quickly create and run a new benchmark. You can see [benchmark_abstraction.md](doc/benchmark_abstract.md) for details. -Concretely, given an artifact (code, documentation, experiment framework), a complete installation & operation guide, and the paper itself, the AE assistant: +Dashboard Screenshot -1. provisions the reference environment; +The benchmark framework is **still under development**. If you have any questions, feel free to open an issue or contact us directly. -2. builds/installs a particular version of the artifact using the specified toolchain; +### Benchmarks -3. retrieves and prepares datasets or other third-party targets; +System Intelligence Benchmark currently includes the following example benchmarks. Each benchmark assesses specific capabilities across multiple levels within a given research direction. Some benchmarks are still under development — we're actively updating them. Stay tuned! -4. orchestrates experiments with explicit configuration, time and resource budgets; and +- **System Exam Benchmark** ([benchmarks/course_exam_bench/](benchmarks/course_exam_bench/)) - Tests LLM understanding of system concepts through university course exams (54 questions across 4 exams) +- **System Lab Benchmark** ([benchmarks/course_lab_bench/](benchmarks/course_lab_bench/)) - Assesses AI capability on practical system course labs and projects +- **System Artifact Benchmark** ([benchmarks/arteval_bench/](benchmarks/arteval_bench/)) - Evaluates AI performance on artifact evaluation +- **System Modeling Benchmark** ([benchmarks/sysmobench/](benchmarks/sysmobench/)) - Evaluates an agent's ability to produce correct TLA+ models for real-world concurrent and distributed systems, covering system capabilities across system comprehension, abstraction, and potentially tool fluency. +- **Example Benchmark** ([benchmarks/example_bench/](benchmarks/example_bench/)) - Template and reference implementation for creating new benchmarks -5. generates a human-readable report that summarizes the outcome of each step, indicating any blockers (e.g., install missing dependencies) and how it managed to overcome them. +## Quick Start +### Repo Structure -The goal is to reduce reviewer effort on mechanical tasks so attention can shift to scientific auditing. +- **Benchmarks** (`benchmarks/`) - Contains individual benchmark implementations, each with its own source code, tests, and configuration +- **CLI Tools** (`cli/`) - Command-line interface for running benchmarks and managing evaluations +- **SDK** (`sdk/`) - Software development kit providing evaluators, LLM interfaces, and utility functions +- **Documentation** (`doc/`) - Guides and documentation for using and contributing to SysCapBench -## Background +### Prerequisites -#### » The artifact evaluation process +- Python 3.9+ +- Docker (optional, for containerized execution) -Most conferences award badges to incentivize high-quality artifacts that support the paper's claims by asking authors to participate in a multi-stage evaluation process where reviewers attempt to download, install, and operate the artifacts themselves. The following summarizes the widely used criteria for each badge: +> Docker images currently only support x86_64/AMD64 architecture. ARM64 (Apple Silicon M1/M2/M3) is not yet supported -* Artifact Available. This badge indicates that the artifact itself (code, documentation, scripts, benchmarks, etc.) is publicly accessible with a persistent identifier (e.g., DOI, commit ID) on an (ideally, long-term) archival repository (e.g., Zenodo, Github). Availability does not imply the artifact can compile, build, or is functionally correct. It only confirms that the materials needed to verify key claims, reproduce experimental results, and reuse the tool itself are open-sourced. +### Installation -* Artifact Functional. This badge indicates that the artifact installs/builds in a reference environment and runs at least a subset of the documented experiments. It confirms that dependencies and configurations are explicitly recorded, and outputs, at least for said subset of experiments, are consistent with the paper's prose. +1. Clone the repository: -* Results Reproduced. This badge indicates that a third party can re-execute all necessary experiments to obtain results consistent with the paper, with a reasonable degree of tolerance (e.g., within relative error bounds, confidence intervals, or rank-ordering equivalence). On top of re-obtaining results that support the paper's claims, reproducibility further requires verifiable provenance (e.g., SW/HW environment characteristics, configuration parameters, experiment logs) and principled handling of non-determinism (e.g., repeated trials, fixed initial states, or variance analysis). + ```bash + git clone https://github.com/sys-intelligence/system-intelligence-benchmark.git + cd system-intelligence-benchmark + ``` -Further reading and a detailed description of criteria for each badge can be found [here](https://sysartifacts.github.io/eurosys2026/badges) and [here](https://sysartifacts.github.io/evaluator-guide.html). +2. Install dependencies for a specific benchmark: -#### » What makes AE challenging in practice? + ```bash + cd cli + ./install.sh + ``` +3. Each benchmark includes an `env.toml` file for configuration. You should add your own llm endpoint url and key there. -Reproducibility and reusability can be obstructed by multiple factors including, but not limited to: (i) environment drift (e.g., legacy libraries no longer available, drivers mismatch in newer OS versions); (ii) undocumented or implicit build assumptions (e.g., hard-coded compiler flags, directory paths, IPs, or reliance on OS-wide libraries that differ across distributions); (iii) brittle preprocessing of third-party benchmarks or datasets (e.g., broken download URL, non-deterministic compilation steps that silently invalidate subsequent stages); and (iv) unspecified results tolerance bounds that complicate validation for non-deterministic experiments (e.g., performance claims without clarifying what constitutes an acceptable deviation when running within a similar SW/HW setup). +### Running Benchmarks -Overcoming such challenges require persistence and careful bookkeeping, precisely where an automated AE assistant can provide leverage. +#### Run All Benchmarks -## Contributor's guide +To run all benchmarks sequentially: -#### » Overview and structure +```bash +cd cli +./run_all_local.sh +``` -To train and improve AE agents in a principled way we introduce ArtEvalBench, a curated collection of artifacts accompanying peer-reviewed papers. To ensure a fair comparison we include artifacts that have been already evaluated in an official AE process and awarded all three badges by the committee. Each entry includes the original artifact (instructions, code, scripts, datasets/benchmarks, etc.), the original paper, and a collection of "checker" scripts that define objective checkpoints at four canonical stages: environment setup, build/install, benchmark preparation, and experiment execution. +#### Run a Single Benchmark -ArtEvalBench is designed to evaluate agents on capability (which stages they complete), efficiency (wall-clock time and intervention count), and fidelity (how closely reproduced results match those reported). +To run just one benchmark locally: -To check capability, each artifact includes checker scripts that encode minimal, verifiable success criteria for the four stages. Checkers are invoked non-interactively and must be idempotent. A checker returns exit status 0 on success and non-zero on failure. Conceptually, these for stages correspond to: +```bash +cd benchmarks/ +./install.sh # Only needed the first time +./run.sh +``` -1. Environment Setup: verifies presence and versions of required tools, libraries, or other dependencies; confirms hardware availability when applicable; and checks that configurations are portable rather than hardcoded or tied to a specific machine. +#### Output Format -2. Build/Install: confirms a complete build (or install) operation from a specified version, with expected binaries/modules present; running tests, when available, or simple validation commands like invoking `--help` or equivalent. +Benchmarks generate standardized outputs in `cli/outputs/{benchmark_name}__{model_name}__{agent}_{timestamp}/`: -3. Benchmark Preparation: asserts that datasets/benchmarks are present and checksums match; verifies that necessary third-party tools compile and the artifact's instrumentation/monitoring hooks are enabled, if applicable. +- `result.jsonl`: Detailed evaluation results +- `summary.json`: Aggregated performance metrics +- Test-specific breakdowns and comparisons + +You can find more detailed usage guides in the CLI [README.md](cli/README.md). + +## Contribute to Benchmarks + +We welcome community contributions to enrich existing benchmarks (e.g., by adding more exam problems to the System Exam benchmark and more system artifacts to System Artifact and System Modeling benchmark), port your existing benchmarks, and more importantly to create new system intelligence benchmarks with our framework. See below for detailed instructions. We believe that such collective community efforts will advance AI to its next level and help realize System Intelligence, unlocking the potential of AI-driven computing system innovations. If you are interested in contributing or already have good system benchmarks, please let us know. We have set up a [slack channel](https://join.slack.com/t/sys-intelligence/shared_invite/zt-3hpkgr2aa-NnuPxUbyHr45S89DFi_N1A) at sys-intelligence.slack.com. + +> [!NOTE] +> We suggest getting starting by walking through the basic concept of a AI benchmark: [Benchmark Abstraction](doc/benchmark_abstract.md). After understanding the basic concept, you can decide whether to Contribute to Existing Benchmarks, Porting Existing Benchmarks, or Creating New Benchmarks. + +### Contribute to Existing Benchmarks +The easiest way to contribute is to add more tasks to existing benchmarks. Currently, the following two are highly recommended. You can simply follow the provided guidelines to submit your data—once that’s done, you’re all set. +- **SystemExam**: If you are a professor teaching one or more courses, we highly recommend contributing **more exam problems** to SystemExam (see [this doc](https://github.com/sys-intelligence/system-intelligence-benchmark/tree/main/benchmarks/course_exam_bench#how-to-extend-the-benchmark) for step-by-step guidance). +- **SystemArtifact**: If you are a researcher submitting artifacts, or an AE chair involved in artifact evaluation, we highly recommend contributing **more system artifacts** to SystemArtifact (see [this doc](https://github.com/sys-intelligence/system-intelligence-benchmark/blob/main/benchmarks/arteval_bench/README.md) for step-by-step guidance). + +In addition, you can also help review the existing benchmarks to propose improvement ideas or directly enhance them—for example, by adding more advanced evaluators or incorporating improved metrics. + +### Porting Existing Benchmarks +> [!NOTE] +> See [porting_benchmark.md](doc/porting_benchmark.md) for step-by-step guidelines. + +For integrating existing, independently-developed benchmark projects while maintaining synchronization with upstream: + +- Use Git Subtree/Submodule to incorporate upstream code +- Write a bridge layer to connect upstream evaluators with framework SDK +- Configure bidirectional sync for pulling updates and contributing fixes + +**Example:** [SysMoBench](benchmarks/sysmobench/) - ported from [SysSpecBench](https://github.com/specula-org/SysSpecBench) + +### Creating New Benchmarks +> [!NOTE] +> See [custom_benchmark.md](doc/creating_benchmark.md) for step-by-step guidelines. + +To create a new benchmark, follow these steps: +1. Create a new benchmark directory in `benchmarks/` + 1. Based on your specific requirements, select and copy an example benchmark as a starting point + 2. Update the `src/main.py` file with your specific evaluation logic (your executor and evaluator) + 3. Add test cases in the `tests/` directory +2. Update the README.md with benchmark-specific details +3. Implement `install.sh` and `run.sh` scripts +4. Update the benchmark list in `run_all_local.sh` and `run_docker.sh` if needed + +## Contributing + +This project welcomes contributions and suggestions. Most contributions require you to agree to a +Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us +the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com. + +When you submit a pull request, a CLA bot will automatically determine whether you need to provide +a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions +provided by the bot. You will only need to do this once across all repos using our CLA. + +This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). +For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or +contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. + +## Trademarks + +This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft +trademarks or logos is subject to and must follow +[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general). +Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. +Any use of third-party trademarks or logos are subject to those third-party's policies. -4. Experiment Runs: executes each experiment according to the authors' guidelines; checks that the artifact produces the expected metrics, logs, files, figures, etc.; provides an initial assessment relative to specified tolerance bounds. \ No newline at end of file