You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to the websockets -> cassandra functionality in Shotover, this would allow you to communicate with a downstream database with HTTP over Shotover. This would let you connect directly (sort of) to, for example, a Cassandra database from an environment where only HTTP is available.
Use
In Shotover this might be available to users with the following topology.yaml:
Implementation
To add this feature to Shotover two pieces would need to be implemented:
HTTP source. Most of this functionality is already implemented in Shotover for the OpenSearch work.
a new transform to convert messages between types. Alternatively this functionality could added to the codecs, where they would convert messages of a different type to their output automatically, but I think the transform is more explicit and lets you use. This will just pull the raw bytes of the protocol message out of the HTTP message body and convert into a Cassandra message type within Shotover.
The text was updated successfully, but these errors were encountered:
Overview
Similar to the websockets -> cassandra functionality in Shotover, this would allow you to communicate with a downstream database with HTTP over Shotover. This would let you connect directly (sort of) to, for example, a Cassandra database from an environment where only HTTP is available.
Use
In Shotover this might be available to users with the following
topology.yaml
:Implementation
To add this feature to Shotover two pieces would need to be implemented:
The text was updated successfully, but these errors were encountered: