mirror of https://github.com/apache/nifi.git
NIFI-11582 Deprecated GetIgniteCache and PutIgniteCache Processors
Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #7284.
This commit is contained in:
parent
ef97f7e214
commit
1e5c7073b9
|
@ -28,6 +28,7 @@ import org.apache.nifi.annotation.behavior.SupportsBatching;
|
|||
import org.apache.nifi.annotation.behavior.WritesAttribute;
|
||||
import org.apache.nifi.annotation.behavior.WritesAttributes;
|
||||
import org.apache.nifi.annotation.documentation.CapabilityDescription;
|
||||
import org.apache.nifi.annotation.documentation.DeprecationNotice;
|
||||
import org.apache.nifi.annotation.documentation.SeeAlso;
|
||||
import org.apache.nifi.annotation.documentation.Tags;
|
||||
import org.apache.nifi.annotation.lifecycle.OnScheduled;
|
||||
|
@ -54,6 +55,7 @@ import org.apache.nifi.processor.exception.ProcessException;
|
|||
@WritesAttributes({
|
||||
@WritesAttribute(attribute = GetIgniteCache.IGNITE_GET_FAILED_REASON_ATTRIBUTE_KEY, description = "The reason for getting entry from cache"),
|
||||
})
|
||||
@DeprecationNotice(reason = "Apache Ignite 1 is no longer supported")
|
||||
public class GetIgniteCache extends AbstractIgniteCacheProcessor {
|
||||
|
||||
/** Flow file attribute keys and messages */
|
||||
|
|
|
@ -37,6 +37,7 @@ import org.apache.nifi.annotation.behavior.SystemResource;
|
|||
import org.apache.nifi.annotation.behavior.WritesAttribute;
|
||||
import org.apache.nifi.annotation.behavior.WritesAttributes;
|
||||
import org.apache.nifi.annotation.documentation.CapabilityDescription;
|
||||
import org.apache.nifi.annotation.documentation.DeprecationNotice;
|
||||
import org.apache.nifi.annotation.documentation.SeeAlso;
|
||||
import org.apache.nifi.annotation.documentation.Tags;
|
||||
import org.apache.nifi.annotation.lifecycle.OnScheduled;
|
||||
|
@ -77,6 +78,7 @@ import org.apache.nifi.stream.io.StreamUtils;
|
|||
})
|
||||
@SeeAlso({GetIgniteCache.class})
|
||||
@SystemResourceConsideration(resource = SystemResource.MEMORY)
|
||||
@DeprecationNotice(reason = "Apache Ignite 1 is no longer supported")
|
||||
public class PutIgniteCache extends AbstractIgniteCacheProcessor {
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue