Skip to content

Instantly share code, notes, and snippets.

View kirktrue's full-sized avatar
🏠
Working from home

Kirk True kirktrue

🏠
Working from home
View GitHub Profile
### Keybase proof
I hereby claim:
* I am kirktrue on github.
* I am kirktrue (https://keybase.io/kirktrue) on keybase.
* I have a public key whose fingerprint is 4B13 A88A A55E D586 135F C2F1 C029 8288 724F BA4C
To claim this, I am signing this object:
@kirktrue
kirktrue / creating-multiple-local-cassandra-datacenters-with-docker.sh
Last active May 8, 2020 20:47
Script used in the "Creating Multiple Local Cassandra Datacenters with Docker" blog entry
#!/bin/bash -x
SLEEPY_TIME=45
# Define the name of our Docker network
network_name=test-cassandra-network
# Define the name of the seed node
seed_name=
@kirktrue
kirktrue / member-assignment-reconciler.txt
Created September 11, 2023 23:33
Test UML description
{plantuml}
@startuml
!$ab = "foo1"
!$cd = "foo2"
!$ef = $ab + $cd
Alice -> Bob : $ab
Alice -> Bob : $cd
Alice -> Bob : $ef
@enduml
@kirktrue
kirktrue / new_consumer_test_suite.yml
Created March 18, 2024 23:06
Kafka system test suite
consumer_group_command_test:
- 'kafkatest/tests/core/consumer_group_command_test.py::ConsumerGroupCommandTest.test_list_consumer_groups@{"security_protocol":"PLAINTEXT","metadata_quorum":"ISOLATED_KRAFT","use_new_coordinator":true,"group_protocol":"consumer"}'
- 'kafkatest/tests/core/consumer_group_command_test.py::ConsumerGroupCommandTest.test_list_consumer_groups@{"security_protocol":"SSL","metadata_quorum":"ISOLATED_KRAFT","use_new_coordinator":true,"group_protocol":"consumer"}'
- 'kafkatest/tests/core/consumer_group_command_test.py::ConsumerGroupCommandTest.test_describe_consumer_group@{"security_protocol":"PLAINTEXT","metadata_quorum":"ISOLATED_KRAFT","use_new_coordinator":true,"group_protocol":"consumer"}'
- 'kafkatest/tests/core/consumer_group_command_test.py::ConsumerGroupCommandTest.test_describe_consumer_group@{"security_protocol":"SSL","metadata_quorum":"ISOLATED_KRAFT","use_new_coordinator":true,"group_protocol":"consumer"}'
consumer_test:
- 'kafkatest/tests/client/consumer_test.py::As