Use for questions related to nodes that are used to actually execute a distributed job/program/application.
I have a fixed thread pool that I submit tasks to (limited to 5 threads). How can I find out which …
java multithreading threadpool executorservice executorsI have the following code which fires hiveContext.sql() most of the time. My task is I want to create …
memory apache-spark apache-spark-sql yarn executorsI'm looking for a Java Executor that allows me to specify throttling/throughput/pacing limitations, for example, no more than …
java multithreading executorsI have this code: ScheduledExecutorService scheduledExecutor; ..... ScheduledFuture<?> result = scheduledExecutor.scheduleWithFixedDelay( new SomethingDoer(),0, measurmentPeriodMillis, TimeUnit.MILLISECONDS); After some event …
java executorsI am using an ExecutorService to implement a 3-thread pool, and CountDownLatch to monitor the completion of all threads, for …
java multithreading executorservice executorsSpark architecture is entirely revolves around the concept of executors and cores. I would like to see practically how many …
python scala hadoop apache-spark executorsIn spark2.0, I have two dataframes and I need to first join them and do a reduceByKey to aggregate the …
apache-spark out-of-memory executor executorsWhat is the low-level difference among using: ForkJoinPool = new ForkJoinPool(X); and ExecutorService ex = Executors.neWorkStealingPool(X); Where X is …
multithreading executorservice fork-join executors forkjoinpoolMy understanding of a Producer-Consumer pattern is that it could be implemented using a queue shared between the producer and …
java multithreading concurrency producer-consumer executorsI...really don't know how to word the title better. But basically, what I have is a thread pool with …
java threadpool future executors