일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Lambda architecture
- 람다 아키텍처
- Windows
- HIVE
- re
- python
- yarn
- HBase
- Kafka
- airflow
- slack
- Namenode
- java
- hadoop
- ambari
- docker
- slack app
- 빅데이터
- Example DAG
- 정규표현식
- execution_date
- HDP
- HDFS
- jupyter
- Scala
- Service
- NoSQL
- SlackWebhookOperator
- LDAP
- MapReduce
- Today
- Total
목록개발/scala (3)
IT 삽질기
Scala에서 형변환을 하기 위해서는 흔히 .toInt .toString 등과 같은 to[자료형]을 이용해 사용한다 실제 사용 예를 보자 위의 실행결과는 당연하게도 아래와 같다 정상적으로 1+1234 = 1235라는 결과가 나온다 그렇다면 char을 Int로 바꾸면 어떻게 될까 다른 언어서도 그렇지만 char을 int로 변경하는 경우 ascii코드의 형식으로 변환된다 실행결과는 1,2의 ascii코드 값인 49, 50이 되어 '1'+'2'는 99라는 결과가 나온다 char을 우리가 원하는 int형식으로 변환하려면 아래와 같은 방법을 사용할 수 있다 위의 3코드의 결과값은 모두 같다 0의 ascii 코드 값인 48을 빼면 원하는 것처럼 숫자에 대한 값을 구할 수 있다 String형식으로 되어 있는 숫자들의..
home brew가 설치되어 있다고 가정하고 home brew를 이용하여 scala를 설치하는 방법에 대해 설명한다. 1. scala 찾기 brew search scala 2. scala 설치 최신 버전의 scala 설치 brew install scala@2.12 3. 환경변수 설정 사용 shell에 따라 다름 zsh를 사용하고 있어 ~/.zprofile에 등록 4. scala 설치 확인 scala -verion scala
설치 환경 os : mac Catalina 10.15.2 1. JDK 설치 scala는 Java 기반으로 JDK를 먼저 설치해야 함 2. scala 설치 https://www.scala-lang.org/ The Scala Programming Language BLOG Wednesday, December 18, 2019 Together with the Scala 3 team at EPFL (aka the Dotty team), led by Martin Odersky, we have decided that, rather than developing Scala 2.14, our efforts should go to Scala 3 instead. While we’re very excited to shift ou..