You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by GitBox <gi...@apache.org> on 2022/03/01 15:06:11 UTC

[GitHub] [nifi] MikeThomsen commented on pull request #4646: NIFI-6047 Add DeduplicateRecords (combines 6047 and 6014)

MikeThomsen commented on pull request #4646:
URL: https://github.com/apache/nifi/pull/4646#issuecomment-1055541043


   [DeduplicateRecords_TestWithCassandraDMC.xml.txt](https://github.com/apache/nifi/files/8162499/DeduplicateRecords_TestWithCassandraDMC.xml.txt)
   
   Here is a test flow.
   
   ```
   CREATE KEYSPACE nifi
         WITH REPLICATION = { 
          'class' : 'SimpleStrategy', 
          'replication_factor' : 1 
         };
   ```
   
   ```
   use nifi;
   ```
   
   ```
   create table map_cache (key blob, value blob, primary key(key));
   ```
   
   ```
   docker run -p 9042:9042 --name nifi-cassandra cassandra:4
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@nifi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org