- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想知道为什么我的基于 pyzmq
和 protobuf
的消息传递 ping-pong 比预期的要慢得多,所以我使用 cProfile
来检查您在本文末尾找到的脚本。
protoc --python_out=. rpc.proto
python -m cProfile -o rpc.pstats ./test_rpc.py
返回
3.604 sec for 10000 messages, 360.41us/m, 2774 m/s
和
python -m pstats rpc.pstats
rpc.pstats% sort tottime
rpc.pstats% stats 10
给我(仅针对客户端进程):
619163 function calls (618374 primitive calls) in 3.779 seconds
Ordered by: internal time
List reduced from 580 to 30 due to restriction <30>
ncalls tottime percall cumtime percall filename:lineno(function)
10002 2.658 0.000 2.658 0.000 {method 'recv' of 'zmq.backend.cython.socket.Socket' objects}
10002 0.088 0.000 0.088 0.000 {method 'send' of 'zmq.backend.cython.socket.Socket' objects}
10001 0.060 0.000 3.654 0.000 ./test_rpc.py:36(rpc_set)
10002 0.058 0.000 3.457 0.000 ./test_rpc.py:32(zmq_reply)
80016 0.056 0.000 0.056 0.000 {method 'write' of 'cStringIO.StringO' objects}
10002 0.056 0.000 0.424 0.000 /usr/lib/python2.7/site-packages/google/protobuf/internal/python_message.py:781(InternalSerialize)
30004 0.054 0.000 0.137 0.000 /usr/lib/python2.7/site-packages/google/protobuf/internal/python_message.py:453(setter)
20002 0.051 0.000 0.058 0.000 /usr/lib/python2.7/site-packages/google/protobuf/internal/type_checkers.py:113(CheckValue)
10002 0.050 0.000 0.055 0.000 /usr/lib/python2.7/site-packages/google/protobuf/internal/python_message.py:839(IsInitialized)
10002 0.050 0.000 0.148 0.000 /usr/lib/python2.7/site-packages/google/protobuf/internal/python_message.py:577(ListFields)
...
奇怪的是:pyzmq
的recv()
/send()
似乎消耗了大约 2700 毫秒 而 protobuf
只消耗大约 250 毫秒。
但这不是真的!
如果我省略 protobuf
部分,则同一进程在同一系统上仅消耗大约 1350 毫秒 (-65%)。 (我没有添加 pyzmq
-only 脚本,但您可以只发送几个字节而不是序列化数据)
这些额外的 65% 几乎 100% 归功于 pyzmq
,它们实际上被 protobuf
消耗了。
问题:这是怎么回事?在这种情况下,如何以指向 protobuf
而不是 pyzmq
的方式分析我的脚本?
为了重现日期,您必须安装 protobuf-python
和 python-zmq
。以下是用于此实验的脚本:
test_rpc.py:
import sys
import time
import threading
import subprocess
import zmq
import rpc_pb2 # must be generated first
if '--server' in sys.argv:
print('zmq_protobuf_rpc_server')
context = zmq.Context()
socket = context.socket(zmq.REP)
socket.bind("tcp://*:5556")
request = rpc_pb2.rpc_request()
reply = rpc_pb2.rpc_reply()
while True:
request.ParseFromString(socket.recv())
if request.type == rpc_pb2.rpc_request.SET:
value = request.value
elif request.type == rpc_pb2.rpc_request.GET:
reply.value = "value"
socket.send(reply.SerializeToString())
if request.type == rpc_pb2.rpc_request.QUIT:
break
else:
def zmq_reply(req_msg, rep_msg, socket):
socket.send(req_msg.SerializeToString())
rep_msg.ParseFromString(socket.recv())
def rpc_set(req_msg, rep_msg, socket, name, value):
req_msg.type = rpc_pb2.rpc_request.SET
req_msg.name = name
req_msg.value = value
zmq_reply(req_msg, rep_msg, socket)
def rpc_get(req_msg, rep_msg, socket, name):
req_msg.type = rpc_pb2.rpc_request.GET
req_msg.name = name
zmq_reply(req_msg, rep_msg, socket)
return rep_msg.value
print('zmq_protobuf_rpc')
p = subprocess.Popen([sys.executable, '-u', __file__, '--server'])
context = zmq.Context()
socket = context.socket(zmq.REQ)
socket.connect("tcp://127.0.0.1:5556") # IPC would be a bit faster
request = rpc_pb2.rpc_request()
reply = rpc_pb2.rpc_reply()
# wait for the server to be responsive
rpc_set(request, reply, socket, 'hello', 'hello')
N = 10000
t = time.time()
for i in range(N):
rpc_set(request, reply, socket, 'name', str(i))
t = time.time() - t
print("%.3f sec for %d messages, %.2fus/m, %d m/s"
% (t, N, t / N * 1000000, N/t))
request.type = rpc_pb2.rpc_request.QUIT
zmq_reply(request, reply, socket)
p.wait()
rpc.proto:
package rpc;
message rpc_request {
enum RpcType {GET = 0; SET = 1; QUIT = 2; }
required RpcType type = 1;
required string name = 2;
optional string value = 3; }
message rpc_reply {
optional string value = 3; }
最佳答案
您想测量 process_time 而不是默认测量的 system_time。这是通过为您的探查器使用自定义计时器功能来完成的,例如时间.process_time()。
例子:
import cProfile
import time
import pstats
import io
pr = cProfile.Profile(time.process_time)
pr.enable()
time.sleep(1)
for i in range(0, 1000):
print("hello world")
time.sleep(1)
pr.disable()
s = io.StringIO()
sortby = 'cumulative'
ps = pstats.Stats(pr, stream=s).sort_stats(sortby)
ps.print_stats()
print(s.getvalue())
print 函数消耗了大部分 process_time,统计数据将显示这一点。如果您不将 time.process_time() 作为计时器函数传递,统计信息将显示 sleep 函数使用了大部分时间。
关于python - cProfile 是在背叛我吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29950985/
如何从一个函数中调用 cProfile,使用它来调用和分析另一个函数? 我有一个函数 start(),它是从我的网页调用的(使用 Django)。在此函数中,我放置了 cProfile 调用: cPr
我正在尝试在我的 python 脚本上运行 cProfile,我关心的是运行所需的总时间。有没有办法修改 python -m cProfile myscript.py 所以输出只是总时间? 最佳答案
对于初学者的问题很抱歉,但我无法弄清楚 cProfile(我真的是 Python 的新手) 我可以通过我的终端运行它: python -m cProfile myscript.py 但我需要在网络服务
我目前正在学习如何使用 cProfile,我有一些疑问。 我目前正在尝试分析以下脚本: import time def fast(): print("Fast!") def slow():
基本上,当我运行 cProfile 模块时,它会跳过一些函数,而普通的配置文件模块会产生此错误。 The debugged program raised the exception unhan
我附上了 Python 脚本的 cProfile 结果的屏幕截图。我知道第二行是指 arcpy 站点包中的地理处理函数。但是,我不清楚第一行指的是什么: C:\Program Files (x86)\
我想知道为什么我的基于 pyzmq 和 protobuf 的消息传递 ping-pong 比预期的要慢得多,所以我使用 cProfile 来检查您在本文末尾找到的脚本。 protoc --python
我正在尝试使用 cProfile 来分析一些 python 代码。我相信我需要使用 cProfile.runcall(),而不是 cProfile.run(),因为我要运行的方法是 self.func
我正在尝试用 python 分析我的项目,但内存不足。 我的项目本身相当占用内存,但在 cProfile 下运行时,即使是半大小的运行也会因“MemoryError”而终止。 进行较小的运行并不是一个
我正在尝试使用 cProfile.run 分析嵌套函数。我知道 cProfile 可能与我调用它的范围不在同一范围内运行,但我不太确定实现这一目标的惯用方法是什么。这是一个 MVCE: def foo
我有一个带有 @classmethod 的基类,它充当许多后代类中大量方法的装饰器。 class BaseClass(): @classmethod def some_decorato
我在一些代码上运行了 cprofile,除其他外,它产生了几个线程来完成大部分工作。当我查看分析的输出时,我没有看到线程内调用的所有函数的日志记录。我确定他们被调用了,因为他们做的事情很容易看到,例如
我开始使用 cProfile 来分析我的 python 脚本。我注意到一些非常奇怪的事情。 当我使用 time 来测量我的脚本的运行时间时,它需要 4.3 秒。 当我使用 python -m cPro
我试图使用 cProfile 对我的代码进行性能测试,但遗憾的是无论我如何尝试,cProfile 都无法正常运行。这是我所做的: import cProfile cProfile.run('addNu
我在 mymodule 中有这些文件 mymodule ├── config.py ├── __init__.py └── lib.py 有了这个简单的内容: # config.py NAME = "
我在一个名为 bot4CA.py 的模块上使用 cProfile,所以在控制台中我输入: python -m cProfile -o thing.txt bot4CA.py 模块运行并退出后,它会创建
我正在使用 cProfile 分析一个 Python 应用程序,我发现它的输出非常冗长。我正在使用此代码创建配置文件并将其可视化: PYTHONPATH=. \ python3 \ -
cProfile 在输出中显示了很多内置函数调用。我们可以将输出限制为我编写的代码吗?因此,在下面的示例中,我能否仅看到来自 testrun 的行或来自驻留在同一脚本中的 testrun() 调用的函
我从我的 cProfile 输出中获得了大约 300 个条目,每次使用它时都必须向上滚动很长时间。 有没有办法让 cProfile 只打印前 10 行之类的东西? 最佳答案 您可以按“累积”排序并使用
另一方面,timeit 运行代码 1,000,000 次,以获得与其他代码的合理渐近比较。 cProfile 仅运行代码一次,结果中只有 3 个小数位 (0.000),不足以了解完整情况。 你会得到如
我是一名优秀的程序员,十分优秀!