proxystore_ex.plugins.distributed¶
Custom ProxyStore client for Dask Distributed.
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.
Warning
The custom Dask Client
is an experimental feature and the API may change in the future. If you
encounter unexpected behavior, please
open a bug report.
Using this custom client is as easy as changing your import and passing two extra arguments to the constructor.
- Change the import of
Client
fromdask.distributed
toproxystore.ex.plugins.distributed
. - Pass your
Store
and threshold object size. Serialized objects larger than the threshold size in bytes will be serialized using the store you provide and pass-by-proxy.
The custom Client
behaves
exactly as a normal Dask client when ps_store
is None
. But when
ProxyStore is configured, function args, kwargs, and results from
passed to or from Client.submit()
and
Client.map()
will be scanned and proxied as
necessary based on their size.
When invoking a function, you can alter this behavior by passing
proxy_args=False
and/or proxy_result=False
to disable proxying for that
specific function submission to the scheduler.
Warning
There are some edge cases to be aware of when using the automatic
proxying. Please read the documentation for
Client.submit()
and Client.map()
for
the most up to date details.
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. However, proxied keyword arguments shared across all functions will not be evict if they were proxied.
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
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 250 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 |
|
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
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 368 369 370 371 372 373 374 375 376 377 378 379 380 381 |
|
proxy_by_size
¶
proxy_by_size(
x: T,
store: Store[ConnectorT],
threshold: int | None = None,
evict: bool = True,
) -> T | Proxy[T]
Serialize an object and proxy it if the object is larger enough.
Parameters:
-
x
(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:
Source code in proxystore_ex/plugins/distributed.py
proxy_iterable
¶
proxy_iterable(
iterable: Iterable[Any],
store: Store[ConnectorT],
threshold: int | None = None,
evict: bool = True,
) -> tuple
Proxy values in an iterable larger than the threshold size.
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 proxies.
Source code in proxystore_ex/plugins/distributed.py
proxy_mapping
¶
proxy_mapping(
mapping: Mapping[T, Any],
store: Store[ConnectorT],
threshold: int | None = None,
evict: bool = True,
) -> dict[T, Any]
Proxy values in a mapping larger than the threshold size.
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 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 | Proxy[T]]
Proxy task wrapper.
Wraps a task function to proxy returns 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 | Proxy[T]]
–Callable with the same shape as
func
but that returns either the original return type or a factory of the return type which can be used to construct a proxy.