摘要: package dag import ( "context" "ina-fei/api/internal/config" "ina-fei/api/internal/types" "log" "sync" ) type Graph struct { // nodes to run Nodes []* 阅读全文
posted @ 2021-04-12 18:47 gostreamer 阅读(224) 评论(0) 推荐(0)
摘要: package stream import ( "log" "reflect" "sort" ) type ( // a Stream is where one can drain data from Stream chan interface{} // buffer stream BufferSt 阅读全文
posted @ 2021-04-12 18:44 gostreamer 阅读(370) 评论(0) 推荐(0)
摘要: 本文简单介绍了如何在flask中集成swagger。 # coding = utf-8 from flask import Flask, request from flask_restx import Api, Resource, fields # declare flask app app = F 阅读全文
posted @ 2021-03-31 17:41 gostreamer 阅读(791) 评论(0) 推荐(0)
摘要: 引言 一般来说,flink程序由以下几个部分组成: Obtain an execution environment - 获取运行时环境 Load/create the initial data - 新增输入数据(connectors等) Specify transformations on this 阅读全文
posted @ 2021-03-30 12:23 gostreamer 阅读(181) 评论(0) 推荐(0)