[
https://issues.apache.org/jira/browse/NIFI-1037?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15317102#comment-15317102
]
ASF GitHub Bot commented on NIFI-1037:
--------------------------------------
Github user pvillard31 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/493#discussion_r65957598
--- Diff:
nifi-nar-bundles/nifi-hadoop-bundle/nifi-hdfs-processors/src/main/java/org/apache/nifi/processors/hadoop/inotify/EventAttributes.java
---
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.nifi.processors.hadoop.inotify;
+
+final class EventAttributes {
+ static final String EVENT_PATH = "hdfs.inotify.event.path";
+ static final String EVENT_TYPE = "hdfs.inotify.event.type";
+ static final String MIME_TYPE = "mime.type";
--- End diff --
I see your point. I don't really have an opinion on what is best, maybe
someone else has some thoughts?
(I was mentioning that mainly because if I look at IdentifyMimeType
processor, there is "mime.type" in the annotation and CoreAttributes is used)
> Hdfs Inotify processor
> ----------------------
>
> Key: NIFI-1037
> URL: https://issues.apache.org/jira/browse/NIFI-1037
> Project: Apache NiFi
> Issue Type: New Feature
> Reporter: nicolas maillard
> Assignee: Josh Meyer
> Priority: Minor
>
> HDFS has an Inotify interface that enables to access the HDFS edit stream.
> https://issues.apache.org/jira/browse/HDFS-6634
> Creating a processor to listen in and get notifications either for select
> directories or select actions would have many applications.
> - Stream to a search engine the activity on HDFS
> - Wait for specific actions or files to trigger workflows, like duplication
> to other clusters
> - Validate ingestion processes
> etc..
> probably more I don't think of.
> I have a first working beta version that needs to evolve
> it reuses the Hadoop-nar-bundle
> Needs a HDFS 2.7 dependency currently done through editing the Hadop-lib
> bundle
> let me know if this idea makes sense and would be of interest to the community
> would love to contribute the idea
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)