io.prestosql.spi.Node.getHostAndPort()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(13.1k)|赞(0)|评价(0)|浏览(222)

本文整理了Java中io.prestosql.spi.Node.getHostAndPort()方法的一些代码示例,展示了Node.getHostAndPort()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node.getHostAndPort()方法的具体详情如下:
包路径:io.prestosql.spi.Node
类名称:Node
方法名:getHostAndPort

Node.getHostAndPort介绍

暂无

代码示例

代码示例来源:origin: prestosql/presto

  1. private static List<HostAddress> getAddressesForNodes(Map<String, Node> nodeMap, Iterable<String> nodeIdentifiers)
  2. {
  3. ImmutableList.Builder<HostAddress> nodes = ImmutableList.builder();
  4. for (String id : nodeIdentifiers) {
  5. Node node = nodeMap.get(id);
  6. if (node != null) {
  7. nodes.add(node.getHostAndPort());
  8. }
  9. }
  10. return nodes.build();
  11. }

代码示例来源:origin: prestosql/presto

  1. @Inject
  2. public MemoryPageSinkProvider(MemoryPagesStore pagesStore, NodeManager nodeManager)
  3. {
  4. this(pagesStore, requireNonNull(nodeManager, "nodeManager is null").getCurrentNode().getHostAndPort());
  5. }

代码示例来源:origin: io.prestosql/presto-memory

  1. @Inject
  2. public MemoryPageSinkProvider(MemoryPagesStore pagesStore, NodeManager nodeManager)
  3. {
  4. this(pagesStore, requireNonNull(nodeManager, "nodeManager is null").getCurrentNode().getHostAndPort());
  5. }

代码示例来源:origin: prestosql/presto

  1. public synchronized Map<String, Optional<MemoryInfo>> getWorkerMemoryInfo()
  2. {
  3. Map<String, Optional<MemoryInfo>> memoryInfo = new HashMap<>();
  4. for (Entry<String, RemoteNodeMemory> entry : nodes.entrySet()) {
  5. // workerId is of the form "node_identifier [node_host]"
  6. String workerId = entry.getKey() + " [" + entry.getValue().getNode().getHostAndPort().getHostText() + "]";
  7. memoryInfo.put(workerId, entry.getValue().getInfo());
  8. }
  9. return memoryInfo;
  10. }

代码示例来源:origin: io.prestosql/presto-main

  1. public synchronized Map<String, Optional<MemoryInfo>> getWorkerMemoryInfo()
  2. {
  3. Map<String, Optional<MemoryInfo>> memoryInfo = new HashMap<>();
  4. for (Entry<String, RemoteNodeMemory> entry : nodes.entrySet()) {
  5. // workerId is of the form "node_identifier [node_host]"
  6. String workerId = entry.getKey() + " [" + entry.getValue().getNode().getHostAndPort().getHostText() + "]";
  7. memoryInfo.put(workerId, entry.getValue().getInfo());
  8. }
  9. return memoryInfo;
  10. }

代码示例来源:origin: prestosql/presto

  1. private ConnectorSplit createBucketSplit(int bucketNumber, Set<ShardNodes> shards)
  2. {
  3. // Bucket splits contain all the shards for the bucket
  4. // and run on the node assigned to the bucket.
  5. String nodeId = bucketToNode.get().get(bucketNumber);
  6. Node node = nodesById.get(nodeId);
  7. if (node == null) {
  8. throw new PrestoException(NO_NODES_AVAILABLE, "Node for bucket is offline: " + nodeId);
  9. }
  10. Set<UUID> shardUuids = shards.stream()
  11. .map(ShardNodes::getShardUuid)
  12. .collect(toSet());
  13. HostAddress address = node.getHostAndPort();
  14. return new RaptorSplit(connectorId, shardUuids, bucketNumber, address, effectivePredicate, transactionId);
  15. }
  16. }

代码示例来源:origin: io.prestosql/presto-tpcds

  1. @Override
  2. public ConnectorSplitSource getSplits(ConnectorTransactionHandle transaction, ConnectorSession session, ConnectorTableLayoutHandle layout, SplitSchedulingStrategy splitSchedulingStrategy)
  3. {
  4. TpcdsTableHandle tableHandle = ((TpcdsTableLayoutHandle) layout).getTable();
  5. Set<Node> nodes = nodeManager.getRequiredWorkerNodes();
  6. checkState(!nodes.isEmpty(), "No TPCDS nodes available");
  7. int totalParts = nodes.size() * splitsPerNode;
  8. int partNumber = 0;
  9. // Split the data using split and skew by the number of nodes available.
  10. ImmutableList.Builder<ConnectorSplit> splits = ImmutableList.builder();
  11. for (Node node : nodes) {
  12. for (int i = 0; i < splitsPerNode; i++) {
  13. splits.add(new TpcdsSplit(tableHandle, partNumber, totalParts, ImmutableList.of(node.getHostAndPort()), noSexism));
  14. partNumber++;
  15. }
  16. }
  17. return new FixedSplitSource(splits.build());
  18. }
  19. }

代码示例来源:origin: prestosql/presto

  1. @Override
  2. public ConnectorSplitSource getSplits(ConnectorTransactionHandle transaction, ConnectorSession session, ConnectorTableLayoutHandle layout, SplitSchedulingStrategy splitSchedulingStrategy)
  3. {
  4. TpcdsTableHandle tableHandle = ((TpcdsTableLayoutHandle) layout).getTable();
  5. Set<Node> nodes = nodeManager.getRequiredWorkerNodes();
  6. checkState(!nodes.isEmpty(), "No TPCDS nodes available");
  7. int totalParts = nodes.size() * splitsPerNode;
  8. int partNumber = 0;
  9. // Split the data using split and skew by the number of nodes available.
  10. ImmutableList.Builder<ConnectorSplit> splits = ImmutableList.builder();
  11. for (Node node : nodes) {
  12. for (int i = 0; i < splitsPerNode; i++) {
  13. splits.add(new TpcdsSplit(tableHandle, partNumber, totalParts, ImmutableList.of(node.getHostAndPort()), noSexism));
  14. partNumber++;
  15. }
  16. }
  17. return new FixedSplitSource(splits.build());
  18. }
  19. }

代码示例来源:origin: prestosql/presto

  1. @Override
  2. public ConnectorSplitSource getSplits(ConnectorTransactionHandle transaction, ConnectorSession session, ConnectorTableLayoutHandle layout, SplitSchedulingStrategy splitSchedulingStrategy)
  3. {
  4. TpchTableLayoutHandle tableLayoutHandle = (TpchTableLayoutHandle) layout;
  5. TpchTableHandle tableHandle = tableLayoutHandle.getTable();
  6. Set<Node> nodes = nodeManager.getRequiredWorkerNodes();
  7. int totalParts = nodes.size() * splitsPerNode;
  8. int partNumber = 0;
  9. // Split the data using split and skew by the number of nodes available.
  10. ImmutableList.Builder<ConnectorSplit> splits = ImmutableList.builder();
  11. for (Node node : nodes) {
  12. for (int i = 0; i < splitsPerNode; i++) {
  13. splits.add(new TpchSplit(tableHandle, partNumber, totalParts, ImmutableList.of(node.getHostAndPort()), tableLayoutHandle.getPredicate()));
  14. partNumber++;
  15. }
  16. }
  17. return new FixedSplitSource(splits.build());
  18. }
  19. }

代码示例来源:origin: prestosql/presto

  1. @Override
  2. public ConnectorSplitSource getSplits(ConnectorTransactionHandle transaction, ConnectorSession session, ConnectorTableLayoutHandle layout, SplitSchedulingStrategy splitSchedulingStrategy)
  3. {
  4. InformationSchemaTableLayoutHandle handle = (InformationSchemaTableLayoutHandle) layout;
  5. List<HostAddress> localAddress = ImmutableList.of(nodeManager.getCurrentNode().getHostAndPort());
  6. ConnectorSplit split = new InformationSchemaSplit(handle.getTable(), handle.getPrefixes(), localAddress);
  7. return new FixedSplitSource(ImmutableList.of(split));
  8. }
  9. }

代码示例来源:origin: io.prestosql/presto-tpch

  1. @Override
  2. public ConnectorSplitSource getSplits(ConnectorTransactionHandle transaction, ConnectorSession session, ConnectorTableLayoutHandle layout, SplitSchedulingStrategy splitSchedulingStrategy)
  3. {
  4. TpchTableLayoutHandle tableLayoutHandle = (TpchTableLayoutHandle) layout;
  5. TpchTableHandle tableHandle = tableLayoutHandle.getTable();
  6. Set<Node> nodes = nodeManager.getRequiredWorkerNodes();
  7. int totalParts = nodes.size() * splitsPerNode;
  8. int partNumber = 0;
  9. // Split the data using split and skew by the number of nodes available.
  10. ImmutableList.Builder<ConnectorSplit> splits = ImmutableList.builder();
  11. for (Node node : nodes) {
  12. for (int i = 0; i < splitsPerNode; i++) {
  13. splits.add(new TpchSplit(tableHandle, partNumber, totalParts, ImmutableList.of(node.getHostAndPort()), tableLayoutHandle.getPredicate()));
  14. partNumber++;
  15. }
  16. }
  17. return new FixedSplitSource(splits.build());
  18. }
  19. }

代码示例来源:origin: io.prestosql/presto-main

  1. @Override
  2. public ConnectorSplitSource getSplits(ConnectorTransactionHandle transaction, ConnectorSession session, ConnectorTableLayoutHandle layout, SplitSchedulingStrategy splitSchedulingStrategy)
  3. {
  4. InformationSchemaTableLayoutHandle handle = (InformationSchemaTableLayoutHandle) layout;
  5. List<HostAddress> localAddress = ImmutableList.of(nodeManager.getCurrentNode().getHostAndPort());
  6. ConnectorSplit split = new InformationSchemaSplit(handle.getTable(), handle.getPrefixes(), localAddress);
  7. return new FixedSplitSource(ImmutableList.of(split));
  8. }
  9. }

代码示例来源:origin: prestosql/presto

  1. @Override
  2. public ConnectorSplitSource getSplits(ConnectorTransactionHandle transactionHandle, ConnectorSession session, ConnectorTableLayoutHandle layout, SplitSchedulingStrategy splitSchedulingStrategy)
  3. {
  4. LocalFileTableLayoutHandle layoutHandle = (LocalFileTableLayoutHandle) layout;
  5. LocalFileTableHandle tableHandle = layoutHandle.getTable();
  6. TupleDomain<LocalFileColumnHandle> effectivePredicate = layoutHandle.getConstraint()
  7. .transform(LocalFileColumnHandle.class::cast);
  8. List<ConnectorSplit> splits = nodeManager.getAllNodes().stream()
  9. .map(node -> new LocalFileSplit(node.getHostAndPort(), tableHandle.getSchemaTableName(), effectivePredicate))
  10. .collect(Collectors.toList());
  11. return new FixedSplitSource(splits);
  12. }
  13. }

代码示例来源:origin: prestosql/presto

  1. @Override
  2. public ConnectorSplitSource getSplits(ConnectorTransactionHandle transaction, ConnectorSession session, ConnectorTableLayoutHandle layout, SplitSchedulingStrategy splitSchedulingStrategy)
  3. {
  4. JmxTableLayoutHandle jmxLayout = (JmxTableLayoutHandle) layout;
  5. JmxTableHandle tableHandle = jmxLayout.getTable();
  6. TupleDomain<ColumnHandle> predicate = jmxLayout.getConstraint();
  7. //TODO is there a better way to get the node column?
  8. Optional<JmxColumnHandle> nodeColumnHandle = tableHandle.getColumnHandles().stream()
  9. .filter(jmxColumnHandle -> jmxColumnHandle.getColumnName().equals(NODE_COLUMN_NAME))
  10. .findFirst();
  11. checkState(nodeColumnHandle.isPresent(), "Failed to find %s column", NODE_COLUMN_NAME);
  12. List<ConnectorSplit> splits = nodeManager.getAllNodes().stream()
  13. .filter(node -> {
  14. NullableValue value = NullableValue.of(createUnboundedVarcharType(), utf8Slice(node.getNodeIdentifier()));
  15. return predicate.overlaps(fromFixedValues(ImmutableMap.of(nodeColumnHandle.get(), value)));
  16. })
  17. .map(node -> new JmxSplit(tableHandle, ImmutableList.of(node.getHostAndPort())))
  18. .collect(toList());
  19. return new FixedSplitSource(splits);
  20. }
  21. }

代码示例来源:origin: prestosql/presto

  1. HostAddress address = nodeManager.getCurrentNode().getHostAndPort();
  2. ConnectorSplit split = new SystemSplit(tableHandle.getConnectorId(), tableHandle, address, constraint);
  3. return new FixedSplitSource(ImmutableList.of(split));
  4. splits.add(new SystemSplit(tableHandle.getConnectorId(), tableHandle, node.getHostAndPort(), constraint));

代码示例来源:origin: prestosql/presto

  1. @Test
  2. public void testScheduleLocal()
  3. {
  4. Split split = new Split(CONNECTOR_ID, TestingTransactionHandle.create(), new TestSplitLocal());
  5. Set<Split> splits = ImmutableSet.of(split);
  6. Map.Entry<Node, Split> assignment = Iterables.getOnlyElement(nodeSelector.computeAssignments(splits, ImmutableList.copyOf(taskMap.values())).getAssignments().entries());
  7. assertEquals(assignment.getKey().getHostAndPort(), split.getAddresses().get(0));
  8. assertEquals(assignment.getValue(), split);
  9. }

代码示例来源:origin: io.prestosql/presto-main

  1. HostAddress address = nodeManager.getCurrentNode().getHostAndPort();
  2. ConnectorSplit split = new SystemSplit(tableHandle.getConnectorId(), tableHandle, address, constraint);
  3. return new FixedSplitSource(ImmutableList.of(split));
  4. splits.add(new SystemSplit(tableHandle.getConnectorId(), tableHandle, node.getHostAndPort(), constraint));

代码示例来源:origin: io.prestosql/presto-main

  1. @Test
  2. public void testScheduleLocal()
  3. {
  4. Split split = new Split(CONNECTOR_ID, TestingTransactionHandle.create(), new TestSplitLocal());
  5. Set<Split> splits = ImmutableSet.of(split);
  6. Map.Entry<Node, Split> assignment = Iterables.getOnlyElement(nodeSelector.computeAssignments(splits, ImmutableList.copyOf(taskMap.values())).getAssignments().entries());
  7. assertEquals(assignment.getKey().getHostAndPort(), split.getAddresses().get(0));
  8. assertEquals(assignment.getValue(), split);
  9. }

代码示例来源:origin: prestosql/presto

  1. private ConnectorSplit createSplit(BucketShards bucketShards)
  2. {
  3. if (bucketShards.getBucketNumber().isPresent()) {
  4. return createBucketSplit(bucketShards.getBucketNumber().getAsInt(), bucketShards.getShards());
  5. }
  6. verify(bucketShards.getShards().size() == 1, "wrong shard count for non-bucketed table");
  7. ShardNodes shard = getOnlyElement(bucketShards.getShards());
  8. UUID shardId = shard.getShardUuid();
  9. Set<String> nodeIds = shard.getNodeIdentifiers();
  10. List<HostAddress> addresses = getAddressesForNodes(nodesById, nodeIds);
  11. if (addresses.isEmpty()) {
  12. if (!backupAvailable) {
  13. throw new PrestoException(RAPTOR_NO_HOST_FOR_SHARD, format("No host for shard %s found: %s", shardId, nodeIds));
  14. }
  15. // Pick a random node and optimistically assign the shard to it.
  16. // That node will restore the shard from the backup location.
  17. Set<Node> availableNodes = nodeSupplier.getWorkerNodes();
  18. if (availableNodes.isEmpty()) {
  19. throw new PrestoException(NO_NODES_AVAILABLE, "No nodes available to run query");
  20. }
  21. Node node = selectRandom(availableNodes);
  22. shardManager.replaceShardAssignment(tableId, shardId, node.getNodeIdentifier(), true);
  23. addresses = ImmutableList.of(node.getHostAndPort());
  24. }
  25. return new RaptorSplit(connectorId, shardId, addresses, effectivePredicate, transactionId);
  26. }

代码示例来源:origin: prestosql/presto

  1. @Override
  2. public ConnectorSplitSource getSplits(ConnectorTransactionHandle transactionHandle, ConnectorSession session, ConnectorTableLayoutHandle layoutHandle, SplitSchedulingStrategy splitSchedulingStrategy)
  3. {
  4. AtopTableLayoutHandle handle = (AtopTableLayoutHandle) layoutHandle;
  5. AtopTableHandle table = handle.getTableHandle();
  6. List<ConnectorSplit> splits = new ArrayList<>();
  7. ZonedDateTime end = ZonedDateTime.now(timeZone);
  8. for (Node node : nodeManager.getWorkerNodes()) {
  9. ZonedDateTime start = end.minusDays(maxHistoryDays - 1).withHour(0).withMinute(0).withSecond(0).withNano(0);
  10. while (start.isBefore(end)) {
  11. ZonedDateTime splitEnd = start.withHour(23).withMinute(59).withSecond(59).withNano(0);
  12. Domain splitDomain = Domain.create(ValueSet.ofRanges(Range.range(TIMESTAMP_WITH_TIME_ZONE, 1000 * start.toEpochSecond(), true, 1000 * splitEnd.toEpochSecond(), true)), false);
  13. if (handle.getStartTimeConstraint().overlaps(splitDomain) && handle.getEndTimeConstraint().overlaps(splitDomain)) {
  14. splits.add(new AtopSplit(table.getTable(), node.getHostAndPort(), start.toEpochSecond(), start.getZone()));
  15. }
  16. start = start.plusDays(1).withHour(0).withMinute(0).withSecond(0).withNano(0);
  17. }
  18. }
  19. return new FixedSplitSource(splits);
  20. }
  21. }

相关文章