@@ -168,6 +168,7 @@ def __init__(
168
168
session : int = None ,
169
169
username : str = None ,
170
170
password : str = None ,
171
+ max_workers : int = 8 ,
171
172
config : str = None ,
172
173
):
173
174
"""Connects to the vineyard IPC socket and RPC socket.
@@ -211,6 +212,8 @@ def __init__(
211
212
is enabled.
212
213
password: Optional, the required password of vineyardd when authentication
213
214
is enabled.
215
+ max_workers: Optional, the maximum number of threads that can be used to
216
+ asynchronously put objects to vineyard. Default is 8.
214
217
config: Optional, can either be a path to a YAML configuration file or
215
218
a path to a directory containing the default config file
216
219
`vineyard-config.yaml`. Also, the environment variable
@@ -290,6 +293,9 @@ def __init__(
290
293
except VineyardException :
291
294
continue
292
295
296
+ self ._max_workers = max_workers
297
+ self ._put_thread_pool = None
298
+
293
299
self ._spread = False
294
300
self ._compression = True
295
301
if self ._ipc_client is None and self ._rpc_client is None :
@@ -347,6 +353,13 @@ def rpc_client(self) -> RPCClient:
347
353
assert self ._rpc_client is not None , "RPC client is not available."
348
354
return self ._rpc_client
349
355
356
+ @property
357
+ def put_thread_pool (self ) -> ThreadPoolExecutor :
358
+ """Lazy initialization of the thread pool for asynchronous put."""
359
+ if self ._put_thread_pool is None :
360
+ self ._put_thread_pool = ThreadPoolExecutor (max_workers = self ._max_workers )
361
+ return self ._put_thread_pool
362
+
350
363
def has_ipc_client (self ):
351
364
return self ._ipc_client is not None
352
365
@@ -820,8 +833,7 @@ def get(
820
833
):
821
834
return get (self , object_id , name , resolver , fetch , ** kwargs )
822
835
823
- @_apply_docstring (put )
824
- def put (
836
+ def _put_internal (
825
837
self ,
826
838
value : Any ,
827
839
builder : Optional [BuilderContext ] = None ,
@@ -858,6 +870,32 @@ def put(
858
870
self .compression = previous_compression_state
859
871
return put (self , value , builder , persist , name , ** kwargs )
860
872
873
+ @_apply_docstring (put )
874
+ def put (
875
+ self ,
876
+ value : Any ,
877
+ builder : Optional [BuilderContext ] = None ,
878
+ persist : bool = False ,
879
+ name : Optional [str ] = None ,
880
+ as_async : bool = False ,
881
+ ** kwargs ,
882
+ ):
883
+ if as_async :
884
+ def _default_callback (future ):
885
+ try :
886
+ result = future .result ()
887
+ print (f"Successfully put object { result } " , flush = True )
888
+ except Exception as e :
889
+ print (f"Failed to put object: { e } " , flush = True )
890
+
891
+ thread_pool = self .put_thread_pool
892
+ result = thread_pool .submit (
893
+ self ._put_internal , value , builder , persist , name , ** kwargs
894
+ )
895
+ result .add_done_callback (_default_callback )
896
+ return result
897
+ return self ._put_internal (value , builder , persist , name , ** kwargs )
898
+
861
899
@contextlib .contextmanager
862
900
def with_compression (self , enabled : bool = True ):
863
901
"""Disable compression for the following put operations."""
0 commit comments