/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you 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. */ package org.elasticsearch.index.seqno; import org.elasticsearch.common.io.stream.StreamInput; import org.elasticsearch.common.io.stream.StreamOutput; import org.elasticsearch.common.io.stream.Writeable; import org.elasticsearch.common.xcontent.ToXContent; import org.elasticsearch.common.xcontent.XContentBuilder; import java.io.IOException; public class SeqNoStats implements ToXContent, Writeable { private static final String SEQ_NO = "seq_no"; private static final String MAX_SEQ_NO = "max_seq_no"; private static final String LOCAL_CHECKPOINT = "local_checkpoint"; private static final String GLOBAL_CHECKPOINT = "global_checkpoint"; private final long maxSeqNo; private final long localCheckpoint; private final long globalCheckpoint; public SeqNoStats(long maxSeqNo, long localCheckpoint, long globalCheckpoint) { assert localCheckpoint <= maxSeqNo: "local checkpoint [" + localCheckpoint + "] is above maximum seq no [" + maxSeqNo + "]"; // note that the the global checkpoint can be higher from both maxSeqNo and localCheckpoint // as we use this stats object to describe lucene commits as well as live statistic. this.maxSeqNo = maxSeqNo; this.localCheckpoint = localCheckpoint; this.globalCheckpoint = globalCheckpoint; } public SeqNoStats(StreamInput in) throws IOException { this(in.readZLong(), in.readZLong(), in.readZLong()); } /** the maximum sequence number seen so far */ public long getMaxSeqNo() { return maxSeqNo; } /** the maximum sequence number for which all previous operations (including) have been completed */ public long getLocalCheckpoint() { return localCheckpoint; } public long getGlobalCheckpoint() { return globalCheckpoint; } @Override public void writeTo(StreamOutput out) throws IOException { out.writeZLong(maxSeqNo); out.writeZLong(localCheckpoint); out.writeZLong(globalCheckpoint); } @Override public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException { builder.startObject(SEQ_NO); builder.field(MAX_SEQ_NO, maxSeqNo); builder.field(LOCAL_CHECKPOINT, localCheckpoint); builder.field(GLOBAL_CHECKPOINT, globalCheckpoint); builder.endObject(); return builder; } @Override public String toString() { return "SeqNoStats{" + "maxSeqNo=" + maxSeqNo + ", localCheckpoint=" + localCheckpoint + ", globalCheckpoint=" + globalCheckpoint + '}'; } }