Skip to content

s-vitaliy/arcane-operator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About the project

logo

Run tests with coverage C# GitHub Release Date

Arcane is a Kubernetes-native data streaming platform powered by extendable plugin architecture.

Arcane is designed to be:

  • Kubernetes-native: It runs data streaming plugins as a Kubernetes jobs and uses Kubernetes API to manage the lifecycle of data streams.

  • Extendable: It allows you to extend the platform with your own data streaming plugins, which can be written in any programming language.

  • Scalable: It can scale horizontally by adding more Kubernetes nodes to the cluster or vertically by adding more resources to the streaming jobs. It does not require any stateful components like Zookeeper or Kafka brokers which makes it easy to scale and manage.

  • Lightweight: It has a small footprint and can run on any Kubernetes cluster, including local clusters like Minikube or Kind.

  • Cloud-agnostic: It can run on any cloud provider that supports Kubernetes, including AWS, Azure, GCP, and on-premises clusters.

This repository contains the Arcane Operator, which is responsible for managing the lifecycle of Arcane data streams.

Table of Contents

Getting started

Run the following command to install the Arcane Operator in your Kubernetes cluster:

# Create a namespace for the operator installation
$ kubectl create namespace arcane

# Install the operator in the created namespace
$ helm install arcane oci://ghcr.io/sneaksanddata/helm/arcane-operator \
  --version v0.0.14 \
  --namespace arcane

This command creates a namespace arcane and installs the stream operator in it. By default, the Helm chart installs two CRDs:

  • StreamClass
  • StreamingJobTemplate

The resources of both kinds are being installed by the streaming plugins.

Verify the installation

To verify the operator installation run the following command:

$ kubectl get pods -l app.kubernetes.io/name=arcane-operator --namespace arcane

It should produce the similar output:

NAME                               READY   STATUS    RESTARTS   AGE
arcane-operator-55988bbfcb-ql7qr   1/1     Running   0          25m

Once operator is installed, you can install the streaming plugins.

Platform roadmap

Please refer the roadmap for the Arcane Streaming Platform on the Arcane project page.

The most significant milestones are listed below:

  • Support for ZIO-based streaming plugins
  • Add contribution guidelines
  • Rewrite the operator in Go
  • Complete transition from Akka.NET to ZIO for the remaining streaming plugins

Streaming plugins

Available ZIO-based streaming plugins

Available Akka-based streaming plugins

Monitoring and observability

-- TBD --

Contributing

-- TBD --

Extending the platform with plugins

-- TBD --

About

Kubernetes-native data streaming service based on Akka.NET

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 97.0%
  • Smarty 2.1%
  • Dockerfile 0.9%