개발183 under score 정리 [펌] Scala dreaded underscore from Normation 첫 슬라이드는 다음과 같습니다. 뭔가 어려워보이죠? 각종 _ 의 용법은 모두 들어가 있습니다. 아주 간단하게 설명하면 아래의 offset 에 대입되는 커링 함수 sum2(count) 에서 count는 매번 실행시의 count 값이 바인딩됩니다.(악 벌써 여기부터 어려워!!!)123456789101112131415class Underscores { import collection.{ Map => _ , _ } var count : Int = _ def sum = (_:Int) + (_:Int) def sum2(a:Int)(b:Int) = a+b def offset = sum2(count) _ def sizeOf(l:Traversable.. 2017. 3. 28. centos 7 firewall 설정 Disable FirewalldTo disable firewalld, run the following command as root:systemctl disable firewalldStop FirewalldTo stop firewalld, run the following command as root:systemctl stop firewalldCheck the Status of FirewalldAnd finally, to check the status of firewalld, run the following command as root:systemctl status firewalld 출처 : https://www.liquidweb.com/kb/how-to-stop-and-disable-firewalld-on.. 2017. 3. 24. hbase 설치 [펌] ■ HBase를 완전분산 모드로 설치하기 전에 먼저 Hadoop과 Zookeeper가 설치되어 있어야 한다. Hadoop 완전분산 설치 와 Zookeeper 설치를 참조한다.HBase 설치 대상 서버 정보Host NameIP용도centos01192.168.192.128Master Servercentos02192.168.192.130Region Server 1centos03192.168.192.133Region Server 2centos04192.168.192.132Region Server 3centos05192.168.192.131Region Server 4 ■ HBase 다운로드 http://hbase.apache.org/의 mirror site에서 hbase stable 버전의 다운로드 링크를 복사한.. 2017. 3. 24. zookeeper 설치 [펌] ■ Zookeeper를 아래의 3대의 Linux CentOS7이 설치된 서버에 설치하고자 한다. 각 서버의 호스트파일(/etc/hosts)에 아래의 정보가 등록되어있다.123456789[nextman@centos01 etc]$ cat /etc/hosts127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4::1 localhost localhost.localdomain localhost6 localhost6.localdomain6192.168.192.128 centos01192.168.192.130 centos02192.168.192.133 centos03192.168.192.132 centos04192.168.192.131.. 2017. 3. 24. 이전 1 ··· 9 10 11 12 13 14 15 ··· 46 다음