You may want to insert a lot of data into Redis. This would be easier to insert a lot of data into Redis using Linux commands. Let's say we have a comma separated values in a file.data.csv: key1,1200key2,5000key35,12345key12,4500With the following command, you can load all the data into Redis. But you should start the Redis server first. You can change ...
You may want to insert a lot of data into Redis. This would be easier to insert a lot of data into Redis using Linux commands. Let’s say we have a comma separated values in a file. data.csv: key1,1200 key2,5000 key35,12345 key12,4500 With the following command, you can load all the data into Redis. But you should start the Redis ...
You may want to insert a lot of data into Redis. This would be easier to insert a lot data into Redis using Linux commands. Lets say we have a comma separated values in a file.data.csv: key1,1200key2,5000key35,12345key12,4500With following command you can load all the data into Redis. But you should start Redis server first.cat data.csv | awk -F',' '{print " ...
Recently we used Redis server on Ubuntu 14.04. And I just thought about writing a blog post to show how to build Redis on Ubuntu server or desktop editions. First of all, you have to go to the Redis site and download the Redis source code. Redis siteCopy the download link from Redis site. Currently, download link looks like this ...
Recently we used Redis server on Ubuntu 14.04. And I just thought about writing a blog post to show how to build Redis on Ubuntu server or desktop editions. First of all you have to go to Redis site and download the redis source code. Redis siteCopy the download link from redis site. Currently download link looks like this "http://download.redis.io/releases/redis-2.8.17.tar.gz". ...
Recently we used Redis server on Ubuntu 14.04. And I just thought about writing a blog post to show how to build Redis on Ubuntu server or desktop editions. First of all, you have to go to the Redis site and download the Redis source code. Redis site Copy the download link from Redis site. Currently, download link looks like ...
We recently purchased a Cisco switch for our Hadoop cluster. So I wanted to setup Cisco switch. But first of all I want to configure ssh and disable telnet. Lets see how we can do that. Connect to the switch using telnet or using console port. (You should enable telnet and give a password from express setup.) enableconfigure terminalhostname <switchname>ip ...
We recently purchased a Cisco switch for our Hadoop cluster. So I wanted to set up the Cisco switch. But first of all, I want to configure ssh and disable telnet. Let's see how we can do that.Connect to the switch using telnet or using the console port. (You should enable telnet and give a password from express setup.) enableconfigure ...
We recently purchased a Cisco switch for our Hadoop cluster. So I wanted to set up the Cisco switch. But first of all, I want to configure ssh and disable telnet. Let's see how we can do that.Connect to the switch using telnet or using the console port. (You should enable telnet and give a password from express setup.) enableconfigure ...
I couldn't install Ubuntu 14.04 as soon as it was released. But I upgraded my office laptop to Ubuntu 14.04 in June.Ubuntu 14.04 is more stable than other releases. And Ubuntu 14.04 is a LTS (Long term support) version which will release updates till 2019. I switched to 14.04 from 12.04.They have disabled workspaces. (+1) I hate this workspace business ...
I couldn't install Ubuntu 14.04 as soon as it was released. But I upgraded my office laptop to Ubuntu 14.04 in June.Ubuntu 14.04 is more stable than other releases. And Ubuntu 14.04 is an LTS (Long term support) version which will release updates till 2019. I switched to 14.04 from 12.04.They have disabled workspaces. (+1) I hate these workspaces because ...
I couldn't install Ubuntu 14.04 as soon as it was released. But I upgraded my office laptop to Ubuntu 14.04 in June.Ubuntu 14.04 is more stable than other releases. And Ubuntu 14.04 is an LTS (Long term support) version which will release updates till 2019. I switched to 14.04 from 12.04.They have disabled workspaces. (+1) I hate these workspaces because ...
I haven't used encryption on hard disk drives or pen drives ever. But recently I got a requirement to encrypt some portables disks. And there are some limitations also. After encrypting you would not be able to use that drive on Windows Operating System. You are going to limit to the ext4 file system as well.First, you have to install ...
I haven't used encryption on hard disk drives or pen drives ever. But recently I got a requirement to encrypt some portables disks. And there are some limitations also. After encrypting you would not be able to use that drive on Windows Operating System. You are going to limit to the ext4 file system as well.First, you have to install ...
I haven't used encryption on hard disk drives or pen drives ever. But recently I got a requirement to encrypt some portables disks. And there are some limitations also. After encrypting you would not be able to use that drive on Windows Operating System. You are going to limit to ext4 file system as well.First you have to install cryptsetup ...
We have been using d3js to visualize things on maps. And after struggling with topojson application my boss found a way to convert Sri Lanka Shapefile (.shp) to topojson format. Then we wanted to use cartograms for our visualizations. I found that there was a d3js cartogram implementation. - https://github.com/shawnbot/d3-cartogram/With the help of this blog post - http://www.limn.co.za/2013/10/making-a-cartogram/, I finished ...
We have been using d3js to visualize things on maps. And after struggling with topojson application my boss found a way to convert Sri Lanka Shapefile (.shp) to topojson format. Then we wanted to use cartograms for our visualizations. I found that there was a d3js cartogram implementation. - https://github.com/shawnbot/d3-cartogram/ With the help of this blog post - http://www.limn.co.za/2013/10/making-a-cartogram/, I ...
We have been using d3js to visualize things on maps. And after struggling with topojson application my boss found a way to convert Sri Lanka Shape file (.shp) to topojson format. Then we wanted to use cartograms for our visualizations. I found that there was a d3js cartogram implementation. - https://github.com/shawnbot/d3-cartogram/With the help of this blog post - http://www.limn.co.za/2013/10/making-a-cartogram/, I ...
It's funny! You can have mapper only Hadoop MapReduce Jobs. This would be useful sometime when you need to change the structure of data. Otherwise, you can use this way when to want to filter out data. But I don't think you will need this much often.The first file is a simple mapper which really does nothing. You can change ...
It's funny! You can have mapper only Hadoop MapReduce Jobs. This would be useful sometime when you need to change the structure of data. Otherwise you can use this way when want to filter out data. But I don't think you will need this much often. First file is a simple mapper which really does nothing. You can change it ...