
高效灵活的Go语言数据工作流库
Machine是Go语言开发的数据工作流库,支持构建简洁和复杂的工作流。该库提供转换、过滤、条件分支和分发等功能,可灵活处理各类数据。Machine集成OpenTelemetry,便于收集指标和跟踪。它适用于多种数据处理场景,支持循环、重试和自我修复机制。
Machine is a library for creating data workflows. These workflows can be either very concise or quite complex, even allowing for cycles for flows that need retry or self healing mechanisms.
Add the primary library to your project
go get github.com/whitaker-io/machine/v3
The two function types are:
// Monad is a function that is applied to payload and used for transformations type Monad[T any] func(d T) T // Filter is a function that can be used to filter the payload. type Filter[T any] func(d T) bool
These are used in the Machine for functional operations
// New is a function for creating a new Machine. // // name string // input chan T // option ...Option // // Call the startFn returned by New to start the Machine once built. func New[T any](name string, input chan T, options ...Option) (startFn func(context.Context), x Machine[T]) // Transform is a function for converting the type of the Machine. Cannot be used inside a loop // until I figure out how to do it without some kind of run time error or overly complex // tracking method that isn't type safe. I really wish method level generics were a thing. func Transform[T, U any](m Machine[T], fn func(d T) U) (Machine[U], error) // Machine is the interface provided for creating a data processing stream. type Machine[T any] interface { // Name returns the name of the Machine path. Useful for debugging or reasoning about the path. Name() string // Then apply a mutation to each individual element of the payload. Then(a Monad[T]) Machine[T] // Recurse applies a recursive function to the payload through a Y Combinator. // f is a function used by the Y Combinator to perform a recursion // on the payload. // Example: // // func(f Monad[int]) Monad[int] { // return func(x int) int { // if x <= 0 { // return 1 // } else { // return x * f(x-1) // } // } // } Recurse(x Monad[Monad[T]]) Machine[T] // Memoize applies a recursive function to the payload through a Y Combinator // and memoizes the results based on the index func. // f is a function used by the Y Combinator to perform a recursion // on the payload. // Example: // // func(f Monad[int]) Monad[int] { // return func(x int) int { // if x <= 0 { // return 1 // } else { // return x * f(x-1) // } // } // } Memoize(x Monad[Monad[T]], index func(T) string) Machine[T] // Or runs all of the functions until one succeeds or sends the payload to the right branch Or(x ...Filter[T]) (Machine[T], Machine[T]) // And runs all of the functions and if one doesnt succeed sends the payload to the right branch And(x ...Filter[T]) (Machine[T], Machine[T]) // Filter splits the data into multiple stream branches If(f Filter[T]) (Machine[T], Machine[T]) // Select applies a series of Filters to the payload and returns a list of Builders // the last one being for any unmatched payloads. Select(fns ...Filter[T]) []Machine[T] // Tee duplicates the data into multiple stream branches. Tee(func(T) (a, b T)) (Machine[T], Machine[T]) // While creates a loop in the stream based on the filter While(x Filter[T]) (loop, out Machine[T]) // Drop terminates the data from further processing without passing it on Drop() // Distribute is a function used for fanout Distribute(Edge[T]) Machine[T] // Output provided channel Output() chan T }
Distribute is a special method used for fan-out operations. It takes an instance of Edge[T] and can be used most typically to distribute work via a Pub/Sub or it can be used in a commandline utility to handle user input or a similiar blocking process.
The Edge[T] interface is as follows:
// Edge is an interface that is used for transferring data between vertices type Edge[T any] interface { Output() chan T Send(payload T) }
The Send method is used for data leaving the associated vertex and the Output method is used by the following vertex to receive data from the channel.
Confirguration is done using the Option helper
// Option is used to configure the machine type Option interface // OptionFIF0 controls the processing order of the payloads // If set to true the system will wait for one payload // to be processed before starting the next. var OptionFIF0 Option // OptionBufferSize sets the buffer size on the edge channels between the // vertices, this setting can be useful when processing large amounts // of data with FIFO turned on. func OptionBufferSize(size int) Option // OptionAttributes apply the slog.Attr's to the machine metrics and spans // Do not override the "name", "type", "duration", "error", or "value" attributes func OptionAttributes(attributes ...slog.Attr) Option // OptionFlush attempts to send all data to the flushFN before exiting after the gracePeriod has expired // Im looking for a good way to make this type specific, but want to avoid having to add separate option // settings for the Transform function. func OptionFlush(gracePeriod time.Duration, flushFN func(vertexName string, payload any)) Option
Machine supports collecting metrics and traces through a log/slog wrapper that sends
the telemetry to the provided OpenTelemetry Meter and Tracer
// import "github.com/whitaker-io/machine/telemetry" // Make your slog handler however you please yourSlogHandler := slog.Default().Handler() // wrap your handler and provide your tracer and meter telemetryHandler := telemetry.New( yourSlogHandler, meterProvider.Meter("your_meter"), // Your otel metric.Meter tracerProvider.Tracer("your_tracer"), // Your otel trace.Tracer false, // Log Metrics and Traces to logs as well (useful for debugging) ) slog.SetDefault(slog.New(telemetryHandler))
Examples of Edge implentations can be found in the edge directory and can be used as follows
// import "github.com/whitaker-io/machine/edge/pubsub" func New[T any]( ctx context.Context, subscription *pubsub.Subscription, publisher *pubsub.Topic, to func(T) *pubsub.Message, from func(context.Context, *pubsub.Message) T, ) machine.Edge[T] // import "github.com/whitaker-io/machine/edge/http" func New[T any](c http.Client, fn func(context.Context, T) *http.Request) machine.Edge[T]
Contributions, issues and feature requests are welcome.<br /> Feel free to check issues page if you want to contribute.<br /> Check the contributing guide.<br />
👤 Jonathan Whitaker
Please ⭐️ this repository if this project helped you!
Machine is provided under the MIT License.
The MIT License (MIT) Copyright (c) 2020 Jonathan Whitaker


免费创建高清无水印Sora视频
Vora是一个免费创建高清无水印Sora视频的AI工具


最适合小白的AI自动化工作流平台
无需编码,轻松生成可复用、可变现的AI自动化工作流

大模型驱动的Excel数据处理工具
基于大模型交互的表格处理系统,允许用户通过对话方式完成数据整理和可视化分析。系统采用机器学习算法解析用户指令,自动执行排序、公式计算和数据透视等操作,支持多种文件格式导入导出。数据处理响应速 度保持在0.8秒以内,支持超过100万行数据的即时分析。


AI辅助编程,代码自动修复
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。


AI论文写作指导 平台
AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。


AI一键生成PPT,就用博思AIPPT!
博思AIPPT,新一代的AI生成PPT平台,支持智能生成PPT、AI美化PPT、文本&链接生成PPT、导入Word/PDF/Markdown文档生成PPT等,内置海量精美PPT模板,涵盖商务、教育、科技等不同风格,同时针对每个页面提供多种版式,一键自适应切换,完美适配各种办公场景。


AI赋能电商视觉革命,一站式智能商拍平台
潮际好麦深耕服装行业,是国内AI试衣效果最好的软件。使用先进AIGC能力为电商卖家批量提供优质的、低成本的商拍图。合作品牌有Shein、Lazada、安踏、百丽等65个国内外头部品牌,以及国内10万+淘宝、天猫、京东等主流平台的品牌商家,为卖家节省将近85%的出图成本,提升约3倍出图效率,让品牌能够快速上架。


企业专属的AI法律顾问
iTerms是法大大集团旗下法律子品牌,基于最先进的大语言模型(LLM)、专业的法律知识库和强大的智能体架构,帮助企业扫清合规障碍,筑牢风控防线,成为您企业专属的AI法律顾问。


稳定高效的流量提升解决方案,助力品牌曝光
稳定高效的流量提升解决方案,助力品牌曝光


最新版Sora2模型免费使用,一键生成无水印视频
最新版Sora2模型免费使用,一键生成无水印视频
最新AI工具、AI资讯
独家AI资源、AI项目落地

微信扫一扫关注公众号