apache / apache/accumulo-testing

Explore writng a specialized summarizer for bulk ingest

Open
#97 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Java
Stars
19
Forks
40
Avg merge
21h 30m
Merged PRs (30d)
1

Description

To debug a recent bulk ingest test I wrote the following summarizer. This summarizer counted the number of times each UUID was seen. I used to count the number of entries each map reduce job had created.

```java
package test.ci;

import org.apache.accumulo.core.client.summary.CountingSummarizer;

public class CiUuidSummarizer extends CountingSummarizer{

@Override
protected Converter converter() {
return (k,v,c) -> c.accept(v.toString().split(":")[0]);
}

}

```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.