#/etc/default/cloudera-scm-server 파일에 설정되어 있는 CMF_JAVA_OPT 설정 #다음 같이 설정되어 있는 Xmx 설정 값을 변경 후 서버를 재실행 export CMF_JAVA_OPTS="-Xmx4G -XX:MaxPermSize=256m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/tmp"
ProgressMonitorDialog progressDialog = new ProgressMonitorDialog(shell); try { progressDialog.run(false, true, new IRunnableWithProgress() { @Override public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException { int workload = 100; // Tell the user what you are doing monitor.beginTask("Copying files", workload); // Do your work for (int i = 0; i < workload; ..
Thrift 파일은 다른 Thrift 파일의 공용 구조체나 서비스 정의를 참조할 수 있다. Thrift 는 이런 참조를 현재 경로나, 컴파일러의 -I 플래그에 지정된 상대 경로에서 찾아 Include 한다. 참조된 객체들은 .thrift 파일의 이름을 접두어로 사용해서 접근 가능하다. 1). org.model.thrift 파일 namespace java org.model struct FileModel{ 1: string name; 2: string cPath; 3: string hPath; 4: string pPath; 5: string createDate; 6: string modifiedDate; 7: string accessDate; 8: long size; 9: boolean canRead; 10..
plug-in RCP 프로젝트에 resources 폴더를 추가한다. 생성한 resources 폴더를 classpath에 설정한다. 아래의 코드와 같이 추가한 classpath에 추가된 데이터 파일을 읽을 수 있다. URL url = this.getClass().getClassLoader().getResource("resources"); try { String resourcesPath = FileLocator.toFileURL(url).getPath() + "/application.conf"; String conf = FileUtils.readFileToString(new File(resourcesPath)); } catch (IOException e) { // TODO Auto-generated catc..
git 설치 후 commit 시 user.name과 user.email 을 찾을 수 없다고 장애 시 다음 명령어로 해결 $ git config --global user.name "John Doe" $ git config --global user.email johndoe@example.com
서버에 하나 이상의 네트워크 아이피가 설정되어 있을 경우, 카프카 컨슈머 프로듀서에서 사용되는 아이피를 다음 프로퍼티를 설정하여 사용할 수 있다. listeners=PLAINTEXT://192.168.154.100:9092,SSL://192.168.154.100:9093 advertised.listeners=PLAINTEXT://192.168.154.100:9092,SSL://192.168.154.100:9093 CDH 6.3.1 버전 기준 카프카
ganglia 실행 후 다음 장애 발생 There was an error collecting ganglia data (127.0.0.1:8652): fsockopen error: Permission denied 장애 발생 시 다음 명령어로 조치 setsebool -P httpd_can_network_connect 1
코로나 19 유전역학 확산 패턴을 확인 할 수 있도록 GISAID 에서 제공하는 데이터와 Auspice( Interactive exploration of phylodynamic & phylogenomic data) 를 이용하여 데이터 가시화 Auspice 를 설치하기 위해서는 Python 3.7 버전 이상의 환경이 필요 npm 설치가 되어있지 않으면 우선 아래 명령어를 이용해 npm 설치 rpm -qa | grep node yum remove -y nodejs npm #NodeJS 13.x # As root curl -sL https://rpm.nodesource.com/setup_13.x | bash - # No root privileges curl -sL https://rpm.nodesource.co..