https://github.com/sneaksanddata/arcane-operator
Kubernetes-native data streaming service based on Akka.NET
https://github.com/sneaksanddata/arcane-operator
actor akka arcane c-sharp data-ingestion reactive streaming
Last synced: 4 months ago
JSON representation
Kubernetes-native data streaming service based on Akka.NET
- Host: GitHub
- URL: https://github.com/sneaksanddata/arcane-operator
- Owner: SneaksAndData
- License: apache-2.0
- Created: 2024-03-27T14:57:46.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-30T09:20:37.000Z (12 months ago)
- Last Synced: 2025-06-30T10:27:38.248Z (12 months ago)
- Topics: actor, akka, arcane, c-sharp, data-ingestion, reactive, streaming
- Language: C#
- Homepage:
- Size: 464 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# About the project
[](https://github.com/SneaksAndData/arcane-operator/actions/workflows/build.yaml)
[](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/language-versioning)

**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](https://minikube.sigs.k8s.io/docs/) or [Kind](https://kind.sigs.k8s.io/).
- **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](#getting-started)
- [Verify the installation](#verify-the-installation)
- [Streaming plugins](#streaming-plugins)
- [Available ZIO-based streaming plugins](#available-ziobased-streaming-plugins)
- [Available Akka-based streaming plugins](#available-akkabased-streaming-plugins)
- [Monitoring and observability](#monitoring-and-observability)
- [Contributing](#contributing)
- [Extending the platform with your own plugins](#extending-the-platform-with-your-own-plugins)
# Getting started
Run the following command to install the Arcane Operator in your Kubernetes cluster:
```bash
# 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:
```bash
$ kubectl get pods -l app.kubernetes.io/name=arcane-operator --namespace arcane
```
It should produce the similar output:
```bash
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](https://github.com/orgs/SneaksAndData/projects/21) project page.
The most significant milestones are listed below:
- [x] 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
* Sql Server streaming plugin: [arcane-stream-sqlserver-change-tracking](https://github.com/SneaksAndData/arcane-stream-sqlserver-change-tracking)
* Microsoft Synapse streaming plugin: [arcane-stream-microsoft-synapse-link](https://github.com/SneaksAndData/arcane-stream-microsoft-synapse-link)
### Available Akka-based streaming plugins
* REST-api streaming plugin: [arcane-stream-rest-api](https://github.com/SneaksAndData/arcane-stream-rest-api)
# Monitoring and observability
-- TBD --
# Contributing
-- TBD --
## Extending the platform with plugins
-- TBD --