pulsar官方demo

standalone模式

cd pulsar-1.14
bin/pulsar standalone

maven

        
            com.yahoo.pulsar
            pulsar-client
            1.14
        

producer

@Test
    public void producer() throws PulsarClientException {
        PulsarClient client = PulsarClient.create("http://localhost:8080");

        Producer producer = client.createProducer(
                "persistent://sample/standalone/ns1/my-topic");

// Publish 10 messages to the topic
        for (int i = 0; i < 10; i++) {
            producer.send("my-message".getBytes());
        }

        client.close();
    }

consumer

@Test
    public void consumer() throws PulsarClientException {
        PulsarClient client = PulsarClient.create("http://localhost:8080");

        Consumer consumer = client.subscribe(
                "persistent://sample/standalone/ns1/my-topic",
                "my-subscribtion-name");

        for(int i=0;i<100;i++) {
            // Wait for a message
            Message msg = consumer.receive();

            System.out.println("Received message: " + new String(msg.getData()));

            // Acknowledge the message so that it can be deleted by broker
            consumer.acknowledge(msg);
        }

        client.close();
    }

docs

  • pulsar-GettingStarted

你可能感兴趣的:(pulsar)