lserinol.blogspot.com lserinol.blogspot.com

lserinol.blogspot.com

Levent Serinol's Blog

Thursday, March 3, 2016. Few custom scala hive udfs I wrote to simply some my sql queries on Hive. Git repo link : https:/ github.com/lserinol/Hive-udfs. Collection of my Scala Hive UDFs. Git clone/fork project https:/ github.com/lserinol/Hive-udfs.git. Add jar 'target/scala-version number/levent-hive-funcs-assembly-version number.jar' to HIVE AUX JARS FILE PATH. Or use "add jar" command for Hive-CLI/Beeline. Create temporary function lcrc32 as 'com.levent.hive.udfs.lcrc32';. March 03, 2016. July 25, 2015.

http://lserinol.blogspot.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR LSERINOL.BLOGSPOT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Saturday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.3 out of 5 with 12 reviews
5 star
5
4 star
5
3 star
2
2 star
0
1 star
0

Hey there! Start your review of lserinol.blogspot.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.4 seconds

FAVICON PREVIEW

  • lserinol.blogspot.com

    16x16

  • lserinol.blogspot.com

    32x32

CONTACTS AT LSERINOL.BLOGSPOT.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Levent Serinol's Blog | lserinol.blogspot.com Reviews
<META>
DESCRIPTION
Thursday, March 3, 2016. Few custom scala hive udfs I wrote to simply some my sql queries on Hive. Git repo link : https:/ github.com/lserinol/Hive-udfs. Collection of my Scala Hive UDFs. Git clone/fork project https:/ github.com/lserinol/Hive-udfs.git. Add jar 'target/scala-version number/levent-hive-funcs-assembly-version number.jar' to HIVE AUX JARS FILE PATH. Or use add jar command for Hive-CLI/Beeline. Create temporary function lcrc32 as 'com.levent.hive.udfs.lcrc32';. March 03, 2016. July 25, 2015.
<META>
KEYWORDS
1 levent serinol's blog
2 hive udfs
3 requirements
4 scala
5 hive
6 compile
7 sbt assembly
8 registering udfs
9 levent serinol
10 no comments
CONTENT
Page content here
KEYWORDS ON
PAGE
levent serinol's blog,hive udfs,requirements,scala,hive,compile,sbt assembly,registering udfs,levent serinol,no comments,email this,blogthis,share to twitter,share to facebook,share to pinterest,linux,2 comments,ext4 sysfs parameters,sys/fs/ext4/,about me
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Levent Serinol's Blog | lserinol.blogspot.com Reviews

https://lserinol.blogspot.com

Thursday, March 3, 2016. Few custom scala hive udfs I wrote to simply some my sql queries on Hive. Git repo link : https:/ github.com/lserinol/Hive-udfs. Collection of my Scala Hive UDFs. Git clone/fork project https:/ github.com/lserinol/Hive-udfs.git. Add jar 'target/scala-version number/levent-hive-funcs-assembly-version number.jar' to HIVE AUX JARS FILE PATH. Or use "add jar" command for Hive-CLI/Beeline. Create temporary function lcrc32 as 'com.levent.hive.udfs.lcrc32';. March 03, 2016. July 25, 2015.

INTERNAL PAGES

lserinol.blogspot.com lserinol.blogspot.com
1

Levent Serinol's Blog: Which processes are using your swap ? (Linux)

http://lserinol.blogspot.com/2013/05/which-processes-are-using-your-swap.html

Monday, May 6, 2013. Which processes are using your swap? Here is a simple bash script which briefly shows you the processes using your Linux's swap area. Bin/bash exec 2 /dev/null total=0 printf "pid t tprocess t tmemory (kB) n" while read -r me do ps=$(cat $me/comm) res1=$? Val=($(grep " VmSwap" $me/status) res2=$? Sample output (processes not sorted by their memory usage). As of 2.6.30-rc7. May 6, 2013 at 5:47 AM. Here is a slightly optimized version:. Printf %-2s t%-9s t%7s n pid process kIB.

2

Levent Serinol's Blog: 2/12/12 - 2/19/12

http://lserinol.blogspot.com/2012_02_12_archive.html

Friday, February 17, 2012. Clearing FreeBSD Kernel Message Buffer. As you can clear kernel message buffer on Linux with dmesg. Command " dmesg -c ", it's a little bit different on a BSD system.It's done by sysctl as following. Sysctl kern.msgbuf clear=1. Subscribe to: Posts (Atom). View my complete profile. There was an error in this gadget. Clearing FreeBSD Kernel Message Buffer. Simple template. Powered by Blogger.

3

Levent Serinol's Blog: 9/6/09 - 9/13/09

http://lserinol.blogspot.com/2009_09_06_archive.html

Friday, September 11, 2009. I/O usage per process on Linux. Linux kernel 2.6.20 and later supports per process I/O accounting. You can access every process/thread's I/O read/write values by using /proc filesystem. You can check if your kernel has built with I/O account by just simply checking /proc/self/io file. If it exists then you have I/O accounting built-in. Cancelled write bytes: 0. Rchar - bytes read. Wchar - byres written. Syscr - number of read syscalls. Syscw - number of write syscalls.

4

Levent Serinol's Blog: Linux like dmesg in Freebsd

http://lserinol.blogspot.com/2012/02/linux-like-dmesg-in-freebsd.html

Tuesday, February 28, 2012. Linux like dmesg in Freebsd. This patch is applied to Freebsd repository on 10 May 2013. Http:/ svnweb.freebsd.org/base? In my previous post. I was talking about the "dmesg -c" equivalent in FreeBSD. Simply it was a sysctl command. So, I decided to simply change FreeBSD dmesg command and make it act like in as Linux. All you have to do is download my patch. And apply it as shown below.I was tested the patch on FreeBSD 9 btw. Have you filed a PR for it? View my complete profile.

5

Levent Serinol's Blog: 3/11/12 - 3/18/12

http://lserinol.blogspot.com/2012_03_11_archive.html

Tuesday, March 13, 2012. Freebsd ciss driver logical drive limit. Lately, I was faced with a strange problem on a HP server which uses HP Smart Array controller P800 which is running Freebsd. All my 24 hard drives which is hosted on externel HP enclosures was presented as 24 single raid0 logical volumes. Surprisingly, when the freebsd booted it doesn't presented the disks and disabled the ciss driver (HP Smart Array Controller) with following message. Define CISS MAX LOGICAL 15. Mar 13 10:32:37 freebsd k...

UPGRADE TO PREMIUM TO VIEW 13 MORE

TOTAL PAGES IN THIS WEBSITE

18

LINKS TO THIS WEBSITE

unixspace.blogspot.com unixspace.blogspot.com

unixspace: Nuova SUN ray

http://unixspace.blogspot.com/2010/04/nuova-sun-ray.html

Notizie ed esperimenti su Unix in Particolare Linux ed OpenIndiana. Martedì 20 aprile 2010. E' uscita una nuova Sun ray, Sunray 3 Plus. Le caratteristiche sono molto interessanti. Http:/ blogs.sun.com/ThinGuy/entry/introducing the sun ray 3. 29 aprile 2010 02:32. Non mi sembra che abbia tante innovazioni se non laumento della risoluzione! Iscriviti a: Commenti sul post (Atom). Cosa usi come sistema Operativo. Rebuilding the initrd RHEL 3, 4, 5 and initramfs RHEL 6, 7. New Cumberland, Ohio.

unixspace.blogspot.com unixspace.blogspot.com

unixspace: gennaio 2013

http://unixspace.blogspot.com/2013_01_01_archive.html

Notizie ed esperimenti su Unix in Particolare Linux ed OpenIndiana. Venerdì 4 gennaio 2013. Hi, today I had some spare time And I found a streaming server software that is multiplatform and run also on Solaris 11/opensolaris: Llink. This is the link to solaris packages: Llink solaris. Iscriviti a: Post (Atom). Cosa usi come sistema Operativo. Digital Imaging and Communications in Medicine - Wikipedia, the . New Cumberland, Ohio. 24 hours of air traffic over northern germany. Rebuilding the initrd (RHEL 3...

unixspace.blogspot.com unixspace.blogspot.com

unixspace: ARIA2

http://unixspace.blogspot.com/2013/01/aria2.html

Notizie ed esperimenti su Unix in Particolare Linux ed OpenIndiana. Venerdì 4 gennaio 2013. I discovered this very good software to download files: "aria2 is a lightweight multi-protocol and multi-source command-line download utility. It supports HTTP/HTTPS, FTP, BitTorrent and Metalink. aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces." ARIA2 here. Iscriviti a: Commenti sul post (Atom). Cosa usi come sistema Operativo. Digital Imaging and Communications in Medicine - Wikipedia, the .

unixspace.blogspot.com unixspace.blogspot.com

unixspace: luglio 2011

http://unixspace.blogspot.com/2011_07_01_archive.html

Notizie ed esperimenti su Unix in Particolare Linux ed OpenIndiana. Martedì 19 luglio 2011. I would like to sho some very useful site with freeware and Opensource usable on OpenIndiana. One software is like visio and it is free, once you have java installed:. Just click on the webstart icon and you have the software running on your desktop. Iscriviti a: Post (Atom). Cosa usi come sistema Operativo. Digital Imaging and Communications in Medicine - Wikipedia, the . New Cumberland, Ohio. Encryption is the e...

unixspace.blogspot.com unixspace.blogspot.com

unixspace: Thunderbird Versione 3.1

http://unixspace.blogspot.com/2010/07/thunderbird-verione-31.html

Notizie ed esperimenti su Unix in Particolare Linux ed OpenIndiana. Lunedì 5 luglio 2010. Thunderbird Versione 3.1. Dopo lunga attesa anche per solaris e' presente la nuova versione di Thunderbird. L'ho installata e sembra funzionare egregiamente. Questo il link per i386: Thunderbird 3.1 i386. Per SPARC: Thunderbird 3.1 SPARC. Iscriviti a: Commenti sul post (Atom). Cosa usi come sistema Operativo. Rebuilding the initrd RHEL 3, 4, 5 and initramfs RHEL 6, 7. 24 hours of air traffic over northern germany.

unixspace.blogspot.com unixspace.blogspot.com

unixspace: dicembre 2009

http://unixspace.blogspot.com/2009_12_01_archive.html

Notizie ed esperimenti su Unix in Particolare Linux ed OpenIndiana. Giovedì 10 dicembre 2009. THUNDERBIRD.E' uscita la 3.0. Finalmente e' uscita la versione definitiva di Thunderbird. Per installarlo per windows Linux e MacOSX:. Http:/ www.mozillaitalia.it/home/download/#thunderbird. Se invece avete Opensolaris ecco il link:. Una volta installato si trova in:. Iscriviti a: Post (Atom). Cosa usi come sistema Operativo. Digital Imaging and Communications in Medicine - Wikipedia, the . New Cumberland, Ohio.

unixspace.blogspot.com unixspace.blogspot.com

unixspace: novembre 2009

http://unixspace.blogspot.com/2009_11_01_archive.html

Notizie ed esperimenti su Unix in Particolare Linux ed OpenIndiana. Lunedì 30 novembre 2009. Download manager per Opensolaris.Anche. Torno sul tema Software per opensolaris, visto che ogni nuovo programma funzionante su Opensolaris e' una conquista. Oggi Parlo di Jdownloader un downloadmanager dedicato ai siti di share come Rapidshare, megaupload. E' scritto in JAVA e funziona su tutti i SO. e naturalmente funziona correttamente anche su Opensolaris. Puo' accoppiarsi con Flashgot http:/ flashgot.net/.

unixspace.blogspot.com unixspace.blogspot.com

unixspace: Freeware and Opensource

http://unixspace.blogspot.com/2011/07/freeware-and-opensource.html

Notizie ed esperimenti su Unix in Particolare Linux ed OpenIndiana. Martedì 19 luglio 2011. I would like to sho some very useful site with freeware and Opensource usable on OpenIndiana. One software is like visio and it is free, once you have java installed:. Just click on the webstart icon and you have the software running on your desktop. Iscriviti a: Commenti sul post (Atom). Cosa usi come sistema Operativo. Digital Imaging and Communications in Medicine - Wikipedia, the . New Cumberland, Ohio. Encryp...

unixspace.blogspot.com unixspace.blogspot.com

unixspace: Media streaming server

http://unixspace.blogspot.com/2013/01/blog-post.html

Notizie ed esperimenti su Unix in Particolare Linux ed OpenIndiana. Venerdì 4 gennaio 2013. Hi, today I had some spare time And I found a streaming server software that is multiplatform and run also on Solaris 11/opensolaris: Llink. This is the link to solaris packages: Llink solaris. Iscriviti a: Commenti sul post (Atom). Cosa usi come sistema Operativo. Digital Imaging and Communications in Medicine - Wikipedia, the . New Cumberland, Ohio. 24 hours of air traffic over northern germany. Encryption is th...

UPGRADE TO PREMIUM TO VIEW 23 MORE

TOTAL LINKS TO THIS WEBSITE

32

OTHER SITES

lseri.com lseri.com

Lake Superior Eastern Rail Industries Limited

Skip to main navigation. Skip to first column. Skip to second column. Lake Superior Eastern Rail Industries Limited. Lake Superior Eastern Rail Industries Limited. Lake Superior Eastern Rail Industries Limited is primarily a freight car lessor. Our objective is to facilitate rail service for the Forest Product and Other Sectors. We believe that Northern Ontario, as well as the rest of Canada must work hard to keep our rail service vibrant and growing. 102 Winnipeg Street North. Chapleau ON Canada P0M 1K0.

lseriesforsale.com lseriesforsale.com

Lincoln Town Car & Lincoln L-Series For Sale

Lincoln Town Car L Series for Sale. Welcome to L SeriesForSale.com. Please visit our parent site, TheLimoAgent.com. Click the button to the right to view our current listings. Please call us anytime at 603 819 9336. If you need more info or would like to purchase one of the Lincoln L Series for sale on this Web site. Additionally, if you do not see what you are looking for, call us any way. we have several sources for Lincoln L Series, and there may be units available that are not listed here.

lseriesos.com lseriesos.com

Index of /

lserieu.skyrock.com lserieu.skyrock.com

Blog de lserieu - c moi - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Plus d'actions ▼. S'abonner à mon blog. Création : 05/02/2012 à 02:17. Mise à jour : 05/02/2012 à 02:17. Ce blog n'a pas encore d'articles. Abonne-toi à mon blog! Poster sur mon blog.

lserine.com lserine.com

Thion Global - Wholesale Herbs , Extracts, Blends, Acai

lserinol.blogspot.com lserinol.blogspot.com

Levent Serinol's Blog

Thursday, March 3, 2016. Few custom scala hive udfs I wrote to simply some my sql queries on Hive. Git repo link : https:/ github.com/lserinol/Hive-udfs. Collection of my Scala Hive UDFs. Git clone/fork project https:/ github.com/lserinol/Hive-udfs.git. Add jar 'target/scala-version number/levent-hive-funcs-assembly-version number.jar' to HIVE AUX JARS FILE PATH. Or use "add jar" command for Hive-CLI/Beeline. Create temporary function lcrc32 as 'com.levent.hive.udfs.lcrc32';. March 03, 2016. July 25, 2015.

lserks.tumblr.com lserks.tumblr.com

I've Got Too Much Soul for the World.

I've Got Too Much Soul for the World. I'm a twenty-something living in this crazy world. Singing in the shower. I want so badly to believe that there is truth and love is real. And I want life in every word to the extent that it's absurd. Please feel free to chat or follow me! Http:/ www.youtube.com/user/xhellokitty5588x. Help me win a $1250 8-Core AMD Gaming PC from Tech of Tomorrow. Introducing our new Glass Straw! 10” long for quart jars and fits all of our drink lids! Me on my 25th birthday. Can&rsqu...

lserl.org.uk lserl.org.uk

Home - London and South East Regional League

News, Blog and Infos. Http:/ www.footballevents.org/en/. FIFA World Cup 2014 in Brazil. Schedule, teams and results of the World Cup on Footballevents.org. This is a website about the FA WOMEN'S PREMIER LEAGUE SOUTHERN DIVISION. Here you can find news, information, results and more. FA Women's Premier League Southern Division. FA Women's Premier League Southern Division. Women's Football Competition and Teams. Club Divisions of the Women's Football League. Ladies Football and the Tottenham Hotspurs.

lserman.com lserman.com

Logan Serman

This publication does not have any stories yet.

lseroboticsclub.blogspot.com lseroboticsclub.blogspot.com

LSE Robotics Club

Leaksville Spray Robotics Team. FIRST Lego League Info. Thursday, November 20, 2014. These are some pictures of the kids during the season. This one is right before we went to the competition at Flat Rock Middle School in Winston-Salem. We placed in the top 10, so we will compete at the state competition in January. Friday, October 24, 2014. This is my favorite of all the robots I have seen. Look how compact and simple it is. Look at the tools they use! Simple, simple, simple! Friday, October 3, 2014.