funboost 49.6__py3-none-any.whl → 49.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of funboost might be problematic. Click here for more details.
- funboost/__init__.py +1 -1
- funboost/concurrent_pool/async_pool_executor.py +16 -15
- funboost/constant.py +19 -0
- funboost/consumers/base_consumer.py +30 -8
- funboost/consumers/faststream_consumer.py +1 -1
- funboost/consumers/http_consumer.py +12 -7
- funboost/consumers/kafka_consumer_manually_commit.py +0 -2
- funboost/consumers/tcp_consumer.py +11 -10
- funboost/consumers/udp_consumer.py +9 -6
- funboost/consumers/zeromq_consumer.py +18 -11
- funboost/core/exceptions.py +7 -0
- funboost/core/func_params_model.py +18 -7
- funboost/core/function_result_status_saver.py +15 -0
- funboost/core/msg_result_getter.py +51 -1
- funboost/core/serialization.py +28 -1
- funboost/factories/consumer_factory.py +1 -1
- funboost/factories/publisher_factotry.py +1 -1
- funboost/funboost_config_deafult.py +2 -2
- funboost/function_result_web/__pycache__/app.cpython-39.pyc +0 -0
- funboost/publishers/base_publisher.py +16 -2
- funboost/publishers/http_publisher.py +7 -1
- funboost/publishers/tcp_publisher.py +10 -8
- funboost/publishers/udp_publisher.py +8 -6
- funboost/publishers/zeromq_publisher.py +5 -1
- funboost/timing_job/timing_push.py +3 -1
- {funboost-49.6.dist-info → funboost-49.8.dist-info}/METADATA +165 -171
- {funboost-49.6.dist-info → funboost-49.8.dist-info}/RECORD +31 -31
- {funboost-49.6.dist-info → funboost-49.8.dist-info}/WHEEL +1 -1
- {funboost-49.6.dist-info → funboost-49.8.dist-info}/LICENSE +0 -0
- {funboost-49.6.dist-info → funboost-49.8.dist-info}/entry_points.txt +0 -0
- {funboost-49.6.dist-info → funboost-49.8.dist-info}/top_level.txt +0 -0
funboost/core/serialization.py
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import typing
|
|
2
|
-
|
|
2
|
+
import json
|
|
3
3
|
import orjson
|
|
4
|
+
import pickle
|
|
5
|
+
import ast
|
|
6
|
+
|
|
4
7
|
class Serialization:
|
|
5
8
|
@staticmethod
|
|
6
9
|
def to_json_str(dic:typing.Union[dict,str]):
|
|
@@ -14,3 +17,27 @@ class Serialization:
|
|
|
14
17
|
if isinstance(strx,dict):
|
|
15
18
|
return strx
|
|
16
19
|
return orjson.loads(strx)
|
|
20
|
+
|
|
21
|
+
@staticmethod
|
|
22
|
+
def find_can_not_json_serializable_keys(dic:dict)->typing.List[str]:
|
|
23
|
+
can_not_json_serializable_keys = []
|
|
24
|
+
dic = Serialization.to_dict(dic)
|
|
25
|
+
for k,v in dic.items():
|
|
26
|
+
if not isinstance(v,str):
|
|
27
|
+
try:
|
|
28
|
+
json.dumps(v)
|
|
29
|
+
except:
|
|
30
|
+
can_not_json_serializable_keys.append(k)
|
|
31
|
+
return can_not_json_serializable_keys
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class PickleHelper:
|
|
35
|
+
@staticmethod
|
|
36
|
+
def to_str(obj_x:typing.Any):
|
|
37
|
+
return str(pickle.dumps(obj_x)) # 对象pickle,转成字符串
|
|
38
|
+
|
|
39
|
+
@staticmethod
|
|
40
|
+
def to_obj(str_x:str):
|
|
41
|
+
return pickle.loads(ast.literal_eval(str_x)) # 不是从字节转成对象,是从字符串转,所以需要这样.
|
|
42
|
+
|
|
43
|
+
|
|
@@ -19,7 +19,7 @@ def get_consumer(boost_params: BoosterParams) -> AbstractConsumer:
|
|
|
19
19
|
regist_to_funboost(boost_params.broker_kind) # 动态注册中间件到框架是为了延迟导入,用户没安装不需要的第三方包不报错。
|
|
20
20
|
|
|
21
21
|
if boost_params.broker_kind not in broker_kind__publsiher_consumer_type_map:
|
|
22
|
-
raise ValueError(f'
|
|
22
|
+
raise ValueError(f'设置的中间件种类不正确,你设置的值是 {boost_params.broker_kind} ')
|
|
23
23
|
consumer_cls = broker_kind__publsiher_consumer_type_map[boost_params.broker_kind][1]
|
|
24
24
|
if not boost_params.consumer_override_cls:
|
|
25
25
|
return consumer_cls(boost_params)
|
|
@@ -31,7 +31,7 @@ def get_publisher(publisher_params: PublisherParams) -> AbstractPublisher:
|
|
|
31
31
|
broker_kind = publisher_params.broker_kind
|
|
32
32
|
regist_to_funboost(broker_kind) # 动态注册中间件到框架是为了延迟导入,用户没安装不需要的第三方包不报错。
|
|
33
33
|
if broker_kind not in broker_kind__publsiher_consumer_type_map:
|
|
34
|
-
raise ValueError(f'
|
|
34
|
+
raise ValueError(f'设置的中间件种类不正确,你设置的值是 {broker_kind} ')
|
|
35
35
|
publisher_cls = broker_kind__publsiher_consumer_type_map[broker_kind][0]
|
|
36
36
|
if not publisher_params.publisher_override_cls:
|
|
37
37
|
return publisher_cls(publisher_params)
|
|
@@ -44,7 +44,7 @@ class BrokerConnConfig(DataClassBase):
|
|
|
44
44
|
REDIS_PORT = 6379
|
|
45
45
|
REDIS_DB = 7 # redis消息队列所在db,请不要在这个db放太多其他键值对,以及方便你自己可视化查看你的redis db,框架里面有的功能会scan扫描unacked的键名,使用单独的db。
|
|
46
46
|
REDIS_DB_FILTER_AND_RPC_RESULT = 8 # 如果函数做任务参数过滤 或者使用rpc获取结果,使用这个db,因为这个db的键值对多,和redis消息队列db分开
|
|
47
|
-
REDIS_SSL = False
|
|
47
|
+
REDIS_SSL = False # 是否使用ssl加密,默认是False
|
|
48
48
|
REDIS_URL = f'{"rediss" if REDIS_SSL else "redis"}://{REDIS_USERNAME}:{REDIS_PASSWORD}@{REDIS_HOST}:{REDIS_PORT}/{REDIS_DB}'
|
|
49
49
|
|
|
50
50
|
NSQD_TCP_ADDRESSES = ['127.0.0.1:4150']
|
|
@@ -80,7 +80,7 @@ class BrokerConnConfig(DataClassBase):
|
|
|
80
80
|
MQTT_TCP_PORT = 1883
|
|
81
81
|
|
|
82
82
|
HTTPSQS_HOST = '127.0.0.1'
|
|
83
|
-
HTTPSQS_PORT =
|
|
83
|
+
HTTPSQS_PORT = 1218
|
|
84
84
|
HTTPSQS_AUTH = '123456'
|
|
85
85
|
|
|
86
86
|
NATS_URL = 'nats://192.168.6.134:4222'
|
|
Binary file
|
|
@@ -10,6 +10,7 @@ import atexit
|
|
|
10
10
|
import json
|
|
11
11
|
import logging
|
|
12
12
|
import multiprocessing
|
|
13
|
+
from re import S
|
|
13
14
|
import sys
|
|
14
15
|
import threading
|
|
15
16
|
import time
|
|
@@ -26,7 +27,7 @@ from funboost.core.loggers import develop_logger
|
|
|
26
27
|
# from nb_log import LoggerLevelSetterMixin, LoggerMixin
|
|
27
28
|
from funboost.core.loggers import LoggerLevelSetterMixin, FunboostFileLoggerMixin, get_logger
|
|
28
29
|
from funboost.core.msg_result_getter import AsyncResult, AioAsyncResult
|
|
29
|
-
from funboost.core.serialization import Serialization
|
|
30
|
+
from funboost.core.serialization import PickleHelper, Serialization
|
|
30
31
|
from funboost.core.task_id_logger import TaskIdLogger
|
|
31
32
|
from funboost.utils import decorators
|
|
32
33
|
from funboost.funboost_config_deafult import BrokerConnConfig, FunboostCommonConfig
|
|
@@ -212,7 +213,20 @@ class AbstractPublisher(LoggerLevelSetterMixin, metaclass=abc.ABCMeta, ):
|
|
|
212
213
|
msg = copy.deepcopy(msg) # 字典是可变对象,不要改变影响用户自身的传参字典. 用户可能继续使用这个传参字典.
|
|
213
214
|
msg, msg_function_kw, extra_params, task_id = self._convert_msg(msg, task_id, priority_control_config)
|
|
214
215
|
t_start = time.time()
|
|
215
|
-
|
|
216
|
+
|
|
217
|
+
can_not_json_serializable_keys = Serialization.find_can_not_json_serializable_keys(msg)
|
|
218
|
+
if can_not_json_serializable_keys:
|
|
219
|
+
pass
|
|
220
|
+
self.logger.warning(f'msg 中包含不能序列化的键: {can_not_json_serializable_keys}')
|
|
221
|
+
# raise ValueError(f'msg 中包含不能序列化的键: {can_not_json_serializable_keys}')
|
|
222
|
+
new_msg = copy.deepcopy(Serialization.to_dict(msg))
|
|
223
|
+
for key in can_not_json_serializable_keys:
|
|
224
|
+
new_msg[key] = PickleHelper.to_str(new_msg[key])
|
|
225
|
+
new_msg['extra']['can_not_json_serializable_keys'] = can_not_json_serializable_keys
|
|
226
|
+
msg_json = Serialization.to_json_str(new_msg)
|
|
227
|
+
else:
|
|
228
|
+
msg_json = Serialization.to_json_str(msg)
|
|
229
|
+
# print(msg_json)
|
|
216
230
|
decorators.handle_exception(retry_times=10, is_throw_error=True, time_sleep=0.1)(
|
|
217
231
|
self.concrete_realization_of_publish)(msg_json)
|
|
218
232
|
|
|
@@ -14,9 +14,15 @@ class HTTPPublisher(AbstractPublisher, ):
|
|
|
14
14
|
# noinspection PyAttributeOutsideInit
|
|
15
15
|
def custom_init(self):
|
|
16
16
|
self._http = PoolManager(10)
|
|
17
|
+
self._ip = self.publisher_params.broker_exclusive_config['host']
|
|
18
|
+
self._port = self.publisher_params.broker_exclusive_config['port']
|
|
19
|
+
self._ip_port_str = f'{self._ip}:{self._port}'
|
|
20
|
+
if self._port is None:
|
|
21
|
+
raise ValueError('please specify port')
|
|
22
|
+
|
|
17
23
|
|
|
18
24
|
def concrete_realization_of_publish(self, msg):
|
|
19
|
-
url = self.
|
|
25
|
+
url = self._ip_port_str + '/queue'
|
|
20
26
|
self._http.request('post', url, fields={'msg': msg})
|
|
21
27
|
|
|
22
28
|
def clear(self):
|
|
@@ -10,24 +10,26 @@ class TCPPublisher(AbstractPublisher, ):
|
|
|
10
10
|
使用tcp作为中间件,不支持持久化,支持分布式
|
|
11
11
|
"""
|
|
12
12
|
|
|
13
|
-
BUFSIZE = 10240
|
|
14
|
-
|
|
15
13
|
# noinspection PyAttributeOutsideInit
|
|
16
14
|
def custom_init(self):
|
|
17
|
-
|
|
18
|
-
pass
|
|
15
|
+
self._bufsize = self.publisher_params.broker_exclusive_config['bufsize']
|
|
19
16
|
|
|
20
17
|
# noinspection PyAttributeOutsideInit
|
|
21
18
|
def concrete_realization_of_publish(self, msg):
|
|
22
19
|
if not hasattr(self, '_tcp_cli_sock'):
|
|
23
|
-
ip__port_str = self.queue_name.split(':')
|
|
24
|
-
ip_port = (ip__port_str[0], int(ip__port_str[1]))
|
|
20
|
+
# ip__port_str = self.queue_name.split(':')
|
|
21
|
+
# ip_port = (ip__port_str[0], int(ip__port_str[1]))
|
|
22
|
+
self._ip = self.publisher_params.broker_exclusive_config['host']
|
|
23
|
+
self._port = self.publisher_params.broker_exclusive_config['port']
|
|
24
|
+
self.__ip_port = (self._ip, self._port)
|
|
25
|
+
if self._port is None:
|
|
26
|
+
raise ValueError('please specify port')
|
|
25
27
|
tcp_cli_sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
26
|
-
tcp_cli_sock.connect(
|
|
28
|
+
tcp_cli_sock.connect(self.__ip_port)
|
|
27
29
|
self._tcp_cli_sock = tcp_cli_sock
|
|
28
30
|
|
|
29
31
|
self._tcp_cli_sock.send(msg.encode())
|
|
30
|
-
self._tcp_cli_sock.recv(self.
|
|
32
|
+
self._tcp_cli_sock.recv(self._bufsize)
|
|
31
33
|
|
|
32
34
|
def clear(self):
|
|
33
35
|
pass # udp没有保存消息
|
|
@@ -10,19 +10,21 @@ class UDPPublisher(AbstractPublisher, ):
|
|
|
10
10
|
使用udp作为中间件,不支持持久化,支持分布式
|
|
11
11
|
"""
|
|
12
12
|
|
|
13
|
-
BUFSIZE = 10240
|
|
14
|
-
|
|
15
13
|
# noinspection PyAttributeOutsideInit
|
|
16
14
|
def custom_init(self):
|
|
17
|
-
|
|
15
|
+
self._bufsize = self.publisher_params.broker_exclusive_config['bufsize']
|
|
18
16
|
self.__udp_client = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
19
|
-
|
|
20
|
-
self.
|
|
17
|
+
self._ip = self.publisher_params.broker_exclusive_config['host']
|
|
18
|
+
self._port = self.publisher_params.broker_exclusive_config['port']
|
|
19
|
+
self.__ip_port = (self._ip, self._port)
|
|
20
|
+
if self._port is None:
|
|
21
|
+
raise ValueError('please specify port')
|
|
21
22
|
self.__udp_client.connect(self.__ip_port)
|
|
22
23
|
|
|
24
|
+
# noinspection PyAttributeOutsideInit
|
|
23
25
|
def concrete_realization_of_publish(self, msg):
|
|
24
26
|
self.__udp_client.send(msg.encode('utf-8'), )
|
|
25
|
-
self.__udp_client.recv(self.
|
|
27
|
+
self.__udp_client.recv(self._bufsize)
|
|
26
28
|
|
|
27
29
|
def clear(self):
|
|
28
30
|
pass # udp没有保存消息
|
|
@@ -10,9 +10,13 @@ class ZeroMqPublisher(AbstractPublisher):
|
|
|
10
10
|
zeromq 中间件的发布者,zeromq基于socket代码,不会持久化,且不需要安装软件。
|
|
11
11
|
"""
|
|
12
12
|
def custom_init(self):
|
|
13
|
+
self._port = self.publisher_params.broker_exclusive_config['port']
|
|
14
|
+
if self._port is None:
|
|
15
|
+
raise ValueError('please specify port')
|
|
16
|
+
|
|
13
17
|
context = ZmqImporter().zmq.Context()
|
|
14
18
|
socket = context.socket(ZmqImporter().zmq.REQ)
|
|
15
|
-
socket.connect(f"tcp://localhost:{int(self.
|
|
19
|
+
socket.connect(f"tcp://localhost:{int(self._port)}")
|
|
16
20
|
self.socket =socket
|
|
17
21
|
self.logger.warning('框架使用 zeromq 中间件方式,必须先启动消费者(消费者会顺便启动broker) ,只有启动了服务端才能发布任务')
|
|
18
22
|
|
|
@@ -146,7 +146,7 @@ if __name__ == '__main__':
|
|
|
146
146
|
id='interval_job1'
|
|
147
147
|
)
|
|
148
148
|
|
|
149
|
-
# 方式3:使用cron
|
|
149
|
+
# 方式3:使用cron表达式定时执行,周期运行
|
|
150
150
|
ApsJobAdder(sum_two_numbers, job_store_kind='redis').add_push_job(
|
|
151
151
|
trigger='cron',
|
|
152
152
|
day_of_week='*',
|
|
@@ -156,5 +156,7 @@ if __name__ == '__main__':
|
|
|
156
156
|
kwargs={"x": 50, "y": 60},
|
|
157
157
|
replace_existing=True,
|
|
158
158
|
id='cron_job1')
|
|
159
|
+
|
|
160
|
+
|
|
159
161
|
|
|
160
162
|
ctrl_c_recv() # 启动了守护线程的定时器,一定要阻止主线程退出。 你可以代码最末尾加这个 ctrl_c_recv() 或者加个 while 1:time.sleep(10)
|