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.
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 arcaneThis 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.
To verify the operator installation run the following command:
$ kubectl get pods -l app.kubernetes.io/name=arcane-operator --namespace arcaneIt should produce the similar output:
NAME READY STATUS RESTARTS AGE
arcane-operator-55988bbfcb-ql7qr 1/1 Running 0 25mOnce operator is installed, you can install the streaming plugins.
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
- Sql Server streaming plugin: arcane-stream-sqlserver-change-tracking
- Microsoft Synapse streaming plugin: arcane-stream-microsoft-synapse-link
- REST-api streaming plugin: arcane-stream-rest-api
-- TBD --
-- TBD --
-- TBD --
