Class ActiveScan
java.lang.Object
org.apache.accumulo.core.client.admin.ActiveScan
A class that contains information about an ActiveScan
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract long
getAge()
abstract Authorizations
abstract String
abstract KeyExtent
Deprecated.abstract long
abstract long
abstract long
getSsio()
abstract ScanState
getState()
abstract String
getTable()
abstract TabletId
abstract ScanType
getType()
abstract String
getUser()
-
Constructor Details
-
ActiveScan
public ActiveScan()
-
-
Method Details
-
getScanid
public abstract long getScanid()- Returns:
- an id that uniquely identifies that scan on the server
-
getClient
- Returns:
- the address of the client that initiated the scan
-
getUser
- Returns:
- the user that initiated the scan
-
getTable
- Returns:
- the table the scan is running against
-
getAge
public abstract long getAge()- Returns:
- the age of the scan in milliseconds
-
getLastContactTime
public abstract long getLastContactTime()- Returns:
- milliseconds since last time client read data from the scan
-
getType
-
getState
-
getExtent
Deprecated.since 1.7.0 usegetTablet()
- Returns:
- tablet the scan is running against, if a batch scan may be one of many or null
-
getTablet
- Returns:
- tablet the scan is running against, if a batch scan may be one of many or null
- Since:
- 1.7.0
-
getColumns
- Returns:
- columns requested by the scan
-
getSsiList
- Returns:
- server side iterators used by the scan
-
getSsio
- Returns:
- server side iterator options
-
getAuthorizations
- Returns:
- the authorizations being used for this scan
- Since:
- 1.5.0
-
getIdleTime
public abstract long getIdleTime()- Returns:
- the time this scan has been idle in the tablet server
- Since:
- 1.5.0
-
getTablet()