mirror of https://github.com/apache/druid.git
Fix call to MemoryIntrospector in IndexerControllerContext. (#17066)
This was a logical conflict between #17057 and #17048.
This commit is contained in:
parent
fd6706cd6a
commit
a276871dd0
|
@ -206,7 +206,7 @@ public class IndexerControllerContext implements ControllerContext
|
|||
{
|
||||
// Assume tasks are symmetric: workers have the same number of processors available as a controller.
|
||||
// Create one partition per processor per task, for maximum parallelism.
|
||||
return memoryIntrospector.numProcessorsInJvm();
|
||||
return memoryIntrospector.numProcessingThreads();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue