Jared Petersen
Jared Petersen
React Hooks didn't exist when codeprinter was last overhauled. Look into how it may benefit the project and make the necessary changes.
Look into using Bulma instead of Bootstrap / Reactstrap. Will likely need to a smaller deployable and possibly a nicer looking interface.
Add support for using ArangoDB as a source system. Read from the ArangoDB write-ahead log (WAL) and create Kafka messages based on the record changes. [This has some complications](https://stackoverflow.com/questions/54426598/is-there-a-way-to-read-the-arangodb-write-ahead-log-for-clusters). ArangoDB's...
We can better parallelize the workload for keyspace events where we subscribe to all of the upstream nodes. Ideally, we'd split the work into Kafka Connect tasks and use the...
The connector listens to all Redis cluster nodes for Pub/Sub messages. This is great for keyspace notifications, which only publish node-local messages. However, if you use it for regular Pub/Sub,...
Support transactions via [MULTI](https://redis.io/commands/multi) . . . [EXEC](https://redis.io/commands/exec). This might be a little funky. We can go two different routes on this: - Single Kafka record that contains a list...
Support Lua script commands: - [EVAL](https://redis.io/commands/eval) - [EVALSHA](https://redis.io/commands/evalsha) Commands like [SCRIPT LOAD](https://redis.io/commands/script-load) are probably not super useful from a Kafka data sinking perspective so let's skip those for now unless...
It would be AMAZING if we could get this packaged for Debian so that users could just install it with a single command: ``` sudo apt-get install raspilive ``` I've...
It may be a good idea to organize the connectors by who made them. For example, there are multiple MongoDB connectors: - https://github.com/hpgrahsl/kafka-connect-mongodb - https://github.com/DataReply/kafka-connect-mongodb - https://github.com/Landoop/stream-reactor/tree/master/kafka-connect-mongodb This has already...
It would be great if the ArangoDB operator was able to perform its operations across multiple namespaces rather than just the one it is currently deployed to. This would allow...