EdColeman

Results 40 issues of EdColeman

In `ReferencedTabletFile` and inherited by `StoredTabletFile` there is a method ``` public TableId getTableId() ... ``` The id is being derived by parsing the file path. If a table had...

enhancement

The test module has a convenient Wait.waitFor that could be used generally, however, that code allows for a scaling factor to allow for variations in test environments. This PR replicates...

The ExternalCompaction tests seem to fail occasionally with the compaction coordinator unable to read information from ZooKeeper to create the metrics used in the test. - Adds a delay with...

bug

The NamespaceIdTest and TableIdTest have been occasionally failing in github actions (and possible Jenkins runs). This change adds a retry to allow cache background clean-up occur that may be effecting...

The convenience definitions that provide a `Text` object for constants in MetadataSchema expose the constants to changes if the Text object is mutated. For example: ``` public static class ServerColumnFamily...

enhancement

The fence concept provided as part of the no-chop merges places start row and end row data associated with a metadata file reference to fence off sections of files. There...

enhancement

Noticed that the metric values logged during the MetricsIT (in the manager log) for the FATE metrics mostly are reporting 0 for the values. Because of the test, it seems...

This PR is based on the changes proposed by @keith-turner in #4458, using the changes in #4459 as the base. - includes updated documentation in MetricsProducer - includes cache metrics...

Adds two gauges that can be used to monitor balancing - manager.balancer.balancing.total - snapshot of the number of current migrations being performed. - manager.balancer.need.balancing.total - snapshot of the total number...

The DefaultCompactionPlanner emits a warn message every time that files cannot be found to compact when the max file ratio has been exceeded. The rate these messages can be generated...

bug