python-pinot-dbapi / pinot-dbapi

Python DB-API and SQLAlchemy dialect for Pinot
MIT License
19 stars 33 forks source link

Added support to expose query response stat: timeUsedMs #87

Closed Jayesh-Asrani closed 7 months ago

Jayesh-Asrani commented 8 months ago

Added support to expose query response stat: timeUsedMs

Usage : To identify and monitor pinot response stats for performance benchmarking

E.g.

    curs = conn.cursor()
    curs.execute(query)
    timeUsedMs = curs.timeUsedMs