Mike2116 -PRO
Mike2116 -PRO

Reputation: 1

How to set a cache service in NiFi 2.2.0 for a notify and wait process

All sites say: use DistributedMapCacheServer. But that's not a services in NiFi 2.2.0 enter image description here

(Image showing that DistributedMapCacheServer isint in the available servers in nifi 2.2.0)

If I search cacheServer in NiFi services, the only options are

I tried Set Cache Server and MapCacheClientService, but it didn't work, the wait doesn't find the connection.

So I think that in 2.2.0 or before they removed DistributedMapCacheService, so what I do now is to set a notify and wait that tell me when an unknown quantity of flowfiles has passed and there's no more flowfiles in the wait flow?

Upvotes: 0

Views: 23

Answers (1)

tonykoval
tonykoval

Reputation: 1257

Check these sites https://cwiki.apache.org/confluence/display/NIFI/Deprecated+Components+and+Features and https://issues.apache.org/jira/browse/NIFI-13596

  • Renamed DistributedMapCacheServer to MapCacheServer
  • Renamed DistributedSetCacheServer to SetCacheServer
  • Renamed DistributedMapCacheClientService to MapCacheClientService
  • Renamed DistributedSetCacheClientService to SetCacheClientService

Upvotes: 1

Related Questions