HDFS란?대용량 파일을 분산된 서버에 저장하고 빠르게 처리하는 하둡 분산 파일 시스템 1. Hadoop 실행cd /usr/local/cellar/hadoop/3.4.1/libexec/sbin./start-all.sh 2. 폴더 생성hdfs dfs -mkdir /폴더명터미널에서 위와 같이 입력하여 폴더를 생성하고HDFS status : http://localhost:9870상단 메뉴 중 Utilities-Browse the file system에 들어가면생성한 Directory를 확인할 수 있다. 3. 파일 저장hdfs dfs -put 로컬 저장소 위치/파일명 폴더명/파일명터미널에 다음과 같이 입력하면설정한 파일명대로 파일이 올라간 것을 확인할 수 있다. Referencehttps://yarisong...