Package | Description |
---|---|
org.apache.ignite |
Contains entry-point Ignite & HPC APIs.
|
org.apache.ignite.cache.eviction.igfs |
Contains IGFS LRU eviction policy implementations.
|
org.apache.ignite.cache.store.hibernate |
Contains reference Hibernate-based cache store implementation.
|
org.apache.ignite.cache.store.jdbc |
Contains reference JDBC-based cache store implementation.
|
org.apache.ignite.compute.gridify |
Contains APIs utilized for AOP-based grid-enabling.
|
org.apache.ignite.compute.gridify.aop |
Contains common classes for different AOP providers.
|
org.apache.ignite.configuration |
Contains configuration-related classes.
|
org.apache.ignite.hadoop.fs |
Ignite Hadoop Accelerator file system API.
|
org.apache.ignite.hadoop.mapreduce |
Ignite Hadoop Accelerator map-reduce classes.
|
org.apache.ignite.logger.java |
Contains Java logging implementation for logging.
|
org.apache.ignite.logger.log4j |
Contains default Log4j implementation for logging.
|
org.apache.ignite.marshaller |
Contains various supported marshallers.
|
org.apache.ignite.marshaller.jdk |
Contains JDK java.io based marshaller.
|
org.apache.ignite.marshaller.optimized |
Contains default Optimized marshaller.
|
org.apache.ignite.plugin |
Contains plugins management API.
|
org.apache.ignite.plugin.security |
Contains APIs for security, authentication, and authorization.
|
org.apache.ignite.plugin.segmentation |
Contains segmentation "split-brain" related classes.
|
org.apache.ignite.spi |
Contains common classes and interfaces for SPI implementations.
|
org.apache.ignite.spi.communication.tcp |
Contains default TCP/IP-based implementation for communication SPI.
|
Modifier and Type | Class and Description |
---|---|
class |
IgniteAuthenticationException
Exception that represents authentication failure.
|
Modifier and Type | Method and Description |
---|---|
static Ignite |
IgniteSpring.start(org.springframework.context.ApplicationContext springCtx)
Starts grid with default configuration.
|
static Ignite |
IgniteSpring.start(IgniteConfiguration cfg,
org.springframework.context.ApplicationContext springCtx)
Starts grid with given configuration.
|
static Ignite |
IgniteSpring.start(String springCfgPath,
org.springframework.context.ApplicationContext springCtx)
Starts all grids specified within given Spring XML configuration file.
|
static Ignite |
IgniteSpring.start(URL springCfgUrl,
org.springframework.context.ApplicationContext springCtx)
Starts all grids specified within given Spring XML configuration file URL.
|
Modifier and Type | Method and Description |
---|---|
boolean |
IgfsPerBlockLruEvictionPolicy.exclude(IgfsPath path)
Check whether provided path must be excluded from evictions.
|
Modifier and Type | Method and Description |
---|---|
protected <X> X |
CacheHibernateBlobStore.fromBytes(byte[] bytes)
Deserialize object from byte array using marshaller.
|
protected byte[] |
CacheHibernateBlobStore.toBytes(Object obj)
Serialize object to byte array using marshaller.
|
Modifier and Type | Method and Description |
---|---|
protected <X> X |
CacheJdbcBlobStore.fromBytes(byte[] bytes)
Deserialize object from byte array using marshaller.
|
protected byte[] |
CacheJdbcBlobStore.toBytes(Object obj)
Serialize object to byte array using marshaller.
|
Modifier and Type | Method and Description |
---|---|
boolean |
GridifyInterceptor.isGridify(Annotation gridify,
GridifyArgument arg)
This method is called before actual grid-enabling happens.
|
Modifier and Type | Method and Description |
---|---|
protected void |
GridifySetToSetAbstractAspect.checkIsSplitToJobsAllowed(org.apache.ignite.internal.util.gridify.GridifyRangeArgument arg,
GridifySetToSet ann)
Check if split allowed for input argument.
|
protected void |
GridifySetToValueAbstractAspect.checkIsSplitToJobsAllowed(org.apache.ignite.internal.util.gridify.GridifyRangeArgument arg,
GridifySetToValue ann)
Check if split allowed for input argument.
|
protected void |
GridifySetToValueAbstractAspect.checkMethodSignature(Method mtd)
Check method signature.
|
protected void |
GridifySetToSetAbstractAspect.checkMethodSignature(Method mtd)
Check method signature.
|
protected Object |
GridifySetToSetAbstractAspect.execute(IgniteCompute compute,
Class<?> cls,
org.apache.ignite.internal.util.gridify.GridifyRangeArgument arg,
GridifyNodeFilter nodeFilter,
int threshold,
int splitSize,
long timeout)
Execute method on grid.
|
protected Object |
GridifySetToValueAbstractAspect.execute(Method mtd,
IgniteCompute compute,
Class<?> cls,
org.apache.ignite.internal.util.gridify.GridifyRangeArgument arg,
GridifyNodeFilter nodeFilter,
int threshold,
int splitSize,
long timeout)
Execute method on grid.
|
Modifier and Type | Method and Description |
---|---|
Collection<InetSocketAddress> |
AddressResolver.getExternalAddresses(InetSocketAddress addr)
Maps internal address to a collection of external addresses.
|
Modifier and Type | Method and Description |
---|---|
void |
IgniteHadoopIgfsSecondaryFileSystem.close() |
void |
IgniteHadoopFileSystemCounterWriter.write(org.apache.ignite.internal.processors.hadoop.HadoopJobInfo jobInfo,
org.apache.ignite.internal.processors.hadoop.HadoopJobId jobId,
org.apache.ignite.internal.processors.hadoop.counter.HadoopCounters cntrs)
Writes counters of given job to some statistics storage.
|
Constructor and Description |
---|
IgniteHadoopIgfsSecondaryFileSystem(String uri)
Simple constructor that is to be used by default.
|
IgniteHadoopIgfsSecondaryFileSystem(String uri,
String cfgPath)
Constructor.
|
IgniteHadoopIgfsSecondaryFileSystem(String uri,
String cfgPath,
String userName)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
org.apache.ignite.internal.processors.hadoop.HadoopMapReducePlan |
IgniteHadoopMapReducePlanner.preparePlan(org.apache.ignite.internal.processors.hadoop.HadoopJob job,
Collection<ClusterNode> top,
org.apache.ignite.internal.processors.hadoop.HadoopMapReducePlan oldPlan)
Prepares map-reduce execution plan for the given job and topology.
|
Modifier and Type | Method and Description |
---|---|
void |
JavaLoggerFileHandler.nodeId(UUID nodeId)
Sets Node id and instantiates
FileHandler delegate. |
Constructor and Description |
---|
Log4JLogger(File cfgFile)
Creates new logger with given configuration
cfgFile . |
Log4JLogger(String path)
Creates new logger with given configuration
path . |
Log4JLogger(URL cfgUrl)
Creates new logger with given configuration
cfgUrl . |
Modifier and Type | Method and Description |
---|---|
byte[] |
Marshaller.marshal(Object obj)
Marshals object to byte array.
|
byte[] |
AbstractMarshaller.marshal(Object obj)
Marshals object to byte array.
|
void |
Marshaller.marshal(Object obj,
OutputStream out)
Marshals object to the output stream.
|
boolean |
MarshallerContext.registerClass(int id,
Class cls)
Registers class with provided type ID.
|
<T> T |
Marshaller.unmarshal(byte[] arr,
ClassLoader clsLdr)
Unmarshals object from byte array using given class loader.
|
<T> T |
AbstractMarshaller.unmarshal(byte[] arr,
ClassLoader clsLdr)
Unmarshals object from byte array using given class loader.
|
<T> T |
Marshaller.unmarshal(InputStream in,
ClassLoader clsLdr)
Unmarshals object from the output stream using given class loader.
|
Modifier and Type | Method and Description |
---|---|
void |
JdkMarshaller.marshal(Object obj,
OutputStream out)
Marshals object to the output stream.
|
<T> T |
JdkMarshaller.unmarshal(InputStream in,
ClassLoader clsLdr)
Unmarshals object from the output stream using given class loader.
|
Modifier and Type | Method and Description |
---|---|
byte[] |
OptimizedMarshaller.marshal(Object obj)
Marshals object to byte array.
|
void |
OptimizedMarshaller.marshal(Object obj,
OutputStream out)
Marshals object to the output stream.
|
<T> T |
OptimizedMarshaller.unmarshal(byte[] arr,
ClassLoader clsLdr)
Unmarshals object from byte array using given class loader.
|
<T> T |
OptimizedMarshaller.unmarshal(InputStream in,
ClassLoader clsLdr)
Unmarshals object from the output stream using given class loader.
|
Modifier and Type | Method and Description |
---|---|
void |
PluginProvider.onIgniteStart()
Callback that notifies that Ignite has successfully started,
including all internal components.
|
void |
PluginProvider.start(PluginContext ctx)
Starts grid component.
|
void |
PluginProvider.stop(boolean cancel)
Stops grid component.
|
Modifier and Type | Method and Description |
---|---|
GridSecurityCredentials |
GridSecurityCredentialsProvider.credentials()
Gets security credentials.
|
GridSecurityCredentials |
GridSecurityCredentialsBasicProvider.credentials()
Gets security credentials.
|
Modifier and Type | Method and Description |
---|---|
boolean |
GridSegmentationResolver.isValidSegment()
Checks whether segment is valid.
|
Modifier and Type | Method and Description |
---|---|
void |
IgniteSpiCloseableIterator.close()
Closes the iterator and frees all the resources held by the iterator.
|
Modifier and Type | Method and Description |
---|---|
protected org.apache.ignite.internal.util.nio.GridCommunicationClient |
TcpCommunicationSpi.createNioClient(ClusterNode node) |
protected org.apache.ignite.internal.util.nio.GridCommunicationClient |
TcpCommunicationSpi.createTcpClient(ClusterNode node)
Establish TCP connection to remote node and returns client.
|
Follow @ApacheIgnite
Apache Ignite Fabric : ver. 1.0.0 Release Date : March 31 2015