eventrunner

module
v0.0.0-...-c2e6958 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 24, 2024 License: Apache-2.0

README

EventRunner

golangci-lint

High-Throughput Event Processing Engine with Advanced Authorization and Billing

EventRunner is a high-speed, high-throughput event processing engine designed to handle large volumes of events in real-time. It features flexible processing capabilities, robust data storage, tenant-specific event consumers using WebAssembly, and a comprehensive billing system.

Architecture Overview

graph TD
    A[Client] --> B[Ory Oathkeeper]
    B --> C[Ory Keto]
    B --> D[EventRunner API]
    E[HTTP Ingest Service] --> F[NATS JetStream]
    G[gRPC Ingest Service] --> F
    F --> H[EventRunner]
    H --> I[NATS Processing Queue]
    I --> J[EventEngine]
    J --> K[(Scylla DB)]
    K --> L[(ClickHouse)]
    J --> M[Grule Rule Engine]
    M --> J
    I --> N[Tenant Event Streams]
    N --> O[wasmCloud Runtime]
    O --> P[OPA]
    Q[Billing Service] --> L
    R[Grafana] --> L
    S[Prometheus] --> R

    style B fill:#f9f,stroke:#333,stroke-width:2px
    style C fill:#ff9,stroke:#333,stroke-width:2px
    style D fill:#bfb,stroke:#333,stroke-width:2px
    style H fill:#bbf,stroke:#333,stroke-width:2px
    style J fill:#bfb,stroke:#333,stroke-width:2px
    style K fill:#ff9,stroke:#333,stroke-width:2px
    style L fill:#f96,stroke:#333,stroke-width:2px
    style M fill:#9bf,stroke:#333,stroke-width:2px
    style O fill:#fcf,stroke:#333,stroke-width:2px
    style P fill:#ffc,stroke:#333,stroke-width:2px

Components

  1. Ory Oathkeeper: API Gateway handling authentication and coarse-grained authorization.
  2. Ory Keto: Fine-grained authorization service based on Google Zanzibar.
  3. EventRunner API: Core API for managing the event processing system.
  4. Ingest Services: HTTP and gRPC services for event ingestion.
  5. NATS JetStream: High-performance message broker for event distribution.
  6. EventRunner: Processes raw events and converts them to CloudEvents.
  7. EventEngine: Applies business logic to events.
  8. Grule Rule Engine: RETE-enabled rule engine for flexible event processing.
  9. Scylla DB: Primary data storage for processed events.
  10. ClickHouse: Column-oriented DBMS for real-time analytics and billing data.
  11. wasmCloud Runtime: Executes WebAssembly modules as tenant-specific event consumers.
  12. Open Policy Agent (OPA): Provides authorization for wasmCloud-based consumers.
  13. Billing Service: Manages resource usage tracking and invoice generation.
  14. Grafana: Provides visualization for metrics and user-accessible dashboards.
  15. Prometheus: Collects and stores metrics from various system components.

Key Features

  • High-throughput event ingestion via HTTP and gRPC
  • Scalable event processing using NATS JetStream
  • Flexible event transformation and routing
  • Powerful rule-based processing using the Grule Rule Engine
  • Durable storage with Scylla DB
  • Real-time analytics and billing with ClickHouse
  • Tenant-specific event streaming and processing
  • Secure, polyglot event consumer execution using WebAssembly and wasmCloud
  • Fine-grained access control with Ory Keto for API and OPA for wasmCloud consumers
  • Comprehensive billing and resource usage tracking

Authentication and Authorization

EventRunner uses Ory Oathkeeper as the API Gateway, which integrates with Ory Keto for fine-grained authorization decisions. For wasmCloud-based consumers, we use Open Policy Agent (OPA).

API Authorization Flow
  1. Client sends a request to the API endpoint.
  2. Ory Oathkeeper authenticates the request.
  3. Oathkeeper consults Ory Keto for an authorization decision.
  4. If authorized, the request is forwarded to the appropriate EventRunner API service.
  5. The API service handles the request, assuming it's already authorized.
Ory Oathkeeper Configuration
authorizers:
  keto_engine_acp_ory:
    enabled: true
    config:
      base_url: http://keto:4466
      required_action: api:access
      required_resource: api:resource
Ory Keto Policy Example
{
  "namespace": "api",
  "object": "resource:usage",
  "relation": "access",
  "subject": "user:alice@example.com"
}
wasmCloud Consumer Authorization

For wasmCloud-based consumers, we use OPA for fine-grained authorization. Here's an example OPA policy:

package eventrunner.wasmcloud

default allow = false

allow {
    input.action == "process_event"
    input.tenant_id == data.tenants[input.user].id
}

data.tenants = {
    "alice": {"id": "tenant1"},
    "bob": {"id": "tenant2"}
}

Billing and Resource Tracking

The billing system uses ClickHouse for storing and analyzing resource usage data.

ClickHouse Schema
CREATE TABLE tenant_usage (
    tenant_id String,
    timestamp DateTime,
    cpu_usage Float64,
    memory_usage Float64,
    network_ingress Float64,
    network_egress Float64
) ENGINE = MergeTree()
ORDER BY (tenant_id, timestamp);
Billing API
  • GET /api/v1/usage/{tenant-id}: Retrieve usage data for a specific tenant
  • GET /api/v1/invoice/{tenant-id}: Retrieve the latest invoice for a tenant
  • GET /api/v1/invoice/{tenant-id}/{invoice-id}: Retrieve a specific invoice

wasmCloud Integration

EventRunner supports the creation and execution of polyglot WebAssembly (Wasm) applications as event consumers using wasmCloud.

Creating a Wasm Event Consumer
  1. Write your event consumer logic in your preferred language (e.g., Rust, Go, AssemblyScript).
  2. Compile your code to WebAssembly targeting the wasmCloud ABI.
  3. Sign your Wasm module with the appropriate capabilities for event processing.

Example Rust code for a simple event consumer:

use wasmbus_rpc::actor::prelude::*;
use wasmcloud_interface_messaging::*;

#[derive(Actor, MessageDispatch)]
#[services(Actor, MessageSubscriber)]
struct EventConsumer;

#[async_trait]
impl MessageSubscriber for EventConsumer {
    async fn handle_message(&self, ctx: &Context, msg: &DeliverMessage) -> RpcResult<()> {
        // Process the event
        println!("Received event: {:?}", msg.body);
        Ok(())
    }
}

Setup and Deployment

  1. Deploy Ory Oathkeeper and Ory Keto.
  2. Set up NATS JetStream, Scylla DB, and ClickHouse.
  3. Deploy the EventRunner API and associated services.
  4. Set up the wasmCloud runtime with OPA for tenant-specific event processing.
  5. Configure Grafana dashboards with ClickHouse as a data source.

Detailed deployment instructions can be found in the Deployment Guide.

Usage

Refer to the API Documentation for detailed information on using the EventRunner API.

For creating and deploying Wasm event consumers, see the Wasm Developer Guide.

Monitoring and Dashboards

Access Grafana dashboards through the EventRunner portal for:

  1. System-wide metrics and performance
  2. Tenant-specific resource usage and billing information
  3. Event processing statistics and latency metrics

Contributing

We welcome contributions to EventRunner! Please see CONTRIBUTING.md for details on how to get started.

License

EventRunner is licensed under the Apache License 2.0. See LICENSE for the full license text.

Directories

Path Synopsis
cmd
api
pkg
api/handlers
Package handlers is a generated GoMock package.
Package handlers is a generated GoMock package.
api/middleware
Package middleware pkg/api/middleware/http_headers.go
Package middleware pkg/api/middleware/http_headers.go
context
Package context is a generated GoMock package.
Package context is a generated GoMock package.
eventingest
Package eventingest is a generated GoMock package.
Package eventingest is a generated GoMock package.
eventrunner
Package eventrunner pkg/eventrunner/buffer.go
Package eventrunner pkg/eventrunner/buffer.go

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL