Parfeval with backgorund pool cannot read XML file

조회 수: 6 (최근 30일)
Michaela Konstantinou
Michaela Konstantinou 2024년 8월 1일
편집: Madheswaran 2024년 8월 6일
Inside the parfeval I am using xml_read with an XML path. This function works properly with a parpool object but not with a backgorundPool
  댓글 수: 2
Animesh
Animesh 2024년 8월 1일
Can you attach a code snippet for better understanding of the problem?

댓글을 달려면 로그인하십시오.

답변 (1개)

Madheswaran
Madheswaran 2024년 8월 6일
편집: Madheswaran 2024년 8월 6일
Hi Michaela,
I am assuming you are using MATLAB built-in ‘xmlread’ (https://mathworks.com/help/matlab/ref/xmlread.html).
As it is seen from the documentation, ‘backgroundPool’ is a thread based parallel pool.
As you might have seen in the error message, ‘xmlread’ is unfortunately not supported in thread-based workers because of the use of ‘javaMethod’ function in its implementation.
You can view the errors of scheduled function, using ‘parallel.Future’ object, like mentioned below.
>> f = parfeval(backgroundPool, @xmlread, 1, xmlFilePath);
>> f.Error
ans =
ParallelException with properties:
identifier: 'parallel:threadpool:DisallowedBuiltin'
message: 'Use of function javaMethod is not supported on a thread-based worker. Use alternatives supported on the background pool.'
cause: {}
remotecause: {[1×1 MException]}
stack: [2×1 struct]
Correction: []
Please note that if a function supports the thread based environment, it would be explicitly mentioned in the Extended Capabilities section of the documentation. Since nothing is mentioned in the documentation page of ‘xmlread’, it is implied that the function is not supported in the thread-based environment.
Hope this helps!

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by