Overriding Default Serialization for Kafka Connect – Be Careful

Overriding Default Serialization for Kafka Connect – Be Careful Serialization / Deserialization for Confluent platform can be sometimes tricky. There are certain defaults to the platform. As developers, it is our responsibility to understand the defaults and tweak the parts which are necessary. Even just a little mismatch can be sometimes very cumbersome and might… Continue reading »

Setting up IntelliJ IDEA behind Proxy

Plugins Download First you need to set proxy for plugins download. Go to File\Settings and open Plugin tab. Get Proxy settings from internet explorer (Internet options) and update it here: org.scala-sbt#sbt;0.13.16: not found Here you need to use the same version build.propeties file as the one in sbt launcher. Check SBT Version on your machine… Continue reading »

SBT Behind Proxy

SBT Behind Proxy If you are running sbt behind firewall, you need to update proxy settings to be used: sbtconfig.txt Update the sbtconfig.txt where you have sbt installed: In addition to this, please make sure that sbt is added to $PATH variable. Using SBT from Git Bash Even though I had it configured as follows,… Continue reading »

Angular2 – Attribute Directives

Angular2 – Attribute Directives Directives give us the ability to create tags which can be directly used in the template. Since they are not HTML5 templates, we need to define how Angular can render these components In the end, they would be converted to a representation that a browser understands. Angular can convert these directives… Continue reading »

Curator for Managing Elastic Search Indices

Curator for Managing Elastic Search Indices Curator is one of the officially supported plugins of Elastic Search. It supports a number of features including the following: Add or remove indices (or both!) from an alias Change shard routing allocation Close indices Create index Delete indices Delete snapshots Open closed indices forceMerge indices reindex indices, including… Continue reading »

Play Framework – Input line is too long…

Play Framework – Input line is too long… I have recently come across this problem where Play framework service wouldn’t run on some windows servers and result in the following error: The problem is APP_CLASS. Just update it to the following it should work fine: set “APP_CLASSPATH=%APP_LIB_DIR%\..\conf\;%APP_LIB_DIR%\*” Note: This would load all the libraries from… Continue reading »