/* * 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.facebook.presto.hive; import com.facebook.presto.spi.ConnectorSplit; import com.facebook.presto.spi.HostAddress; import com.facebook.presto.spi.predicate.TupleDomain; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import java.util.List; import java.util.Map; import java.util.OptionalInt; import java.util.Properties; import static com.google.common.base.MoreObjects.toStringHelper; import static com.google.common.base.Preconditions.checkArgument; import static java.util.Objects.requireNonNull; public class HiveSplit implements ConnectorSplit { private final String clientId; private final String path; private final long start; private final long length; private final Properties schema; private final List<HivePartitionKey> partitionKeys; private final List<HostAddress> addresses; private final String database; private final String table; private final String partitionName; private final TupleDomain<HiveColumnHandle> effectivePredicate; private final OptionalInt bucketNumber; private final boolean forceLocalScheduling; private final Map<Integer, HiveType> columnCoercions; @JsonCreator public HiveSplit( @JsonProperty("clientId") String clientId, @JsonProperty("database") String database, @JsonProperty("table") String table, @JsonProperty("partitionName") String partitionName, @JsonProperty("path") String path, @JsonProperty("start") long start, @JsonProperty("length") long length, @JsonProperty("schema") Properties schema, @JsonProperty("partitionKeys") List<HivePartitionKey> partitionKeys, @JsonProperty("addresses") List<HostAddress> addresses, @JsonProperty("bucketNumber") OptionalInt bucketNumber, @JsonProperty("forceLocalScheduling") boolean forceLocalScheduling, @JsonProperty("effectivePredicate") TupleDomain<HiveColumnHandle> effectivePredicate, @JsonProperty("columnCoercions") Map<Integer, HiveType> columnCoercions) { requireNonNull(clientId, "clientId is null"); checkArgument(start >= 0, "start must be positive"); checkArgument(length >= 0, "length must be positive"); requireNonNull(database, "database is null"); requireNonNull(table, "table is null"); requireNonNull(partitionName, "partitionName is null"); requireNonNull(path, "path is null"); requireNonNull(schema, "schema is null"); requireNonNull(partitionKeys, "partitionKeys is null"); requireNonNull(addresses, "addresses is null"); requireNonNull(bucketNumber, "bucketNumber is null"); requireNonNull(effectivePredicate, "tupleDomain is null"); requireNonNull(columnCoercions, "columnCoercions is null"); this.clientId = clientId; this.database = database; this.table = table; this.partitionName = partitionName; this.path = path; this.start = start; this.length = length; this.schema = schema; this.partitionKeys = ImmutableList.copyOf(partitionKeys); this.addresses = ImmutableList.copyOf(addresses); this.bucketNumber = bucketNumber; this.forceLocalScheduling = forceLocalScheduling; this.effectivePredicate = effectivePredicate; this.columnCoercions = columnCoercions; } @JsonProperty public String getClientId() { return clientId; } @JsonProperty public String getDatabase() { return database; } @JsonProperty public String getTable() { return table; } @JsonProperty public String getPartitionName() { return partitionName; } @JsonProperty public String getPath() { return path; } @JsonProperty public long getStart() { return start; } @JsonProperty public long getLength() { return length; } @JsonProperty public Properties getSchema() { return schema; } @JsonProperty public List<HivePartitionKey> getPartitionKeys() { return partitionKeys; } @JsonProperty @Override public List<HostAddress> getAddresses() { return addresses; } @JsonProperty public OptionalInt getBucketNumber() { return bucketNumber; } @JsonProperty public TupleDomain<HiveColumnHandle> getEffectivePredicate() { return effectivePredicate; } @JsonProperty public boolean isForceLocalScheduling() { return forceLocalScheduling; } @JsonProperty public Map<Integer, HiveType> getColumnCoercions() { return columnCoercions; } @Override public boolean isRemotelyAccessible() { return !forceLocalScheduling; } @Override public Object getInfo() { return ImmutableMap.builder() .put("path", path) .put("start", start) .put("length", length) .put("hosts", addresses) .put("database", database) .put("table", table) .put("forceLocalScheduling", forceLocalScheduling) .put("partitionName", partitionName) .build(); } @Override public String toString() { return toStringHelper(this) .addValue(path) .addValue(start) .addValue(length) .addValue(effectivePredicate) .toString(); } }