keith-turner commented on issue #239:
URL:
https://github.com/apache/accumulo-testing/issues/239#issuecomment-1282176957
> I haven't been able to reproduce the exception on my end despite the
suggestions above.
The problem was intermittent. If you have the fix
apache/accumulo@f6c943e70dd14183985faeeefc5b554fcc731fff then you may never see
the bug.
For testing purposes, could create a bulk graph locally that will always
cause verify to fail. I have not tested it, but maybe running the following
graph would cause verify to always fail quickly. It does a plus one w/o a
corresponding minus one and then verifies, so the counts should be non-zero.
```xml
<module>
<package prefix="bulk" value="org.apache.accumulo.testing.randomwalk.bulk"/>
<init id="bulk.Setup"/>
<node id="bulk.Setup">
<edge id="bulk.BulkPlusOne" weight="1"/>
</node>
<node id="bulk.BulkPlusOne">
<edge id="bulk.Verify" weight="10"/>
</node>
<node id="bulk.Verify">
<edge id="END" weight="1"/>
</node>
</module>
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]