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

org.apache.hudi.common.model.HoodieKey Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta2
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF 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.apache.hudi.common.model;

import java.io.Serializable;
import java.util.Objects;

/**
 * HoodieKey consists of
 * 

* - recordKey : a recordKey that acts as primary key for a record. * - partitionPath : the partition path of a record. * * NOTE: PLEASE READ CAREFULLY BEFORE CHANGING * * This class is serialized (using Kryo) as part of {@code HoodieDeleteBlock} to make * sure this stays backwards-compatible we can't MAKE ANY CHANGES TO THIS CLASS (add, * delete, reorder or change types of the fields in this class, make class final, etc) * as this would break its compatibility with already persisted blocks. * * Check out HUDI-5760 for more details */ public class HoodieKey implements Serializable { private String recordKey; private String partitionPath; // Required for serializer public HoodieKey() {} public HoodieKey(String recordKey, String partitionPath) { this.recordKey = recordKey; this.partitionPath = partitionPath; } public void setRecordKey(String recordKey) { this.recordKey = recordKey; } public String getRecordKey() { return recordKey; } public void setPartitionPath(String partitionPath) { this.partitionPath = partitionPath; } public String getPartitionPath() { return partitionPath; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } HoodieKey otherKey = (HoodieKey) o; return Objects.equals(recordKey, otherKey.recordKey) && Objects.equals(partitionPath, otherKey.partitionPath); } @Override public int hashCode() { return Objects.hash(recordKey, partitionPath); } @Override public String toString() { final StringBuilder sb = new StringBuilder("HoodieKey {"); sb.append(" recordKey=").append(recordKey); sb.append(" partitionPath=").append(partitionPath); sb.append('}'); return sb.toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy