목록Study (108)
써먹는 웹개발
문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/72410 문제 설명 카카오에 입사한 신입 개발자 네오는 "카카오계정개발팀"에 배치되어, 카카오 서비스에 가입하는 유저들의 아이디를 생성하는 업무를 담당하게 되었습니다. "네오"에게 주어진 첫 업무는 새로 가입하는 유저들이 카카오 아이디 규칙에 맞지 않는 아이디를 입력했을 때, 입력된 아이디와 유사하면서 규칙에 맞는 아이디를 추천해주는 프로그램을 개발하는 것입니다. 다음은 카카오 아이디의 규칙입니다. 아이디의 길이는 3자 이상 15자 이하여야 합니다. 아이디는 알파벳 소문자, 숫자, 빼기(-), 밑줄(_), 마침표(.) 문자만 사용할 수 있습니다. 단, 마침표(.)는 처음과 끝에 사용할 수 없으며 또..
POST index명/type명/_id값 1 2 3 4 5 6 POST index명/type명/_id값 { "doc": { "컬럼명":"값" } } cs 예시 : ID가 SDKLJAFLKAS인 레코드의 SEQ를 1로 수정 1 2 3 4 5 6 POST test/_doc/SDKLJAFLKAS { "doc": { "seq":"1" } } cs
1. 에러 문구 1 Elasticsearch exception [type=illegal_argument_exception, reason=Result window is too large, from + size must be less than or equal to: [10000] but was [100000]. See the scroll api for a more efficient way to request large data sets. This limit can be set by changing the [index.max_result_window] index level setting. cs 2. 해결 명령어 1 2 3 4 PUT index_name/_settings { "max_result_window":..
※ 관리자 모드로 변경 : su - root 1. 오라클 리스너 1 2 리스너 실행 : lsnrctl start listener 리스너 정지 : lsnrctl stop listener cs 2. gitlab (ftp 연결) 1 2 서버 실행 : gitlab-ctl start 서버 정지 : gitlab-ctl stop cs 기타 1. oracle 버전 확인 1 select * from v$version; cs
1. 엘라스틱서치 서버 실행/정지/상태 확인 1 2 3 서버 실행 : systemctl start elasticsearch 서버 정지 : systemctl stop elasticsearch 서버 상태 : systemctl status elasticsearch cs 2. 키바나 실행 systemctl start kibana 3. 샤드 개수가 1개일때 최소 2개 이상으로 바꾸는 방법 - reindex(리인덱스, 재색인)
1. 현상 : allocating the shard to this node will bring the node above the high watermark cluster setting [cluster.routing.allocation.disk.watermark.high=3.4325714111328125gb] and cause it to have less than the minimum required [3.4gb] of free space (free: [14.4gb], estimated shard size: [12.7gb]) ※ 메세지 (클러스터 watermark 상태) 확인 : GET _cluster/settings 2. 원인 : 하나의 노드에 용량 부족 - 노드별 용량 확인 GET _cat/alloca..
클러스터 상태가 yellow인 경우는 복제 샤드 중 일부 또는 전부가 UNASSIGNED인 경우인데 복제샤드를 삭제하면 주 샤드 전체가 조회 가능한 상태가 되기 때문에 green으로 바꿀 수 있는 경우라고 할 수 있다. 바꾸는 방법 : 복제 샤드를 0으로 처리한다. PUT 인덱스명/_settings { "index" : { "number_of_replicas" : 0 } }