@InterfaceAudience.Private public class Leases extends HasThread
These external clients hold resources in the server class. Those resources need to be released if the external client fails to send a heartbeat after some interval of time passes.
The Leases class is a general reusable class for this kind of pattern. An instance of the Leases class will create a thread to do its dirty work. You should close() the instance if you want to clean up the thread properly.
NOTE: This class extends Thread rather than Chore because the sleep time can be interrupted when there is something to do, rather than the Chore sleep time which is invariant.
Modifier and Type | Class and Description |
---|---|
static class |
Leases.LeaseStillHeldException
Thrown if we are asked to create a lease but lease on passed name already
exists.
|
Modifier and Type | Field and Description |
---|---|
protected int |
leaseCheckFrequency |
static int |
MIN_WAIT_TIME |
protected boolean |
stopRequested |
Constructor and Description |
---|
Leases(int leaseCheckFrequency)
Creates a lease monitor
|
Modifier and Type | Method and Description |
---|---|
void |
addLease(org.apache.hadoop.hbase.regionserver.Leases.Lease lease)
Inserts lease.
|
void |
cancelLease(String leaseName)
Client explicitly cancels a lease.
|
void |
close()
Shut down this Leases instance.
|
void |
closeAfterLeasesExpire()
Shuts down this lease instance when all outstanding leases expire.
|
void |
createLease(String leaseName,
int leaseTimeoutPeriod,
LeaseListener listener)
Create a lease and insert it to the map of leases.
|
void |
renewLease(String leaseName)
Renew a lease
|
void |
run() |
getName, getThread, interrupt, isAlive, isInterrupted, join, join, join, setDaemon, setName, setPriority, setUncaughtExceptionHandler, start
public static final int MIN_WAIT_TIME
protected final int leaseCheckFrequency
protected volatile boolean stopRequested
public Leases(int leaseCheckFrequency)
leaseCheckFrequency
- - how often the lease should be checked
(milliseconds)public void run()
run
in interface Runnable
run
in class HasThread
Thread.run()
public void closeAfterLeasesExpire()
close()
but rather than violently end all leases, waits
first on extant leases to finish. Use this method if the lease holders
could lose data, leak locks, etc. Presumes client has shutdown
allocation of new leases.public void close()
public void createLease(String leaseName, int leaseTimeoutPeriod, LeaseListener listener) throws Leases.LeaseStillHeldException
leaseName
- name of the leaseleaseTimeoutPeriod
- length of the lease in millisecondslistener
- listener that will process lease expirationsLeases.LeaseStillHeldException
public void addLease(org.apache.hadoop.hbase.regionserver.Leases.Lease lease) throws Leases.LeaseStillHeldException
lease
- Leases.LeaseStillHeldException
public void renewLease(String leaseName) throws LeaseException
leaseName
- name of leaseLeaseException
public void cancelLease(String leaseName) throws LeaseException
leaseName
- name of leaseLeaseException
Copyright © 2007-2016 The Apache Software Foundation. All Rights Reserved.