search for: cdh3

Displaying 4 results from an estimated 4 matches for "cdh3".

Did you mean: cd3
2010 Sep 02
3
puppet file recursion requires two passes to converge
Hi, So for awhile I have been seeing this issue but it hasn''t been painful. However, recently I have been deploying a new module that has made it much more annoying. file { cdh3_config: recurse => true, ignore => ".svn", checksum => md5, notify => Exec[hadoop_alternatives], require => Package[hadoop], path => "/etc/hadoop-$bespin_cdh3_version/conf.bespin"...
2013 Jan 27
1
http problem with (a particular url) and default (nat) networking
...rom the server in question, and the iptables rules added by libvirt. Repro steps: 1. Create a vm (I tested with linux and freebsd guests) using default libvirt networking settings (<interface type='network'>). 2. wget, curl, fetch: http://archive.cloudera.com/one-click-install/lucid/cdh3-repository_1.0_all.deb Observe it will "hang". If you use strace you'll see it block on the select call. My particular host is using a virbr0 network bridge, with the following iptables rules: $ iptables -S -v -Z -P INPUT ACCEPT -c 404828 91071544 -P FORWARD ACCEPT -c 0 0 -P OUTPUT...
2014 Sep 08
3
Yum cant find kernel-pae
...enabled: 6,367 c6-media CentOS-6 - Media disabled centosplus CentOS-6 - Plus enabled: 88 cloudera-cdh3 Cloudera's Distribution for Hadoop, Version 3 enabled: 67 cloudera-impala Impala enabled: 8 contrib CentOS-6 - Contrib...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.