Tabnine Logo
ZkPathsConfig.getLiveSegmentsPath
Code IndexAdd Tabnine to your IDE (free)

How to use
getLiveSegmentsPath
method
in
org.apache.druid.server.initialization.ZkPathsConfig

Best Java code snippets using org.apache.druid.server.initialization.ZkPathsConfig.getLiveSegmentsPath (Showing top 13 results out of 315)

origin: apache/incubator-druid

@Inject
public BatchServerInventoryView(
  final ZkPathsConfig zkPaths,
  final CuratorFramework curator,
  final ObjectMapper jsonMapper,
  final Predicate<Pair<DruidServerMetadata, DataSegment>> defaultFilter
)
{
 super(
   log,
   zkPaths.getAnnouncementsPath(),
   zkPaths.getLiveSegmentsPath(),
   curator,
   jsonMapper,
   new TypeReference<Set<DataSegment>>()
   {
   }
 );
 this.defaultFilter = Preconditions.checkNotNull(defaultFilter);
}
origin: apache/incubator-druid

@Override
public boolean equals(Object other)
{
 if (null == other) {
  return false;
 }
 if (this == other) {
  return true;
 }
 if (!(other instanceof ZkPathsConfig)) {
  return false;
 }
 ZkPathsConfig otherConfig = (ZkPathsConfig) other;
 if (this.getBase().equals(otherConfig.getBase()) &&
   this.getAnnouncementsPath().equals(otherConfig.getAnnouncementsPath()) &&
   this.getConnectorPath().equals(otherConfig.getConnectorPath()) &&
   this.getLiveSegmentsPath().equals(otherConfig.getLiveSegmentsPath()) &&
   this.getCoordinatorPath().equals(otherConfig.getCoordinatorPath()) &&
   this.getLoadQueuePath().equals(otherConfig.getLoadQueuePath()) &&
   this.getPropertiesPath().equals(otherConfig.getPropertiesPath()) &&
   this.getServedSegmentsPath().equals(otherConfig.getServedSegmentsPath())) {
  return true;
 }
 return false;
}
origin: apache/incubator-druid

public CoordinatorServerViewTest()
{
 jsonMapper = TestHelper.makeJsonMapper();
 zkPathsConfig = new ZkPathsConfig();
 inventoryPath = zkPathsConfig.getLiveSegmentsPath();
}
origin: apache/incubator-druid

this.server = server;
this.liveSegmentLocation = ZKPaths.makePath(zkPaths.getLiveSegmentsPath(), server.getName());
segmentTransformer = new Function<DataSegment, DataSegment>()
origin: apache/incubator-druid

protected void announceSegmentForServer(
  DruidServer druidServer,
  DataSegment segment,
  ZkPathsConfig zkPathsConfig,
  ObjectMapper jsonMapper
)
{
 final String segmentAnnouncementPath =
   ZKPaths.makePath(zkPathsConfig.getLiveSegmentsPath(), druidServer.getHost(), segment.getId().toString());
 try {
  curator.create()
      .compressed()
      .withMode(CreateMode.EPHEMERAL)
      .forPath(segmentAnnouncementPath, jsonMapper.writeValueAsBytes(ImmutableSet.of(segment)));
 }
 catch (KeeperException.NodeExistsException e) {
  try {
   curator.setData()
       .forPath(segmentAnnouncementPath, jsonMapper.writeValueAsBytes(ImmutableSet.of(segment)));
  }
  catch (Exception e1) {
   Throwables.propagate(e1);
  }
 }
 catch (Exception e) {
  Throwables.propagate(e);
 }
}
origin: apache/incubator-druid

protected void unannounceSegmentForServer(DruidServer druidServer, DataSegment segment, ZkPathsConfig zkPathsConfig)
  throws Exception
{
 String path = ZKPaths.makePath(
   zkPathsConfig.getLiveSegmentsPath(),
   druidServer.getHost(),
   segment.getId().toString()
 );
 curator.delete().guaranteed().forPath(path);
}
origin: apache/incubator-druid

zkPathsConfig.getLiveSegmentsPath(),
druidServer.getHost(),
UUIDUtils.generateUuid(
origin: apache/incubator-druid

protected void setupZNodeForServer(DruidServer server, ZkPathsConfig zkPathsConfig, ObjectMapper jsonMapper)
 final String inventoryPath = zkPathsConfig.getLiveSegmentsPath();
origin: apache/incubator-druid

final String liveSegmentsLocation = ZKPaths.makePath(zkPaths.getLiveSegmentsPath(), me.getName());
origin: org.apache.druid/druid-server

@Inject
public BatchServerInventoryView(
  final ZkPathsConfig zkPaths,
  final CuratorFramework curator,
  final ObjectMapper jsonMapper,
  final Predicate<Pair<DruidServerMetadata, DataSegment>> defaultFilter
)
{
 super(
   log,
   zkPaths.getAnnouncementsPath(),
   zkPaths.getLiveSegmentsPath(),
   curator,
   jsonMapper,
   new TypeReference<Set<DataSegment>>()
   {
   }
 );
 this.defaultFilter = Preconditions.checkNotNull(defaultFilter);
}
origin: org.apache.druid/druid-server

@Override
public boolean equals(Object other)
{
 if (null == other) {
  return false;
 }
 if (this == other) {
  return true;
 }
 if (!(other instanceof ZkPathsConfig)) {
  return false;
 }
 ZkPathsConfig otherConfig = (ZkPathsConfig) other;
 if (this.getBase().equals(otherConfig.getBase()) &&
   this.getAnnouncementsPath().equals(otherConfig.getAnnouncementsPath()) &&
   this.getConnectorPath().equals(otherConfig.getConnectorPath()) &&
   this.getLiveSegmentsPath().equals(otherConfig.getLiveSegmentsPath()) &&
   this.getCoordinatorPath().equals(otherConfig.getCoordinatorPath()) &&
   this.getLoadQueuePath().equals(otherConfig.getLoadQueuePath()) &&
   this.getPropertiesPath().equals(otherConfig.getPropertiesPath()) &&
   this.getServedSegmentsPath().equals(otherConfig.getServedSegmentsPath())) {
  return true;
 }
 return false;
}
origin: org.apache.druid/druid-server

this.server = server;
this.liveSegmentLocation = ZKPaths.makePath(zkPaths.getLiveSegmentsPath(), server.getName());
segmentTransformer = new Function<DataSegment, DataSegment>()
origin: org.apache.druid/druid-server

final String liveSegmentsLocation = ZKPaths.makePath(zkPaths.getLiveSegmentsPath(), me.getName());
org.apache.druid.server.initializationZkPathsConfiggetLiveSegmentsPath

Popular methods of ZkPathsConfig

  • <init>
  • defaultPath
  • getAnnouncementsPath
  • getLoadQueuePath
  • equals
  • getBase
  • getConnectorPath
  • getCoordinatorPath
  • getInternalDiscoveryPath
  • getOverlordPath
  • getPropertiesPath
  • getServedSegmentsPath
  • getPropertiesPath,
  • getServedSegmentsPath,
  • hashCode

Popular in Java

  • Start an intent from android
  • getContentResolver (Context)
  • putExtra (Intent)
  • getExternalFilesDir (Context)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now