bg de en es fr it nl pl pt sv tr zh

codeprix

Debugging a Spark issue

anand

While working on GraphFrames in pyspark, we encountered a ExecutorLostFailure exception. Following is the pyspark script: .gist table { margin-bottom: 0; } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than...

Seek patterns of Elasticsearch

anand

One must know the disk seek patterns of an application when optimizing the storage layer for any application. So when I was working on the performance analysis of ES, one of the first thing was to determine its disk seek patterns. I used blktrace and seekwatcher for that purpose. blktrace is a...

Clustering of synthetic control data in R

anand

This is an R implementation for clustering example provided with Mahuot. The orignal problem description is: A time series of control charts needs to be clustered into their close knit groups. The data set we use is synthetic and so resembles real world information in an anonymized format. It...

Hadoop Tuning Notes

anand

This is a quick dump of my notes for hadoop tuning. General Hadoop is designed to use multiple cores and disks, so it will be able to take full advantage of more powerful hardware. Don’t use RAID for HDFS datanodes as redundancy is handled by HDFS. RAID should be used for namenodes as it provides...