当前位置: 首页>>代码示例>>Java>>正文


Java TestUtils.createTopic方法代码示例

本文整理汇总了Java中kafka.utils.TestUtils.createTopic方法的典型用法代码示例。如果您正苦于以下问题:Java TestUtils.createTopic方法的具体用法?Java TestUtils.createTopic怎么用?Java TestUtils.createTopic使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在kafka.utils.TestUtils的用法示例。


在下文中一共展示了TestUtils.createTopic方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createTopic

import kafka.utils.TestUtils; //导入方法依赖的package包/类
/**
 * Creates a topic.
 *
 * @param topic Topic name.
 * @param partitions Number of partitions for the topic.
 * @param replicationFactor Replication factor.
 * @throws TimeoutException If operation is timed out.
 * @throws InterruptedException If interrupted.
 */
public void createTopic(String topic, int partitions, int replicationFactor)
    throws TimeoutException, InterruptedException {
    List<KafkaServer> servers = new ArrayList<>();

    servers.add(kafkaSrv);

    TestUtils.createTopic(zkUtils, topic, partitions, replicationFactor,
        scala.collection.JavaConversions.asScalaBuffer(servers), new Properties());
}
 
开发者ID:apache,项目名称:ignite,代码行数:19,代码来源:TestKafkaBroker.java

示例2: createTopic

import kafka.utils.TestUtils; //导入方法依赖的package包/类
public static void createTopic(String topic, Integer partitionNum, Integer replicas) {
    TestUtils.createTopic(
                    zkUtils,
                    topic,
                    partitionNum,
                    replicas,
                    scala.collection.JavaConversions.asScalaBuffer(kafkaServers),
                    new Properties()
    );
}
 
开发者ID:milenkovicm,项目名称:netty-kafka-producer,代码行数:11,代码来源:AbstractMultiBrokerTest.java

示例3: createTopics

import kafka.utils.TestUtils; //导入方法依赖的package包/类
protected void createTopics(String inputTopic, String outputTopic) {
  TestUtils.createTopic(zkUtils(), inputTopic, 5, 1, servers(), new Properties());
  TestUtils.createTopic(zkUtils(), outputTopic, 5, 1, servers(), new Properties());
}
 
开发者ID:apache,项目名称:samza,代码行数:5,代码来源:TestZkStreamProcessorBase.java

示例4: createTopics

import kafka.utils.TestUtils; //导入方法依赖的package包/类
private void createTopics(String inputTopic, String outputTopic) {
  TestUtils.createTopic(zkUtils(), inputTopic, 1, 1, servers(), new Properties());
  TestUtils.createTopic(zkUtils(), outputTopic, 1, 1, servers(), new Properties());
}
 
开发者ID:apache,项目名称:samza,代码行数:5,代码来源:TestStreamProcessor.java

示例5: testKafkaTransport

import kafka.utils.TestUtils; //导入方法依赖的package包/类
@Test
public void testKafkaTransport() throws Exception {

  String topic = "zipkin";
  // Kafka setup
  EmbeddedZookeeper zkServer = new EmbeddedZookeeper(TestZKUtils.zookeeperConnect());
  ZkClient zkClient = new ZkClient(zkServer.connectString(), 30000, 30000, ZKStringSerializer$.MODULE$);
  Properties props = TestUtils.createBrokerConfig(0, TestUtils.choosePort(), false);
  KafkaConfig config = new KafkaConfig(props);
  KafkaServer kafkaServer = TestUtils.createServer(config, new MockTime());

  Buffer<KafkaServer> servers = JavaConversions.asScalaBuffer(Collections.singletonList(kafkaServer));
  TestUtils.createTopic(zkClient, topic, 1, 1, servers, new Properties());
  zkClient.close();
  TestUtils.waitUntilMetadataIsPropagated(servers, topic, 0, 5000);

  // HTrace
  HTraceConfiguration hTraceConfiguration = HTraceConfiguration.fromKeyValuePairs(
      "sampler.classes", "AlwaysSampler",
      "span.receiver.classes", ZipkinSpanReceiver.class.getName(),
      "zipkin.kafka.metadata.broker.list", config.advertisedHostName() + ":" + config.advertisedPort(),
      "zipkin.kafka.topic", topic,
      ZipkinSpanReceiver.TRANSPORT_CLASS_KEY, KafkaTransport.class.getName()
  );

  final Tracer tracer = new Tracer.Builder("test-tracer")
      .tracerPool(new TracerPool("test-tracer-pool"))
      .conf(hTraceConfiguration)
      .build();

  String scopeName = "test-kafka-transport-scope";
  TraceScope traceScope = tracer.newScope(scopeName);
  traceScope.close();
  tracer.close();

  // Kafka consumer
  Properties consumerProps = new Properties();
  consumerProps.put("zookeeper.connect", props.getProperty("zookeeper.connect"));
  consumerProps.put(ConsumerConfig.GROUP_ID_CONFIG, "testing.group");
  consumerProps.put(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "smallest");
  ConsumerConnector connector =
      kafka.consumer.Consumer.createJavaConsumerConnector(new kafka.consumer.ConsumerConfig(consumerProps));
  Map<String, Integer> topicCountMap = new HashMap<>();
  topicCountMap.put(topic, 1);
  Map<String, List<KafkaStream<byte[], byte[]>>> streams = connector.createMessageStreams(topicCountMap);
  ConsumerIterator<byte[], byte[]> it = streams.get(topic).get(0).iterator();

  // Test
  Assert.assertTrue("We should have one message in Kafka", it.hasNext());
  Span span = new Span();
  new TDeserializer(new TBinaryProtocol.Factory()).deserialize(span, it.next().message());
  Assert.assertEquals("The span name should match our scope description", span.getName(), scopeName);

  kafkaServer.shutdown();

}
 
开发者ID:apache,项目名称:incubator-htrace,代码行数:57,代码来源:ITZipkinReceiver.java

示例6: createTopic

import kafka.utils.TestUtils; //导入方法依赖的package包/类
/**
 * Creates a kafka topic with the provided name and the number of partitions
 * @param topicName the name of the topic
 * @param numPartitions the number of partitions in the topic
 */
public void createTopic(String topicName, int numPartitions) {
  TestUtils.createTopic(zkUtils(), topicName, numPartitions, 1, servers(), new Properties());
}
 
开发者ID:apache,项目名称:samza,代码行数:9,代码来源:StreamApplicationIntegrationTestHarness.java


注:本文中的kafka.utils.TestUtils.createTopic方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。