forked from apache/nifi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NIFI-12675 Fixed custom Relationships with Python Processors
Fixed bug that caused custom Relationships not to work on Python Processors. Added unit test to verify. Also addressed issue in PythonControllerInteractionIT where it did not wait for Processors to become valid (originally this wasn't necessary but when we refactored Processors to initialize in the background this was overlooked). This closes apache#8316 Signed-off-by: David Handermann <[email protected]>
- Loading branch information
1 parent
325a5a8
commit a587bad
Showing
6 changed files
with
110 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
...fi-py4j-bundle/nifi-python-test-extensions/src/main/resources/extensions/RouteFlowFile.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# 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. | ||
|
||
from nifiapi.flowfiletransform import FlowFileTransform, FlowFileTransformResult | ||
from nifiapi.relationship import Relationship | ||
|
||
class RouteFlowFile(FlowFileTransform): | ||
class Java: | ||
implements = ['org.apache.nifi.python.processor.FlowFileTransform'] | ||
class ProcessorDetails: | ||
version = '0.0.1-SNAPSHOT' | ||
description = "Routes a FlowFile to 'small' or 'large' based on whether the size of the flowfile exceeds 50 KB" | ||
|
||
REL_SMALL = Relationship(name="small", description="FlowFiles smaller than 50 KB") | ||
REL_LARGE = Relationship(name="large", description="FlowFiles larger than 50 KB") | ||
|
||
def __init__(self, **kwargs): | ||
pass | ||
|
||
def transform(self, context, flowFile): | ||
size = flowFile.getSize() | ||
if size > 50000: | ||
return FlowFileTransformResult(relationship = "large") | ||
else: | ||
return FlowFileTransformResult(relationship = "small") | ||
|
||
def getRelationships(self): | ||
return [self.REL_SMALL, self.REL_LARGE] |