nanomsg 如何写数据到PipelineDB

Posted 920

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nanomsg 如何写数据到PipelineDB相关的知识,希望对你有一定的参考价值。

nanomsg:https://github.com/nanomsg/nanomsg

PipelineDB:https://github.com/pipelinedb/pipelinedb

nanomsgToPipelineDB:https://github.com/sangli00/nanomsgtopdb

 

创建extension

pipeline=# create extension nanomsgtopdb ;
CREATE EXTENSION

 

 默认数据接收流

pipeline=# \\d generic_stream
         Stream "public.generic_stream"
      Column       |            Type
-------------------+-----------------------------
 data              | text
 arrival_timestamp | timestamp(0) with time zone

pipeline=#

 

创建Continuous View

pipeline=# create continuous view cv as select data from generic_stream;
CREATE CONTINUOUS VIEW
pipeline=# \\d cv
Continuous view "public.cv"
 Column | Type | Modifiers
--------+------+-----------
 data   | text |

pipeline=#

 

发送数据:

[root@localhost test]# ./send_msg
connect to tcp://127.0.0.1:9999
Send msg size is 64

pipeline=# select * from cv;
 data
------
(0 rows)

pipeline=# select * from cv;
           data
--------------------------
 Hello ,from nanomsg msg.
(1 row)

pipeline=#

 

运用PostgreSQL来创建后台进程,如图所示:

 

多nanomsg worker process进行数据写入,提高数据接收速度。

 

运用场景:

在底层数据采集的时候,原始数据直接写入到Stream生成CV结果。

 

以上是关于nanomsg 如何写数据到PipelineDB的主要内容,如果未能解决你的问题,请参考以下文章

如何更改 nanomsg 管道负载均衡逻辑?

流计算风云再起 - PostgreSQL携PipelineDB力挺IoT

通过Pipelinedb使用SQL查询Kafka实时流数据

如何在没有 while 循环的情况下使用 nanomsg 调查架构?

QSocketNotifier 与 nanomsg

ZeroMQ/NanoMsg 发布/订阅与多播