분류 전체보기
-
한국거래소 홈페이지 - ETF 리스트 얻기주식/한국주식 2016. 8. 7. 18:20
한국 거래서 사이트가 대규모 업뎃이 되었네요. ETF 리스트는 한국거래소 홈페이지에서 다운로드 가능합니다. http://marketdata.krx.co.kr/mdi#document=08010201&5652b5b54b8c78c4a3ec723caac5728a=1 ETF리스트 바로가기 Marketdata에서 증권상품>ETF>종목정보>상품검색(60003) 에서 엑셀로 다운로드 받기 참고로 국내 상장 ETF 전체 리스트를 다운받으려면 기초시장에서 국내 - 전체 선택 - 조회 - 엑셀 클릭 하고해외 - 전체 선택 - 조회- 엑셀 클릭 두 번을 해서 합쳐야 합니다. ETN 리스트도 아래와 같은 경로로 받을 수 있다. Marketdata에서 증권상품>ETN>종목정보>상품검색(60003) 에서 엑셀로 다운로드 받기
-
elasticsearch - shard 개수와 replica 개수 정하기프로그래밍/검색 2016. 8. 5. 21:11
엘라스틱 서치 권장 사항 저장용 https://www.elastic.co/guide/en/elasticsearch/guide/current/scale.html https://www.elastic.co/guide/en/elasticsearch/guide/current/shard-scale.html https://www.elastic.co/guide/en/elasticsearch/guide/current/overallocation.html PUT /my_index { "settings": { "number_of_shards": 2, "number_of_replicas": 0 } } This time, when we add a second node, Elasticsearch will automatically ..
-
elasticsearch 2.3 - server ip 주소에 Connection refused 에러프로그래밍/검색 2016. 8. 3. 23:33
localhost:port에는 접속이 되면서 ip address:port로는 접속이 되지 않는 이슈 발생 # curl real_IP_Address:9200curl: (7) Failed to connect to real_IP_Address port 9200: Connection refused# curl localhost:9200{ "name" : "Wrath", "cluster_name" : "****", "version" : { "number" : "2.3.2", "build_hash" : "****", "build_timestamp" : "2016-04-21T16:03:47Z", "build_snapshot" : false, "lucene_version" : "5.5.0" }, "tagline" : "..