메뉴 건너뛰기

Cloudera, BigData, Semantic IoT, Hadoop, NoSQL

Cloudera CDH/CDP 및 Hadoop EcoSystem, Semantic IoT등의 개발/운영 기술을 정리합니다. gooper@gooper.com로 문의 주세요.


import org.apache.spark.SparkContext
import org.apache.spark.streaming.StreamingContext
import org.apache.spark.streaming.Seconds

object StreamingLogsMB {
  def main(args: Array[String]) {
    if (args.length < 2) {

      System.err.println("Usage: stubs.StreamingLogsMB <hostname> <port>")
      System.exit(1)
    }

    // get hostname and port of data source from application arguments
    val hostname = args(0)
    val port = args(1).toInt

    // Create a Spark Context
    val sc = new SparkContext()

    // Set log level to ERROR to avoid distracting extra output
    sc.setLogLevel("ERROR")

    // Configure the Streaming Context with a 1 second batch duration
    val ssc = new StreamingContext(sc,Seconds(1))

    // Create a DStream of log data from the server and port specified
    val logs = ssc.socketTextStream(hostname,port)

    ssc.checkpoint("logcheckpt")

    logs.countByWindow(Seconds(5), Seconds(2)).print

    ssc.start()
    ssc.awaitTermination()
  }
}

번호 제목 날짜 조회 수
550 spark-shell실행시 "A read-only user or a user in a read-only database is not permitted to disable read-only mode on a connection."오류가 발생하는 경우 해결방법 2016.05.20 2953
549 Spark 1.6.1 설치후 HA구성 2016.05.24 4440
548 spark-env.sh에서 사용할 수있는 항목. 2016.05.24 4289
547 "Initial job has not accepted any resources; check your cluster UI to ensure that workers are registered and have sufficient resources"오류 발생시 조치사항 2016.05.25 4562
546 spark 온라인 책자링크 (제목 : mastering-apache-spark) 2016.05.25 4248
545 spark-submit으로 spark application실행하는 다양한 방법 2016.05.25 4408
544 RDF storage조합에대한 test결과(4store, Jena+HBase, Hive+HBase, CumulusRDF, Couchbase) 페이지 링크 2016.05.26 3018
543 CentOS6에 python3.5.1 소스코드로 빌드하여 설치하기 2016.05.27 4111
542 S2RDF 테스트(벤치마크 테스트를 기준으로 python, scala소스가 만들어져서 기능은 파악되지 못함) [1] file 2016.05.27 2864
541 python실행시 ValueError: zero length field name in format오류 해결방법 2016.05.27 3929
540 python 2.6.6에서 print 'A=' 형태의 사용이 python 3.5.1에서 오류(SyntaxError: Missing parentheses in call to 'print') 발생함.. 2016.05.27 2929
539 DataSetCreator.py 실행시 파일을 찾을 수 없는 오류 2016.05.27 2129
538 --master yarn 옵션으로 spark client프로그램 실행할때 메모리 부족 오류발생시 조치방법 2016.05.27 3522
537 spark client프로그램 기동시 "Error initializing SparkContext"오류 발생할때 조치사항 2016.05.27 4645
536 Job이 끝난 log을 볼수 있도록 설정하기 2016.05.30 4418
535 centos에 sbt 0.13.5 설치 2016.05.30 3200
534 Scala버젼 변경 혹은 상황에 맞게 Spark소스 컴파일하기 2016.05.31 4005
533 "암은 평범한 병, 심호흡만 잘해도 암세포 분열 저지” 2016.06.02 2813
532 Windows에서 sbt개발환경 구축 방법(링크) 2016.06.02 2087
531 hive 2.0.1 설치및 mariadb로 metastore 설정 2016.06.03 9063
위로