Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/docs/source/src/python/polars-cloud/query-profile.py
7889 views
1
"""
2
# --8<-- [start:execute]
3
result = pdsh_q3(customer, lineitem, orders).remote(ctx).distributed().execute()
4
# --8<-- [end:execute]
5
6
# --8<-- [start:await_profile]
7
result.await_profile().data
8
# --8<-- [end:await_profile]
9
10
# --8<-- [start:await_summary]
11
result.await_profile().summary
12
# --8<-- [end:await_summary]
13
"""
14
15