javax.annotation.concurrent.GuardedBy Scala Examples
The following examples show how to use javax.annotation.concurrent.GuardedBy.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
Example 1
Source File: StorageMemoryPool.scala From drizzle-spark with Apache License 2.0 | 5 votes |
package org.apache.spark.memory import javax.annotation.concurrent.GuardedBy import org.apache.spark.internal.Logging import org.apache.spark.storage.BlockId import org.apache.spark.storage.memory.MemoryStore def freeSpaceToShrinkPool(spaceToFree: Long): Long = lock.synchronized { val spaceFreedByReleasingUnusedMemory = math.min(spaceToFree, memoryFree) val remainingSpaceToFree = spaceToFree - spaceFreedByReleasingUnusedMemory if (remainingSpaceToFree > 0) { // If reclaiming free memory did not adequately shrink the pool, begin evicting blocks: val spaceFreedByEviction = memoryStore.evictBlocksToFreeSpace(None, remainingSpaceToFree, memoryMode) // When a block is released, BlockManager.dropFromMemory() calls releaseMemory(), so we do // not need to decrement _memoryUsed here. However, we do need to decrement the pool size. spaceFreedByReleasingUnusedMemory + spaceFreedByEviction } else { spaceFreedByReleasingUnusedMemory } } }
Example 2
Source File: UninterruptibleThread.scala From drizzle-spark with Apache License 2.0 | 5 votes |
package org.apache.spark.util import javax.annotation.concurrent.GuardedBy override def interrupt(): Unit = { uninterruptibleLock.synchronized { if (uninterruptible) { shouldInterruptThread = true } else { super.interrupt() } } } }
Example 3
Source File: UninterruptibleThread.scala From sparkoscope with Apache License 2.0 | 5 votes |
package org.apache.spark.util import javax.annotation.concurrent.GuardedBy override def interrupt(): Unit = { uninterruptibleLock.synchronized { if (uninterruptible) { shouldInterruptThread = true } else { super.interrupt() } } } }
Example 4
Source File: UninterruptibleThread.scala From multi-tenancy-spark with Apache License 2.0 | 5 votes |
package org.apache.spark.util import javax.annotation.concurrent.GuardedBy override def interrupt(): Unit = { uninterruptibleLock.synchronized { if (uninterruptible) { shouldInterruptThread = true } else { super.interrupt() } } } }
Example 5
Source File: UninterruptibleThread.scala From Spark-2.3.1 with Apache License 2.0 | 5 votes |
package org.apache.spark.util import javax.annotation.concurrent.GuardedBy override def interrupt(): Unit = { uninterruptibleLock.synchronized { if (uninterruptible) { shouldInterruptThread = true } else { super.interrupt() } } } }