- 安装 。
- 安装 Pulsar 内置连接器。
要使用 Pulsar SQL 查询数据,请完成以下步骤。
- 启动 Pulsar 独立集群。
- 启动 Pulsar SQL 工作器。
- 初始化 Pulsar 独立集群和 SQL 工人后,运行 SQL CLI 。
- 使用 SQL 命令测试。
presto> show catalogs;
Catalog
---------
pulsar
system
(2 rows)
Query 20180829_211752_00004_7qpwh, FINISHED, 1 node
Splits: 19 total, 19 done (100.00%)
0:00 [0 rows, 0B] [0 rows/s, 0B/s]
presto> show schemas in pulsar;
Schema
-----------------------
public/default
public/functions
sample/standalone/ns1
(4 rows)
Splits: 19 total, 19 done (100.00%)
0:00 [4 rows, 89B] [21 rows/s, 471B/s]
presto> show tables in pulsar."public/default";
Table
-------
(0 rows)
Query 20180829_211839_00006_7qpwh, FINISHED, 1 node
Splits: 19 total, 19 done (100.00%)
0:00 [0 rows, 0B] [0 rows/s, 0B/s]
- Start the built-in connector DataGeneratorSource and ingest some mock data.
然后可以在命名空间“公共/默认”中查询一个主题。
presto> show tables in pulsar."public/default";
Table
----------------
generator_test
(1 row)
Query 20180829_213202_00000_csyeu, FINISHED, 1 node
Splits: 19 total, 19 done (100.00%)
0:02 [1 rows, 38B] [0 rows/s, 17B/s]
可以查询模拟数据。
public static class Foo {
private int field1 = 1;
private String field2;
private long field3;
}
public static void main(String[] args) throws Exception {
PulsarClient pulsarClient = PulsarClient.builder().serviceUrl("pulsar://localhost:6650").build();
Producer<Foo> producer = pulsarClient.newProducer(AvroSchema.of(Foo.class)).topic("test_topic").create();
for (int i = 0; i < 1000; i++) {
Foo foo = new Foo();
foo.setField1(i);
foo.setField2("foo" + i);
foo.setField3(System.currentTimeMillis());
producer.newMessage().value(foo).send();
}
producer.close();
pulsarClient.close();