惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
S
SegmentFault 最新的问题
V
Visual Studio Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
美团技术团队
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
量子位
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
博客园 - 叶小钗
月光博客
月光博客
P
Proofpoint News Feed
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
GitHub - Niyko/Athena: A Simple tool to move Microsoft SQ...
2026-05-31 · via Hacker News

Athena logo Athena is a lightweight Change Data Capture (CDC) solution that streams changes from Microsoft SQL Server to Apache Kafka. Built in Golang, it supports SASL-authenticated Kafka brokers and provides a straightforward setup experience. Unlike alternatives such as Debezium, which can be complex to configure and manage. Athena offers greater simplicity and operational ease. It automatically manages CDC setups, publishes database changes to a single Kafka topic, and delivers a clean, intuitive event format that is easy for downstream consumers to understand and process.

⚡ How things work

  • Creates a message for changes like create, update, delete for rows in MSSQL database tables to a single Kafka topic.
  • Athena only creates messages for all new table changes. Existing ones are ignored.
  • Kafka topic have to be created before hand. Unlike Debezium, Athena will not create the topic own it's own.
  • All CDC setups in MSSQL is automatically done by Athena when setup command is run.
  • By default, Athena will poll for changes for all tables, you can use the skippedTables option in the config.json to ignore any tables.

🌀 Simple Installation

You can download the pre-compiled binaries from the Github releases page and copy them to the desired location. After that you can follow the below steps in order.

Create a config.json file in the root folder where you but the Athena binary. Here is the format of the JSON file. Fill all the credentials also.

You can find more details about the paramters in config file in below sections.

{
    "dbHost": "127.0.0.1",
    "dbPort": 1433,
    "dbUser": "",
    "dbPassword": "",
    "dbName": "",

    "kafkaHost": "",
    "kafkaEnableTLS": false,
    "kafkaTopic": "",

    "kafkaSASLMechanisms": "NONE",
    "kafkaSASLUsername": "",
    "kafkaSASLPassword": "",

    "pollInterval": 10,
    "fetchLimit": 50,
    "skippedTables": [],

    // If you want to collect logs in clickhouse
    "clickHouse": false,
    "clickHouseHost": "<host>:<port>",
    "clickHouseUsername": "",
    "clickHousePassword": "",
    "clickHouseDatabase": "",
    "clickHouseTableName": "",
    "clickHouseTableTTL": 12
}

Create topic with name given in config.json without scheme and with required partitions in you Kafka broker.

Run the setup command in order to create the CDC in database and other required setup.

Setup a service for running Athena in the background. Setting this up will different for Windows and Linux. Below given are the steps to create them on a Linux distro.

Create a service file called athena_mssql_kafka.service in the directory /etc/systemd/system using the following commands.

cd /etc/systemd/system
nano athena_mssql_kafka.service

Copy and paste the below contents to the above created service file athena_mssql_kafka.service.

[Unit]
Description=Athena MSSQL Kafka Service
After=network.target

[Service]
Type=simple
ExecStart=athena run

[Install]
WantedBy=multi-user.target

Please note that path in ExecStart needs to change while creating the service file.

Now you can start the service and also check the status of the service.

systemctl start athena_mmsql_kafka.service
systemctl status athena_mmsql_kafka.service

⚙️ Configuring Athena

Athena can be configured using the config.json file created on the root the Athena binary. Here are the details of the configuration keys and what they do in table format.

Option Description Example
dbHost Database host of MSSQL 127.0.0.1
dbPort Database port of MSSQL 1433
dbUser Username for the MSSQL database
dbPassword Password for the MSSQL database
dbName Database name of MSSQL
kafkaHost Host with port for the Kafka server 127.0.0.1:9092
kafkaTopic Kafka topic that you created for table changes to show
kafkaEnableTLS Enables TLS for Kafka connection true, false
kafkaSASLMechanisms SASL mechanism that need to be used for Kafka connection NONE, SASL-PLAIN, SASL-SCRAM-SHA-256, SASL-SCRAM-SHA-512
kafkaSASLUsername SASL user name of the Kafka server
kafkaSASLPassword SASL password of the Kafka server
pollInterval Interval where next polling to the database is made. It's given in seconds format. 10
fetchLimit Number of CDC changes rows that will be pulled from the table at once. 50
skippedTables Array of tables that needs to skipped while taking CDC changes. ["table1", "table2"]
clickHouse Enable Clickhouse logs. Table and struture for Clickhouse is automatically created by Athena when setup command is run true, false
clickHouseHost Host with port for the Clickhouse server 127.0.0.1:8123
clickHouseUsername User name of Clickhouse server
clickHousePassword Password of Clickhouse server
clickHouseDatabase Dasebase name of Clickhouse server
clickHouseTableName Table name of Clickhouse server
clickHouseTableTTL Time to live for each record in hours 24

🍄 Helper options in Athena

Athena executable have some other helper functions apart from setup or run which are explained below. These can be run like eg: ./athena uninstall

Option Description
uninstall Will disable CDC in MSSQL database and remove the SQlite database
add-cdc Will run CDC setup in the MSSQL database
remove-cdc Will disable CDC in MSSQL database
clear-cdc-history Clear CDC history or changes that Athena didn't process yet from the MSSQL database
recreate-clickhouse Rerun the Clickhouse migration
recreate-sqlite Recreate the SQlite database and rerun the migration
help To view all the options available

📐 Development

For setting up development environment, there is a docker file in the folder dev. It will create all necessary services like MSSQL with sample database, Kafka etc. This same environment can be used for running integration tests.

  • Install latest version of Go from here.
  • Clone that project from Github.
  • Run go mod download command to install all mods.
  • Then run the commands below as needed.
cd dev
docker composer up -d
cd ..
set GORUN=true # Used for identifying if script is run from go run command to choose correct path for reading config.json or db.sqlite
go run . setup
go run . run

Please note that the docker-compose.yml in the dev folder should only be used for development purpose.

🌵 How to run tests

Before running the tests, make sure you have setup the development environment and also config.json is setup correctly.

cd tests
go test -v -run TestIntegration

🛠️ How to build

You can build the binaries or do development of Athena by following the below steps. Athena is build fully on Golang. So you should install latest version of Go from here. Do note that building binaries are managed with the Goreleaser.

  • Clone that project from Github.
  • Run go mod download command to install all mods.
  • Run SET GORUN=true command to set gorun variable.
  • Run the command goreleaser release --snapshot --clean for building the binaries.

📃 License

Athena is licensed under the MIT License.