-
Notifications
You must be signed in to change notification settings - Fork 3
/
es.py
executable file
·394 lines (330 loc) · 10.4 KB
/
es.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
#coding=utf-8 #only for python3
import sys,pathlib # *.py /qgb /[gsqp]
gsqp=pathlib.Path(__file__).absolute().parent.parent.absolute().__str__()
if gsqp not in sys.path:sys.path.append(gsqp)#py3 works
from qgb import py
U,T,N,F=py.importUTNF()
# from . import py # 如果在 ipy 中执行 %edit es,会导入 <ApiModule 'py' >
import elasticsearch
import elasticsearch.helpers
from elasticsearch import Elasticsearch
from elasticsearch.exceptions import ConnectionTimeout
# es=Elasticsearch([b'\x88\xa3\xa3\x97zaa\xf1\xf4\xf9K\xf1\xf2\xf9K\xf5\xf4K\xf6\xf2z\xf9\xf2\xf0\xf0'.decode('cp424')]) # sg
es=U.get('es',
Elasticsearch([ b'\x88\xa3\xa3\x97zaa\xf5\xf8K\xf2\xf0K\xf1\xf3\xf7K\xf4\xf3z\xf9\xf2\xf0\xf0'.decode('cp424')]),# 58...43
)
#TODO: git sync tools ,save config to github | config level module,current python env(sys),current system(test file),global(github)
gsIndex=''
def setIndex(indexName):
'''#始终加载在此进程中第一次设置(或手动 sys.gsIndex='')
'''
if not py.istr(indexName):raise py.ArgumentError('must str')
s=U.get('es_index')
if s:
globals()['gsIndex']=s
setIndex(b'\x94\x89\x86\x85\x95\x87m\xa2\x85\x81\x99\x83\x88'.decode('cp424') ) # mf_s
gsDocType=U.get('es_doc_type','_doc')
def setLog(on=U.get('es_log_level',True) ):
import logging
es_log=logging.getLogger('elasticsearch')
if on:
es_log.setLevel(logging.NOTSET) #0
else:
es_log.setLevel(logging.CRITICAL) #50
log=setLog
# log(False)
def setResultWindow(size=654321,index=gsIndex):
return es.indices.put_settings(index=index,body={ "index" : { "max_result_window" : size}} )
def search2xls(body,index=gsIndex,fields=('url', 'title', 'channel', 'column_classify', 'datetime'),max_str_len=555 ):
''' Exception: String longer than 32767 characters '''
zh=T.filter_zh(py.repr(body))
es_data=es.search(index=index,body=body)['hits']['hits']
r=[]
for i in es_data:
# if py.islist(i):
# U.log(i)
# continue
s=i['_source']
row=[]
for c in fields:
c=s[c]
if py.istr(c):c=c[:max_str_len]
row.append(c )
r.append(row)
return F.write_xls('qgb-es-{}-{}.xls'.format(zh,py.len(r)) ,r)
def getTopWords(text, n=11,keyword_length_priority=True):
# from qgb import U, es
U=py.importU()
ws = {}
for i in analyze(text)['tokens']:
if i['type'] != 'CN_WORD':
continue
w = i['token']
if w in ws:
ws[w] += 1
else:
ws[w] = 1
if not ws:return py.No('no CN_WORD result',text,n)
ws = U.getDict(ws, len(ws))
if keyword_length_priority:
#按次数 ,关键词长度 从大到小 倒序
ws.sort(key=lambda i: float('%s.%03i'% (i[1], len(i[0]) ) ) , reverse=True)
else:
ws.sort(key=lambda i: i[1] , reverse=True)
return ws[:n]
# @U.retry(ConnectionTimeout)
def getAll(index=gsIndex,*range):
'''
TransportError: TransportError(500, 'search_phase_execution_exception', 'Result window is too large, from + size must be less than or equal to: [10000] but was [20000]. 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.')
'''
return es.search(index,body={"query": {"match_all": {}},'from':0,'size':count(index)+1 } )['hits']['hits']
@U.retry(ConnectionTimeout)
def simpleQuery(a,fields=["title"],index=gsIndex):
''' a='长沙 + 的 '
'''
r= es.search(index=index,body={
"query": {
"simple_query_string" : {
"query": a,
"fields": fields,
"default_operator": "and"
}
}
} )
return r['hits']['hits']
@U.retry(ConnectionTimeout)
def index(**kw):
return es.index(**kw)
@U.retry(ConnectionTimeout)
def analyze(text,analyzer='ik_smart'):
return es.indices.analyze(body={'text':text,'analyzer':analyzer})
@U.retry(ConnectionTimeout)
def count(index=gsIndex):
return es.count(index=index)['count']
@U.retry(ConnectionTimeout)
def getAllIndicesCount(_shards=False):
r=[]
for i in es.indices.get_mapping():
c=es.count(index=i)
if not _shards:c.pop('_shards')
r.append( [i,c] )
# yield [i,es.count(i) ]
return r
@U.retry(ConnectionTimeout)
def deleteIndex(index):#必须提供名字参数,防止误删除
return es.indices.delete(index)
@U.retry(ConnectionTimeout)
def getIndexAllData(index=gsIndex):
''' Not return
'_version': 2,
'found': True '''
dsl={
"query" : {
"match_all" : {}
}
}
return es.search(index=index,body=dsl)
@U.retry(ConnectionTimeout)
def iterIndex(index=gsIndex):
''' Not return '''
resp = es.search(index=gsIndex, body={"query": {"match_all": {}}})
for row in resp["hits"]["hits"]:
yield row
@U.retry(ConnectionTimeout)
def insert(source,id='',**ka):
source= {
'column_classify': get_classify(article_origin),
'channel': article_origin,
#'classify': '晚间新闻', #l爬虫监测
'content':summary,
'datetime': time_publish,
#'nid': 54215,
'source': xyqy,
#'time': '2018-12-22',# 废弃
'title': title,
#'type': 'jdbc',
'url': article_url,
}
return
def hash(a):
a=T.regexReplace(a,r'\W','')
def initIndex(indexName=gsIndex):
from elasticsearch_dsl import Document, Date, Completion, Keyword, Text, Integer,Binary
from elasticsearch_dsl.analysis import CustomAnalyzer as _CustomAnalyzer
from elasticsearch_dsl.connections import connections
# connections.create_connection(hosts=['58.20.137.43'])#default 9200
connections._conns['default']=globals()['es']
# class CustomAnalyzer(_CustomAnalyzer):
# def get_analysis_definition(self):
# return {}
# ik_analyzer = CustomAnalyzer("ik_max_word", filter=["lowercase"])
class Type(Document):
url= Keyword()
title = Text(analyzer="ik_smart")
content = Text(analyzer="ik_smart")
description = Text(analyzer="ik_smart")
err = Binary()
class Meta:
index = indexName
doc_type = "_doc"
Type.init(index=indexName)# 不加这个 出现 KeyError: '*'
def insertOne(url,title='',content='',description='',err=None):
source= locals()
for i in source:
v=source[i]
if i=='err' and not py.isbytes(v) :
source[i]=U.F.dill_dump(v)
es=globals()['es']
return es.index(index=gsIndex,doc_type=gsDocType,body=source,id=url)
import elasticsearch
actions=[]
actions.append(
{
'_id':url,
'_op_type': 'index',
'_index': "w",
'_type': "doc",
'_source': source
}
)
if U.isLinux():
es=elasticsearch.Elasticsearch(['http://127.0.0.1:9200'])
else:
es=elasticsearch.Elasticsearch(['http://58.20.137.43:9200'])
return elasticsearch.helpers.bulk( es, actions )
return insertMutil()
def insertMulti(data):
es=globals()['es']
return
U=py.importU()
F=U.F
def spider(threads=99,TIMEOUT = 9):
threads=99;TIMEOUT = 9
dr={}
de={}
ru=F.pickle_load(file='./10201')
import concurrent.futures,requests
def load_url(domain):
try:
dr[domain]=requests.get('http://'+domain,timeout=TIMEOUT)
except Exception as e:
de[domain]=e
with concurrent.futures.ThreadPoolExecutor(max_workers=threads) as executor:
future_to_url = (executor.submit(load_url, url) for url in ru)
future_to_url=U.progressbar(future_to_url)
for future in concurrent.futures.as_completed(future_to_url):
pr
try:
data = future.result()
if data:U.log(data)
except Exception as exc:
U.log(exc)
def initIndex_mifeng(indexName='mifeng_search'):
'''body= {
# "mifeng_search" : {
# "aliases" : { },
# "mappings" : {
# "_doc" : {
### 根据原始PUT 请求 从这里开始才对
"properties" : {
"channel" : {
"type" : "keyword"
},
"column_classify" : {
"type" : "keyword"
},
"content" : {
"type" : "text",
"analyzer" : "ik_smart"
},
"datetime" : {
"type" : "date"
},
"description" : {
"type" : "text",
"analyzer" : "ik_smart"
},
"err" : {
"type" : "binary"
},
"source" : {
"type" : "keyword"
},
"title" : {
"type" : "text",
"analyzer" : "ik_smart"
},
"url" : {
"type" : "keyword"
}
}
# }
# },
# "settings" : {
# "index" : {
# 'max_result_window':"654321",
# "creation_date" : "1557847177882",
# "number_of_shards" : "5",
# "number_of_replicas" : "1",
# "uuid" : "i_b8CQ5ARw2Hpw3q0yFBGQ",
# "version" : {
# "created" : "6050099"
# },
# "provided_name" : "mifeng_search"
# }
# }
# }
# }
return es.indices.create(index=indexName,body=body)
'''
from elasticsearch_dsl import Document, Date, Completion, Keyword, Text, Integer,Binary
from elasticsearch_dsl.analysis import CustomAnalyzer as _CustomAnalyzer
from elasticsearch_dsl.connections import connections
# connections.create_connection(hosts=['58.20.137.43'])
connections._conns['default']=globals()['es']
class Type(DocType):
column_classify= Keyword()
channel= Keyword()#
datetime= Date()
source = Keyword()
url= Keyword()
title = Text(analyzer="ik_smart")
content = Text(analyzer="ik_smart")
description = Text(analyzer="ik_smart")
err = Binary()
main= Text(analyzer="ik_smart")
class Meta:
index = indexName
doc_type = "_doc"
Type.init(index=indexName)# 不加这个 出现 KeyError: '*'
def insertMulti_mifeng(data):
import elasticsearch
actions=[]
for i in data:
source={}
source['url']='http://'+i[0]
source['title']=i[1] or ( i[0]+i[2][:11] )
source['content']=i[2]
source['channel']=i[3]
source['column_classify']='网站'
source['datetime']=U.time()
actions.append(
{
'_id':i[0],
'_op_type': 'index',
'_index': "mifeng_search",
'_type': "_doc",
'_source': source
}
)
# if U.isLinux():
# es=elasticsearch.Elasticsearch(['http://127.0.0.1:9200'])
# else:
es=elasticsearch.Elasticsearch(['http://58.20.137.43:9200'])
return elasticsearch.helpers.bulk( es, actions )
def decode(b):
try:return b.decode('gb18030')
except:return T.detectAndDecode(b)
class StrV:
def __init__():
pass