proxystore_ex.plugins.distributed¶
Custom ProxyStore client for Dask Distributed.
Future ¶
Bases: Future
Custom future which returns results as proxies as necessary.
The ProxyStore Dask Client
can return large function results as a
StoreFactory instance which
will return the actual function result when invoked. This custom
Dask Future will wrap result factories in a
Proxy.
result() ¶
Wait until computation completes, gather result to local process.
Source code in proxystore_ex/plugins/distributed.py
Client ¶
Bases: Client
Dask Distributed Client with ProxyStore support.
This is a wrapper around dask.distributed.Client
that proxies function arguments and return values using a provided
Store and threshold size.
Parameters:
-
args(Any, default:()) –Positional arguments to pass to
dask.distributed.Client. -
ps_store(Store[Any] | None, default:None) –Store to use when proxying objects.
-
ps_threshold(int, default:100000) –Object size threshold in bytes. Objects larger than this threshold will be proxied.
-
kwargs(Any, default:{}) –Keyword arguments to pass to
dask.distributed.Client.
Source code in proxystore_ex/plugins/distributed.py
map() ¶
map(
func,
*iterables,
key=None,
workers=None,
retries=None,
resources=None,
priority=0,
allow_other_workers=False,
fifo_timeout="100 ms",
actor=False,
actors=False,
pure=True,
batch_size=None,
proxy_args: bool = True,
proxy_result: bool = True,
**kwargs
)
Map a function on a sequence of arguments.
This has the same behavior as Client.map()
but arguments and return values larger than the ProxyStore threshold
size will be passed-by-proxy.
This method adds the proxy_args and proxy_result flags (default
True) which can be used to disable proxying of function arguments
or return values, respectively, for a single invocation.
Note
Proxied arguments will be evicted from the store when the future containing the result of the function application is set.
Warning
Unless the function is explicitly marked as not pure, a function result that gets proxied will not be automatically evicted. This is because Dask caches results of pure functions to avoid duplicate computation so it is not guaranteed to be safe to evict the function result once consumed by the client code.
Source code in proxystore_ex/plugins/distributed.py
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 | |
submit() ¶
submit(
func,
*args,
key=None,
workers=None,
resources=None,
retries=None,
priority=0,
fifo_timeout="100 ms",
allow_other_workers=False,
actor=False,
actors=False,
pure=True,
proxy_args: bool = True,
proxy_result: bool = True,
**kwargs
)
Submit a function application to the scheduler.
This has the same behavior as
Client.submit() but arguments and
return values larger than the ProxyStore threshold size will be
passed-by-proxy.
This method adds the proxy_args and proxy_result flags (default
True) which can be used to disable proxying of function arguments
or return values, respectively, for a single invocation.
Note
Proxied arguments will be evicted from the store when the future containing the result of the function application is set.
Warning
Unless the function is explicitly marked as not pure, a function result that gets proxied will not be automatically evicted. This is because Dask caches results of pure functions to avoid duplicate computation so it is not guaranteed to be safe to evict the function result once consumed by the client code.
Source code in proxystore_ex/plugins/distributed.py
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 | |
pseudoproxy_by_size() ¶
pseudoproxy_by_size(
x: T | Proxy[T],
store: Store[ConnectorT],
threshold: int | None = None,
evict: bool = True,
) -> T | StoreFactory[ConnectorT, T]
Serialize an object and proxy it if the object is larger enough.
Parameters:
-
x(T | Proxy[T]) –Object to possibly proxy.
-
store(Store[ConnectorT]) –Store to use to proxy objects.
-
threshold(int | None, default:None) –Threshold size in bytes. If
None, the object will not be proxied. -
evict(bool, default:True) –Evict flag value to pass to created proxies.
Returns:
-
T | StoreFactory[ConnectorT, T]–The input object
xifxis smaller thanthresholdotherwise aStoreFactorywhich can be used to initialize aProxy.
Source code in proxystore_ex/plugins/distributed.py
pseudoproxy_iterable() ¶
pseudoproxy_iterable(
iterable: Iterable[Any],
store: Store[ConnectorT],
threshold: int | None = None,
evict: bool = True,
) -> tuple
Psuedoproxy values in an iterable than the threshold size.
This function is "pseudo" because values larger than the threshold size are technically proxied, but the proxies are discarded and only the internal factory is returned. This is because Dask does not play nicely with serializing proxy types so we pass the factories instead and reconstruct the proxies later.
Parameters:
-
iterable(Iterable[Any]) –Iterable containing possibly large values to proxy.
-
store(Store[ConnectorT]) –Store to use to proxy objects.
-
threshold(int | None, default:None) –Threshold size in bytes. If
None, no objects will b proxied. -
evict(bool, default:True) –Evict flag value to pass to created proxies.
Returns:
-
tuple–Tuple containing the objects yielded by the iterable with objects larger than the threshold size replaced with factories which can later be used to construct proxies.
Source code in proxystore_ex/plugins/distributed.py
pseudoproxy_mapping() ¶
pseudoproxy_mapping(
mapping: Mapping[T, Any],
store: Store[ConnectorT],
threshold: int | None = None,
evict: bool = True,
) -> dict[T, Any]
Psuedoproxy values in a mapping larger than the threshold size.
This function is "pseudo" because values larger than the threshold size are technically proxied, but the proxies are discarded and only the internal factory is returned. This is because Dask does not play nicely with serializing proxy types so we pass the factories instead and reconstruct the proxies later.
Parameters:
-
mapping(Mapping[T, Any]) –Mapping containing possibly large values to proxy.
-
store(Store[ConnectorT]) –Store to use to proxy objects.
-
threshold(int | None, default:None) –Threshold size in bytes. If
None, no objects will b proxied. -
evict(bool, default:True) –Evict flag value to pass to created proxies.
Returns:
-
dict[T, Any]–Mapping containing the same keys and values as the input mapping but objects larger than the threshold size are replaced with factories which can be later used to construct proxies.
Source code in proxystore_ex/plugins/distributed.py
proxy_task_wrapper() ¶
proxy_task_wrapper(
func: Callable[P, T],
store: Store[ConnectorT],
threshold: int | None = None,
evict: bool = True,
) -> Callable[P, T | StoreFactory[ConnectorT, T]]
Proxy task wrapper.
Wraps a task function with mechanisms to translate StoreFactory types to Proxy types initialized with the factory and to proxy return values larger than a threshold.
Parameters:
-
func(Callable[P, T]) –Function to wrap.
-
store(Store[ConnectorT]) –Store to use to proxy the result.
-
threshold(int | None, default:None) –Threshold size in bytes.
-
evict(bool, default:True) –Evict flag value to pass to the created proxy.
Returns:
-
Callable[P, T | StoreFactory[ConnectorT, T]]–Callable with the same shape as
funcbut that returns either the original return type or a factory of the return type which can be used to construct a proxy.