MCPcopy Index your code
hub / github.com/Comcast/Bynar

github.com/Comcast/Bynar @v0.1.5

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.1.5 ↗ · + Follow
195 symbols 453 edges 17 files 52 documented · 27%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Bynar

Build Status

Warehouse scale server repair, more benign than borg.


Bynar is an open source system for automating server maintenance across the datacenter. Bynar builds upon many years of experience automating the drudgery of server repair. The goal is to have the datacenter maintain itself. Large clusters these days require lots of maintenance. Cassandra, Ceph, Gluster, Hadoop and others all require quick replacement of server parts as they break down or the cluster can become degraded. As your cluster grows, you generally need to have more people to maintain them. Bynar hopes to break this cycle and free up your time so that your clusters can scale to ever greater sizes without requiring more people to maintain them.

The project is divided into different binaries that all communicate over protobuf: 1. disk-manager: This program handles adding and the removal of disks from a server 2. dead-disk-detector: This program handles detection of failed hard drives, files a ticket for a datacenter technician to replace the drive, waits for the resolution of the ticket and then makes an API call to disk-manager to add the new disk back into the server. 3. bynar-client: Enables you to manually make API calls against disk-manager and dead-disk-detector


To start using Bynar

Configuration:

  1. Create your configuration file. The utility takes json config information. Edit the /etc/bynar/bynar.json file to configure it. The slack_* fields are optional. They will allow Bynar to send alerts to a channel while it's performing maintenance. JIRA is the only currently supported back end ticketing system. A plugin system allows for more back end support.
    An optional proxy field can be configured to send JIRA REST API requests through. For extra security we highly recommend that you enable the vault integration. The disk-manager sits on a port and if an attacker gains access to it they can quickly wipe out your disks. If you don't wish to enable vault integration set the disk-manager up to only listen on a loopback port. Fields for this file are:
{
 "db_location": "/etc/bynar/disks.sqlite3",
 "proxy": "https://my.proxy",
 "manager_host": "localhost",
 "manager_port": 5555,
 "slack_webhook": "https://hooks.slack.com/services/ID",
 "slack_channel": "#my-channel",
 "slack_botname": "my-bot",
 "jira_user": "test_user",
 "jira_password": "user_password",
 "jira_host": "https://tickets.jira.com",
 "jira_issue_type": "3",
 "jira_priority": "4",
 "jira_project_id": "MyProject",
 "jira_ticket_assignee": "assignee_username",
 "vault_endpoint": "https://my_vault.com",
 "vault_token": "token_98706420"
}

Disk Manager

This binary handles adding and removing disks from a server. It uses protobuf serialization to allow RPC usage. Please check the api crate for more information or the bynar-client.

Configuration:

  1. Create your configuration file. The utility takes json config /etc/bynar/disk-manager.json file. This file should be deployed
    when the Bynar package is installed. The vault_* options are optional but recommended. When enabled the disk-manager upon starting will save the generated public key to vault under /bynar/{hostname}.pem. Any clients wanting to connect to it will need to contact vault first. If vault is not enabled it will save the public key to /etc/bynar/.
{
  "backend": "ceph",
  "vault_endpoint": "https://my_vault:8888",
  "vault_token": "token_98706420"
}

Bynar that runs on Ceph, should have a ceph.json file to describe it. This tells where to look for ceph configuration, user details etc. /etc/bynar/ceph.json file:

{
  "config_file": "/etc/ceph/ceph.conf",
  "user_id": "admin",
  "journal_devices": [
        {
            "device": "/dev/sda"
        },
        {
            "device": "/dev/sdb",
            "partition_id": 1
        }
    ]
}

Journal devices can optionally be specified for ceph to use. Bynar will attempt to balance the number of partitions across the devices given. If an explict partition_id is also given Bynar will make use of that. If no partition_id is given Bynar will create new partitions when disks are added. The partition size will be equal to the ceph.conf osd journal size configuration setting which is given in megabytes.

Directory layout:

  1. Top level is the dead disk detector
  2. api is the protobuf api create
  3. disk-manager is the service that handles the adding and removal of disks

Launch the program

  1. After building Bynar from source or downloading prebuilt packages launch the disk-manager, dead-disk-detector service on every server you want maintained.

To start developing Bynar

This community repository hosts all information about building Bynar from source, how to contribute code and documentation, who to contact about what, etc.

If you want to build Bynar:

You have a working [Rust environment].
$ curl https://sh.rustup.rs -sSf | sh
$ rustup override set nightly
$ cargo build --release

Dependencies for Ubuntu 18.04:

  1. libzmq3-dev 4.1 or higher
  2. libprotobuf-dev 2.5 or higher
  3. librados2 # ceph jewel or higher
  4. libatasmart-dev
  5. libssl-dev
  6. libblkid-dev
  7. libsqlite3-dev
  8. libudev # for building
  9. librados-dev # for building Installing Bynar under Ubuntu 18.04:
  10. add deb http://download.opensuse.org/repositories/network:/messaging:/zeromq:/release-stable/xUbuntu_18.04/ ./ to /etc/apt/sources.list
  11. wget https://download.opensuse.org/repositories/network:/messaging:/zeromq:/release-stable/Debian_9.0/Release.key -O- | sudo apt-key add
  12. enable universe: deb http://archive.ubuntu.com/ubuntu bionic universe
  13. apt update && apt install libzmq5

Hard Drive Workflow

Hard drives die all the time as part of the regular cycle of things in servers. Bynar can nearly completely automate that maintenance except for the actual replacing of the drive. The typical workflow by a human would look something like this: 1. Receive an alert about a drive failing 2. SSH over to the server to investigate. Try to rule out obvious things 3. Conclude drive is dead and file a support ticket with the datacenter tech to remove it * Or file a ticket with HP/Dell/Cisco/Etc to replace the drive 4. Depending on the software running on top of this drive I may have to: * Inform the cluster that the drive is dead * Rebalance the data in the cluster 5. Wait for a replacement 6. After the drive is replaced inform the clusters that the drive is now back in service and rebalance the data back onto the drive.

So how can Bynar help? Well it can handle steps 1,2,3,4 and 6. Nearly everything! While it is replacing your drives it can also inform you over slack or other channels to keep you in the loop. The time saved here multplies with each piece of hardware replaced and now you can focus your time and energy on other things. It's a positive snowball effect!

Testing

Note that root permissions are required for integration testing. The reason is that the test functions will attempt to create loopback devices, mount them, check their filesystems etc and all that requires root. The nightly compiler is also required for testing because mocktopus makes use of features that haven't landed in stable yet. Run: sudo ~/.cargo/bin/cargo test -- --nocapture to test.

Support and Contributions

If you need support, start by checking the issues page. If that doesn't answer your questions, or if you think you found a bug, please file an issue.

That said, if you have questions, reach out to us communication.

Want to contribute to Bynar? Awesome! Check out the contributing guide.

Extension points exported contracts — how you extend this code

Transition (Interface)
(no doc) [12 implementers]
src/test_disk.rs
Backend (Interface)
Different distributed storage clusters have different ways of adding and removing disks. This will be consolidated here [2 …
src/backend/mod.rs

Core symbols most depended-on inside this repo

to_string
called by 67
src/lib/error.rs
get_connection_from_pool
called by 12
src/in_progress.rs
respond_to_client
called by 7
src/disk_manager.rs
add_or_update_operation_detail
called by 6
src/in_progress.rs
evaluate
called by 5
src/main.rs
add_or_update_operation
called by 5
src/in_progress.rs
add_disk_detail
called by 4
src/in_progress.rs
is_hardware_waiting_repair
called by 4
src/in_progress.rs

Shape

Function 117
Method 42
Class 27
Enum 7
Interface 2

Languages

Rust100%

Modules by API surface

src/test_disk.rs48 symbols
src/backend/ceph.rs38 symbols
src/in_progress.rs35 symbols
src/disk_manager.rs13 symbols
src/lib/host_information.rs10 symbols
src/test_hardware.rs9 symbols
src/main.rs9 symbols
src/client.rs8 symbols
src/lib/lib.rs7 symbols
src/lib/error.rs5 symbols
src/backend/mod.rs4 symbols
src/backend/gluster.rs4 symbols

For agents

$ claude mcp add Bynar \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact