Replies: 1 comment 1 reply
-
|
This is awesome, thanks @sauljabin ! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
LittleHorse is a high-performance microservice orchestration engine that allows developers to build scalable, maintainable, and observable applications.
LH uses kafka, and it serializes its topics with protobuf.
Install
protoc:Generate descriptor:
protoc --include_imports --descriptor_set_out=littlehorse.desc \ --proto_path=${SCHEMAS_PATH}/internal \ --proto_path=${SCHEMAS_PATH}/littlehorse \ $(find ${SCHEMAS_PATH} -name "*.proto")Read from
core-cmdtopic:kaskade consumer -b localhost:9092 --from-beginning -t my-cluster-core-cmd \ -k string -v protobuf \ --protobuf descriptor=littlehorse.desc \ --protobuf value=littlehorse.CommandRead from
metadatatopic:kaskade consumer -b localhost:9092 --from-beginning -t my-cluster-metadata-cmd \ -k string -v protobuf \ --protobuf descriptor=littlehorse.desc \ --protobuf value=littlehorse.MetadataCommandBeta Was this translation helpful? Give feedback.
All reactions