mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
speed up local mode object store get (#13052)
Co-authored-by: senlin.zsl <senlin.zsl@antfin.com>
This commit is contained in:
parent
81bfee79bc
commit
85f1716a1f
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ public class LocalModeObjectStore extends ObjectStore {
|
|||
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(LocalModeObjectStore.class);
|
||||
|
||||
private static final int GET_CHECK_INTERVAL_MS = 100;
|
||||
private static final int GET_CHECK_INTERVAL_MS = 1;
|
||||
|
||||
private final Map<ObjectId, NativeRayObject> pool = new ConcurrentHashMap<>();
|
||||
private final List<Consumer<ObjectId>> objectPutCallbacks = new ArrayList<>();
|
||||
|
|
Loading…
Add table
Reference in a new issue