fix javadoc usage
This commit is contained in:
parent
288515ddc5
commit
c0c7e02de4
|
@ -222,8 +222,6 @@ public abstract class LifecyclePolicy extends AbstractDiffable<LifecyclePolicy>
|
|||
* <p>
|
||||
* Concrete {@link LifecyclePolicy} classes will implement this to help determine their specific
|
||||
* ordering of actions for the phases they allow.
|
||||
* <pre><code>
|
||||
* </code></pre>
|
||||
*/
|
||||
@FunctionalInterface
|
||||
interface NextActionProvider {
|
||||
|
|
|
@ -111,11 +111,11 @@ public class TimeseriesLifecyclePolicy extends LifecyclePolicy {
|
|||
* on whether it increases, decreases, or keeps the existing replica count. If number-of-replicas is
|
||||
* kept the same, or reduced, then {@link ReplicasAction} is executed first, otherwise, it is last.
|
||||
* So the ordering looks something like this:
|
||||
* - {@link ReplicasAction} (if action.number_of_replicas <= idxMeta.number_of_replicas)
|
||||
* - {@link ReplicasAction} (if action.number_of_replicas lte idxMeta.number_of_replicas)
|
||||
* - {@link AllocateAction}
|
||||
* - {@link ShrinkAction}
|
||||
* - {@link ForceMergeAction}
|
||||
* - {@link ReplicasAction} (if action.number_of_replicas > idxMeta.number_of_replicas)
|
||||
* - {@link ReplicasAction} (if action.number_of_replicas gt idxMeta.number_of_replicas)
|
||||
*
|
||||
* NOCOMMIT: there may exist further optimizations to this when {@link ShrinkAction} is specified.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue