{"id":42685820,"url":"https://github.com/wp-labs/wp-motor","last_synced_at":"2026-05-02T11:04:22.945Z","repository":{"id":334084092,"uuid":"1139672680","full_name":"wp-labs/wp-motor","owner":"wp-labs","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-11T03:21:31.000Z","size":2312,"stargazers_count":8,"open_issues_count":7,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-11T05:31:04.324Z","etag":null,"topics":["data-collector","data-processing","engine","etl","events","logging","metrics","observability","oml","parse","security","siem","streaming","warp-parse","wp-parse","wpl"],"latest_commit_sha":null,"homepage":"https://warpparse.ai/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wp-labs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":"audit.toml","citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-22T09:09:25.000Z","updated_at":"2026-04-11T03:21:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/wp-labs/wp-motor","commit_stats":null,"previous_names":["wp-labs/wp-motor"],"tags_count":63,"template":false,"template_full_name":null,"purl":"pkg:github/wp-labs/wp-motor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-labs%2Fwp-motor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-labs%2Fwp-motor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-labs%2Fwp-motor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-labs%2Fwp-motor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wp-labs","download_url":"https://codeload.github.com/wp-labs/wp-motor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-labs%2Fwp-motor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31876852,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T07:36:03.521Z","status":"ssl_error","status_checked_at":"2026-04-16T07:35:53.576Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-collector","data-processing","engine","etl","events","logging","metrics","observability","oml","parse","security","siem","streaming","warp-parse","wp-parse","wpl"],"created_at":"2026-01-29T12:18:49.871Z","updated_at":"2026-04-16T08:01:14.996Z","avatar_url":"https://github.com/wp-labs.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Warp Parse Engine\n\n\u003cdiv align=\"center\"\u003e\n\n[![CI](https://github.com/wp-labs/wp-motor/workflows/CI/badge.svg)](https://github.com/wp-labs/wp-motor/actions)\n[![codecov](https://codecov.io/gh/wp-labs/wp-motor/graph/badge.svg?token=6SVCXBHB6B)](https://codecov.io/gh/wp-labs/wp-motor)\n[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)\n\nHigh-performance data parsing and processing engine built in Rust\n\n\u003c/div\u003e\n\n## Overview\n\nWarp Parse Engine (wp-motor) is a high-performance, modular data parsing and processing engine designed for large-scale data stream processing. It provides the domain-specific language WPL (Warp Processing Language) for defining parsing rules and supports multiple data formats and protocols.\n\n## Features\n\n- **High Performance**: Built with Rust for optimal performance and memory safety\n- **Domain-Specific Language**: WPL (Warp Processing Language) for flexible rule definitions\n- **Multi-format Support**: JSON, CSV, Protobuf, Syslog, and custom formats\n- **Real-time Processing**: Stream processing with sub-millisecond latency\n- **Extensible Architecture**: Plugin system for custom processors and sinks\n- **Enterprise Ready**: Built-in monitoring, metrics, and fault tolerance\n\n## Architecture\n\n```\nwp-motor (root)\n├── crates/                    # Core libraries\n│   ├── orion_overload      # Common utilities and primitives\n│   ├── orion_exp         # Expression evaluation\n│   ├── wp-config         # Engine configuration management\n│   ├── wp-data-utils    # Data structures and utilities\n│   ├── wp-parser         # Low-level parsing primitives\n│   ├── wp-lang           # WPL (Warp Processing Language)\n│   ├── wp-oml            # Object Modeling Language\n│   ├── wp-knowledge      # Knowledge database (KnowDB)\n│   ├── wp-cli-core       # CLI shared infrastructure\n│   ├── wp-cli-utils      # CLI utilities\n│   ├── wp-proj           # Project management utilities\n│   └── wp-stats          # Statistics collection\n├── src/                      # Main application\n│   ├── core/               # Core engine\n│   ├── runtime/            # Runtime components\n│   ├── sources/            # Data sources\n│   ├── sinks/              # Data sinks\n│   ├── facade/             Public API\n│   └── orchestrator/       # Orchestration\n└── tests/                    # Integration tests\n```\n\n\n\n\n\n## Feature Flags\n\n- `default`: Community edition with core runtime\n- `runtime-core`: Base runtime functionality\n- `enterprise-backend`: Enterprise-only backend features\n- `perf-ci`: Performance testing in CI\n- `dev-tools`: Development utilities\n\n## Contributing\n\nWe welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.\n\n## License\n\nThis project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.\n\n## Support\n\n- [Issues](https://github.com/wp-labs/wp-motor/issues)\n- [Discussions](https://github.com/orgs/wp-labs/discussions)\n\n---\n\n## Warp Parse Engine（Warp 解析引擎）\n\n\u003cdiv align=\"center\"\u003e\n\n用 Rust 构建的高性能数据解析和处理引擎\n\n\u003c/div\u003e\n\n## 概述\n\nWarp Parse Engine（wp-motor）是一个高性能、模块化的数据解析和处理引擎，专为处理大规模数据流而设计，具有低延迟和高吞吐量的特点。它提供了领域特定语言（WPL）来定义解析规则，并支持多种数据格式和协议。\n\n## 特性\n\n- **高性能**：使用 Rust 构建，确保最佳性能和内存安全\n- **领域特定语言**：WPL（Warp Processing Language）用于灵活的规则定义\n- **多格式支持**：JSON、CSV、Protobuf、Syslog 和自定义格式\n- **实时处理**：流处理，延迟低于毫秒级\n- **可扩展架构**：插件系统支持自定义处理器和输出端\n- **企业级就绪**：内置监控、指标和容错功能\n\n\n## 许可证\n\n本项目采用 Apache License 2.0 许可证 - 详情请参见 [LICENSE](LICENSE) 文件。\n\n## 支持\n\n- [问题反馈](https://github.com/wp-labs/wp-motor/issues)\n- [讨论区](https://github.com/orgs/wp-labs/discussions)\n\n---\n\n**Warp Parse Dev Team**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwp-labs%2Fwp-motor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwp-labs%2Fwp-motor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwp-labs%2Fwp-motor/lists"}