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

io.trino.plugin.hive.fs.BlockLocation Maven / Gradle / Ivy

The newest version!
/*
 * 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 io.trino.plugin.hive.fs;

import com.google.common.collect.Interner;
import com.google.common.collect.Interners;
import io.trino.filesystem.FileEntry.Block;

import java.util.List;
import java.util.Objects;

import static com.google.common.base.MoreObjects.toStringHelper;
import static com.google.common.collect.ImmutableList.toImmutableList;
import static io.airlift.slice.SizeOf.instanceSize;
import static io.airlift.slice.SizeOf.sizeOfObjectArray;

public class BlockLocation
{
    private static final long INSTANCE_SIZE = instanceSize(BlockLocation.class);

    /**
     * Number of hosts will be low compared to potential number of splits. Host
     * set will also be limited and slowly changing even in most extreme cases.
     * Interning host names allows to have significant memory savings on coordinator.
     */
    private static final Interner HOST_INTERNER = Interners.newWeakInterner();

    private final List hosts;
    private final long offset;
    private final long length;

    public BlockLocation(Block block)
    {
        this.hosts = block.hosts().stream()
                .map(HOST_INTERNER::intern)
                .collect(toImmutableList());
        this.offset = block.offset();
        this.length = block.length();
    }

    public List getHosts()
    {
        return hosts;
    }

    public long getOffset()
    {
        return offset;
    }

    public long getLength()
    {
        return length;
    }

    public long getRetainedSizeInBytes()
    {
        // host names are interned (shared)
        return INSTANCE_SIZE + sizeOfObjectArray(hosts.size());
    }

    @Override
    public boolean equals(Object o)
    {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        BlockLocation that = (BlockLocation) o;
        return offset == that.offset
                && length == that.length
                && hosts.equals(that.hosts);
    }

    @Override
    public int hashCode()
    {
        return Objects.hash(hosts, offset, length);
    }

    @Override
    public String toString()
    {
        return toStringHelper(this)
                .add("hosts", hosts)
                .add("offset", offset)
                .add("length", length)
                .toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy