Details
-
Bug
-
Status: Patch Available
-
Major
-
Resolution: Unresolved
-
3.0.0-alpha4
-
None
-
None
Description
There are couple of issues in KMSClientProvider#ValueQueue.
1.
private final LoadingCache<String, LinkedBlockingQueue<E>> keyQueues; // Stripped rwlocks based on key name to synchronize the queue from // the sync'ed rw-thread and the background async refill thread. private final List<ReadWriteLock> lockArray = new ArrayList<>(LOCK_ARRAY_SIZE);
It hashes the key name into 16 buckets.
In the code chunk below,
public List<E> getAtMost(String keyName, int num) throws IOException, ExecutionException { ... ... readLock(keyName); E val = keyQueue.poll(); readUnlock(keyName); ... } private void submitRefillTask(final String keyName, final Queue<E> keyQueue) throws InterruptedException { ... ... writeLock(keyName); // It holds the write lock while the key is being asynchronously fetched. So the read requests for all the keys that hashes to this bucket will essentially be blocked. try { if (keyQueue.size() < threshold && !isCanceled()) { refiller.fillQueueForKey(name, keyQueue, cacheSize - keyQueue.size()); } ... } finally { writeUnlock(keyName); } } }
According to above code chunk, if two keys (lets say key1 and key2) hashes to the same bucket (between 1 and 16), then if key1 is asynchronously being refetched then all the getKey for key2 will be blocked.
2. Due to stripped rw locks, the asynchronous behavior of refill keys is now synchronous to other handler threads.
I understand that locks were added so that we don't kick off multiple asynchronous refilling thread for the same key.
Attachments
Attachments
Issue Links
- is broken by
-
HDFS-11210 Enhance key rolling to guarantee new KeyVersion is returned from generateEncryptedKeys after a key is rolled
- Resolved