Automate Hadoop Cluster with Systemd (Archived)

If you have a server that is part of the Hadoop cluster, then you probably want your Hadoop daemons to run at startup. If you have done some Linux system administration, then you have probably encounter systemctl command here and there. This command is part of the Systemd, used for bootstrapping and managing system processes. … Read more

(Won’t Work – Out Of Date) Solving ‘Permission denied’ when writing to Docker volume

Docker is one of those development projects that lived up to the hype. It allows you to package and ship your application, without having to worry as much about the deployment environment. Key phrase: “as much” Unfortunately, it is no silver bullet. Take for instance the Jenkins’ docker repository. When you decided to use this … Read more

SDM And Database Brainstorm

With my Sparse Distributed Memory (SDM) basic implementation finally done, in which the Up/Down Counters won’t overflow, I’m ready to embark something bigger. At the moment, my implementation stores everything in random-access-memory (RAM), which is very limiting. I have utilized SDM with my reinforcement learning (rl), solving entailments in a set of 11,000 metrics, which … Read more

Sparse Distributed Memory – Addressing the Up/Down Counter Overflow

Sparse Distributed Memory (SDM) is a fascinating way of managing the exponential growth in memory. As opposed to the traditional random-access memory (RAM) where there is a one to one correspondence between an address and a hard location, SDM can map multiple addresses to a multiple of hard location. I won’t delve into why this … Read more