Elasticsearch에서는 서버 부하를 줄이기 위하여, 기본적으로 10000개의 응답이 회신된다. 이는 인덱스 설정을 바꿔주면 해결이 된다. from elasticsearch import Elasticsearch es = Elasticsearch(hosts=['http://localhost:9200']) es.indices.put_settings( index="my_index", # 이 필드는 꼭 없어도 되는 것 같음. body= {"index" : { "max_result_window" : 500000 }}) resp = es.search(index="my_index", query={"match_all": {}}, size=500000) print("Got %d Hits:" % resp['hits'..
업무를 하면서 각종 스크립트를 작성하다보면, 로그 파일을 잘 관리하는게 필요하다. 쉽게 하는 방법은 logger를 이용해 파일로 stdout/stderr 를 출력하도록 하면 되는데, 로그를 많이 생성할 수록 용량이 기하급수적으로 늘어나게 된다. 그리고, 파일 용량이 커지면 에러가 발생한 시점을 찾기도 어렵다. 따라서, 이럴 때는 날짜별로 구분하여 저장되도록 설정하고, 과거 로그는 자동으로 압축되도록 Rotate 설정하는 것이 좋다. Ubuntu에서는 아래 경로에 관리할 대상 로그에 대한 설정을 생성해주면 된다. >> sudo vi /etc/logrotate.d/myproject /data/myproject/log/*.log { daily
Systemd로 등록하여 서비스로 관리하는 경우가 있는데, 구글링을 열심히 하다보면, 로그를 저장할 경로를 StandardOutput / StandardError를 이용해 지정하라고 한다. 아래와 같이 값을 넣어두면 될 것이라고 생각을 했는데, StandardOutput=/myproject/log/stdout.log StandardError=/myproject/log/stderr.log 이런 경우 아래와 같이 에러가 생기고 무시가 되어 버리며, /var/log/syslog 에 로그가 저장되어 버린다. /etc/systemd/system/myproject.service:11: Failed to parse output specifier, ignoring: /myproject/log/stdout.log 이는 ..
맥에서 Python 개발을 할 때, matplotlib 로 그래프 출력이 안되는 경우가 있는 것 같다. 에러 메시지는 다음과 같이 난다. import matplotlib.pyplot as plt File "/Users/cosrah/anaconda3/envs/py35/lib/python3.5/site-packages/matplotlib/pyplot.py", line 115, in _backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup() File "/Users/cosrah/anaconda3/envs/py35/lib/python3.5/site-packages/matplotlib/backends/__init__.py", line 6..
리스트에 포함된 데이터에서두 개의 모든 데이터 쌍을 얻고 싶을 때아래와 같이 코드를 작성할 수 있습니다. def get_pairs_from_list(lst): pairs = [] lst_len = len(lst) for i in range(lst_len): if i == (lst_len-1): break subset = lst[i+1:] for item in subset: pairs.append((lst[i], item)) return pairs 감사합니다.
오늘 작업을 하다가 보니,Python에서 멀티쓰레드로 작업을 처리하고 싶어졌다.그런데, 단순히 Thread를 Array로 만들어서 처리하다보니 너무 복잡했다.그래서 Pool 형태로 구현하는 방법을 찾아보니, 아래 링크처럼 구현이 가능했다. http://code.activestate.com/recipes/577187-python-thread-pool/ class ThreadPool: """Pool of threads consuming tasks from a queue""" def __init__(self, num_threads): self.tasks = Queue(num_threads) for _ in range(num_threads): Worker(self.tasks) def add_task(self, ..
오늘 두 가지 문제를 확인했다. 첫 번째, Python 2.6.6 버전에서는 (적어도 내가 확인한 바로는) import sys sys.setdefaultencoding('utf-8)방식으로 인코딩 설정을 할 수 없었다. 한글 처리에서의 어려움이 있었는데, 이 방법으로 해결했다. site.py 파일에서의 encoding 기본 값을 강제로 설정하는 방법... 좀 무식하긴 하지만;; Python 에서 이런 부분을 전혀 고려해주지 않아서, 또는 제대로 개발자가 알 수 없도록 해서 어쩔 수 없이 적용하는 부분이니까... 두 번째, 위 처럼 수정하니까. sqlite3 에서 문제가 발생했다. " Could not decode to UTF-8 column ~~ " 이것은 한글로 입력된 데이터에 대해서 'select' ..
- Total
- Today
- Yesterday
- 지루박멸연구센타
- 열정의 힘을 믿는다
- Le4rN TO Cr4cK
- 디버깅에관한모든것(DebugLab)
- sysinternals
- FoundStone
- hashtab
- 보안-coderant
- 디바이스드라이버 개발자 포럼
- dualpage.muz.ro
- osronline.com - 드라이버 관련 정보 사이트
- NtInternals - NativeAPI Refere…
- pcthreat - spyware 정보 제공
- rootkit.com - 루트킷 관련 정보
- www.ntinternals.net
- WINE CrossRef. - source.winehq…
- tuts4you
- hex-rays
- idapalace
- idefense
- immunityinc
- threatexpert
- hdp.null2root.org
- www.crackstore.com
- crackmes.de
- www.who.is
- www.cracklab.ru
- community.reverse-engineering.…
- video.reverse-engineering.net
- SnD
- 클레이 키위
- reversengineering.wordpress.co…
- www.openrce.org
- www.woodmann.com
- PEID.Plusins.BobSoft
- roxik.com/pictaps/
- regexlib.com
- spyware-browser.com
- www.usboffice.kr
- regulator
- www.txt2re.com
- ietab.mozdev.org
- zesrever.xstone.org
- www.heaventools.com/PE-file-he…
- www.heaventools.com
- www.innomp3.com
- 울지않는벌새
- exetools.com-forum
- exetools.com
- utf8 conv
- robtex - IP trace
- onsamehost - same IP sites
- JpopSuki
- jsunpack.jeek.org
- wepawet.iseclab.org
- www.jswiff.com
- www.hackeroo.com
- winesearcher.co.kr
- khpga.org
- malwareurl.com
- anubis.iseclab.org
- www.crummy.com-eautifulSoup
- malwarebytes.org/forums
- bbs.janmeng.com
- blackip.ustc.edu.cn
- eureka.cyber-ta.org
- exploit-db.com
- 피봇
- 시스템트래이딩
- Pivot
- ChatGPT
- O365
- ubuntu
- 전세매매지수
- 군함도
- 다올저축은행
- PIR
- hai
- 주식트래이딩
- 미국주식
- 맥쿼리인프라
- SBI저축은행
- 공공인프라
- 매매가격지수
- logrotate
- CriticalSection
- 사회간접자본
- 주택구매력지수
- 레고랜드
- INVOICE
- ElasticSearch
- systemd
- 주식
- 자동트래이딩
- 신한저축은행
- ROA
- 실시간트래이딩
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |