All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yelp.nrtsearch.tools.nrt_utils.backup.SnapshotMetadata Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2022 Yelp Inc.
 *
 * Licensed 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 com.yelp.nrtsearch.tools.nrt_utils.backup;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;

/** Jackson annotated class that contains metadata for an index snapshot. */
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(Include.NON_NULL)
public class SnapshotMetadata {
  private final String serviceName;
  private final String indexName;
  private final String timeStringMs;
  private final long indexSizeBytes;

  /**
   * Constructor.
   *
   * @param serviceName nrtsearch cluster service name
   * @param indexName index resource name (index-UUID)
   * @param timeStringMs snapshot timestamp
   * @param indexSizeBytes size of snapshot index data in bytes
   */
  @JsonCreator
  public SnapshotMetadata(
      @JsonProperty("serviceName") String serviceName,
      @JsonProperty("indexName") String indexName,
      @JsonProperty("timeStringMs") String timeStringMs,
      @JsonProperty("indexSizeBytes") long indexSizeBytes) {
    this.serviceName = serviceName;
    this.indexName = indexName;
    this.timeStringMs = timeStringMs;
    this.indexSizeBytes = indexSizeBytes;
  }

  /** Get nrtsearch cluster service name. */
  public String getServiceName() {
    return serviceName;
  }

  /** Get index resource name (index-UUID). */
  public String getIndexName() {
    return indexName;
  }

  /** Get snapshot time string of the form yyyyMMddHHmmssSSS. */
  public String getTimeStringMs() {
    return timeStringMs;
  }

  /** Get size of snapshot index data in bytes. */
  public long getIndexSizeBytes() {
    return indexSizeBytes;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy