Pierre Villard
41189b055f
NIFI-3269 Added call to onPropertyModified when updating controller services in StandardProcessorTestRunner.
...
Added unit test to demonstrate change.
This closes #1374 .
Signed-off-by: Andy LoPresto <alopresto@apache.org>
2017-01-03 15:31:15 -08:00
Pierre Villard
2c0f1c348e
NIFI-3259 - Process group level option in Ambari reporting task
...
This closes #1360 .
Signed-off-by: Bryan Bende <bbende@apache.org>
2017-01-03 16:18:53 -05:00
Pierre Villard
9b47961d1c
NIFI-3231 Added EL support to hostname and port in PutTCP/UDP
...
This closes #1361 .
Signed-off-by: Bryan Bende <bbende@apache.org>
2017-01-03 12:09:19 -05:00
Bryan Rosander
1b4729e448
NIFI-3240 - AttributesToJson performance improvements
...
This closes #1352 .
Signed-off-by: Bryan Bende <bbende@apache.org>
2017-01-03 10:20:16 -05:00
Pierre Villard
be6bcf20ad
NIFI-2944 Check remote input hostname at startup.
...
Added unit test cases.
This closes #1379 .
Signed-off-by: Andy LoPresto <alopresto@apache.org>
2017-01-02 20:25:03 -08:00
Scott Aslan
67cbef5df3
NIFI-2917: disable canvas refresh after ajax error and allow page refresh
...
This closes #1351 .
Signed-off-by: Andy LoPresto <alopresto@apache.org>
2017-01-02 16:32:05 -08:00
Davy De Waele
55f4716f3d
NIFI-3266 Added EL support for basePath and port in ListenHTTP
...
This closes #1373 .
2016-12-30 16:35:46 +01:00
Matt Gilman
0d14db72f5
NIFI-3247:
...
- Removing unnecessary authorization check during second phase of connection creation.
- Ensuring that the remote group port returns the correct resource type though not super critical since it is not possible to create policies for remote ports.
This closes #1353 .
2016-12-30 16:05:06 +01:00
jpercivall
8acbe9aa3f
NIFI-1582 Fixing how failures with state are handled and improving flowfile handling
...
This closes #1371
Signed-off-by: Bryan Rosander <brosander@apache.org>
2016-12-29 15:49:52 -05:00
Pierre Villard
4986b83b83
NIFI-3164 Added NAR loading duration
...
This closes #1366 .
Signed-off-by: James Wing <jvwing@gmail.com>
2016-12-29 10:29:03 -08:00
Pierre Villard
5c095f3a18
NIFI-3164 Added message at startup to log NAR loading
...
This closes #1365 .
Signed-off-by: James Wing <jvwing@gmail.com>
2016-12-28 14:10:30 -08:00
Bryan Rosander
35e8bedcc8
NIFI-3249 - UpdateAttribute performance improvements
...
This closes #1356
Signed-off-by: jpercivall <JPercivall@apache.org>
2016-12-28 14:54:05 -05:00
Pierre Villard
16898668c2
NIFI-3228 added s3.contenttype in PutS3Object
...
Signed-off-by: James Wing <jvwing@gmail.com>
This closes #1362 .
2016-12-28 10:54:21 -08:00
Joe Gresock
2ea8b4122b
NIFI-3127: Fixing NPE for empty flow files in SplitText
...
This closes #1358 .
Signed-off-by: Koji Kawamura <ijokarumawak@apache.org>
2016-12-28 11:21:44 +09:00
Matt Gilman
2f3017638f
NIFI-3239:
...
- Indicating components are not restricted when appropriate.
- Updating unit tests.
This closes #1350 .
Signed-off-by: Aldrin Piri <aldrin@apache.org>
2016-12-27 13:06:07 -05:00
Bryan Bende
978f483ba8
NIFI-3250 Fixing logic in StandardFlowFileQueue when migrating flow files to the active queue
...
This closes #3250 .
Signed-off-by: Aldrin Piri <aldrin@apache.org>
2016-12-27 12:52:01 -05:00
Joe Gresock
af8ed8b7de
NIFI-3253: Correcting documentation in Notify processor
...
This closes #1359 .
Signed-off-by: Aldrin Piri <aldrin@apache.org>
2016-12-27 12:19:08 -05:00
Matt Gilman
6c5d4084d5
NIFI-3207: Fixed Template upload import URI
...
- Fixing the importUri when replicating a Template upload request. Previously was leveraging getResourceUri which considers proxy headers meant for client responses.
This closes #1334 .
Signed-off-by: Koji Kawamura <ijokarumawak@apache.org>
2016-12-27 15:44:25 +09:00
Bryan Bende
6ca25e10ef
NIFI-3220 Add support for basic auth to Solr processors
...
This closes #1338 .
Signed-off-by: Koji Kawamura <ijokarumawak@apache.org>
2016-12-26 15:41:24 +09:00
Scott Aslan
5ea17d30c5
[NIFI-96] add align horizontal and align vertical capability to components on the canvas. This closes #1354
2016-12-22 16:47:34 -05:00
Matt Gilman
e65aad8fe6
NIFI-2994: - Setting the default position for remote process groups.
...
Signed-off-by: Yolanda M. Davis <ymdavis@apache.org>
This closes #1303
2016-12-22 14:39:56 -05:00
Matt Gilman
acc9e0b45c
NIFI-2967:
...
- Disabling the Add button in the new Processor, Controller Service, and Reporting Task dialog when no components match the filter.
This closes #1340
2016-12-22 11:52:20 -05:00
Koji Kawamura
908e7d3131
NIFI-2585: Add attributes to track s2s host and port
...
- Removed host and port field from Peer since the same information is
available in PeerDescription
- Refactored variable names in SocketRemoteSiteListener to improve readability
- Changed how SocketRemoteSiteListener constructs PeerDescription
instance. It used to use hard-coded 'localhost' as hostname, and
getPort() which returns server's port. Since the peer is a remote peer,
i.e the client, it should be client hostname and port.
- Added hostname resolution at DataTransferResource to make s2s.host
value consistent with RAW transport. Without this, RAW uses hostname
while HTTP uses IP address. It will be hard to be used from downstream flows.
- Replaced heavy use of mockito which was difficult to maintain, with
nifi-mock
- Added SiteToSiteAttributes and more assertions in unit tests
This closes #1342 .
Signed-off-by: Bryan Bende <bbende@apache.org>
2016-12-22 11:00:00 -05:00
Bryan Bende
f7d761a28a
NIFI-2585 Moving attributes into loop in AbstractFlowFileServerProtocol, and also updating StandardRemoteGroupPort to apply the same attributes when doing a pull-based site-to-site.
...
Signed-off-by: Bryan Bende <bbende@apache.org>
2016-12-22 10:59:56 -05:00
Randy Gelhausen
28e5d85493
NIFI-2585: Add attributes to track where a flow file came from when receiving over site-to-site
...
Signed-off-by: Bryan Bende <bbende@apache.org>
2016-12-22 10:59:55 -05:00
Bryan Rosander
44c9ea0a66
NIFI-3236 - SplitJson performance improvements
...
This closes #1347 .
Signed-off-by: Koji Kawamura <ijokarumawak@apache.org>
2016-12-22 15:22:53 +09:00
Bryan Rosander
4285157675
NIFI-3235 - EvaluateJsonPath performance improvements
...
This closes #1346 .
Signed-off-by: Bryan Bende <bbende@apache.org>
2016-12-21 16:29:23 -05:00
Matt Gilman
721c9ee7f0
NIFI-3167: - Ensuring the DELETE button is visible for cluster nodes. - Removing unecessary wrapper element and non breaking spaces.
...
Signed-off-by: Yolanda M. Davis <ymdavis@apache.org>
This closes #1319
2016-12-21 12:02:44 -05:00
Sarah Olson
00149603c8
NIFI-3234: Updated two broken links in the Encryption Configuration sectionof the Admin Guide
...
This closes #1345
Signed-off-by: jpercivall <JPercivall@apache.org>
2016-12-20 17:41:08 -05:00
Mark Rebuck
445c075963
NIFI-3233 Fix minor typo in developer-guide.adoc
...
This closes #1343 .
Signed-off-by: Aldrin Piri <aldrin@apache.org>
2016-12-20 11:18:06 -05:00
Matt Burgess
3b91635398
NIFI-3194: Fixed error handling in PutElasticsearchHttp
...
Thise closes #1327
Signed-off-by: jpercivall <JPercivall@apache.org>
2016-12-19 14:51:41 -05:00
Scott Aslan
aef17f9a8b
[NIFI-3170] remove action details if user does not have read perms, also update action details styles to match other dialogs. This closes #1322
2016-12-19 10:07:15 -05:00
Matt Burgess
21ed556691
NIFI-3206: Add ifElse function to Expression Language
...
This closes #1333
Signed-off-by: jpercivall <JPercivall@apache.org>
2016-12-16 15:13:01 -05:00
Joe Gresock
34627f78b7
NIFI-190: Initial commit of Wait and Notify processors
...
This closes #1329 .
Signed-off-by: Bryan Bende <bbende@apache.org>
2016-12-16 10:29:16 -05:00
Wesley-Lawrence
9a5986b0f6
NIFI-3175 Fix a bug in the ValidateCSV processor to handle empty CSV columns
...
This closes #1311 .
2016-12-15 22:43:15 +01:00
Mark Payne
ab2d07aa5a
NIFI-3186: Fixed NPE that was overlooked
...
This closes #1317 .
Signed-off-by: Bryan Bende <bbende@apache.org>
2016-12-15 12:56:23 -05:00
Mark Payne
5776c4b1f9
NIFI-3173: When a template is created with multiple components in different groups all referencing the same controller service, ensure that controller service is added to the template at a high enough level that all components needing hte service can access it.
...
- Ensure that controller services are added to child process groups when creating snippet
- Addressed issue related to modifying higher-level process groups' controller services in snippet after having already visited the process group
This closes #1318
Signed-off-by: jpercivall <JPercivall@apache.org>
2016-12-14 14:10:59 -05:00
Byunghwa Yun
0f462a7c49
NIFI-3029: QueryDatabaseTable supports max fragments property
...
Signed-off-by: Matt Burgess <mattyb149@apache.org>
This closes #1213
2016-12-14 10:51:27 -05:00
Mark Payne
e59cf86656
NIFI-3188: Added unit test to test corner cases
...
This closes #1321 .
Signed-off-by: Koji Kawamura <ijokarumawak@apache.org>
2016-12-14 10:57:11 +09:00
jpercivall
266bd80bde
NIFI-3192 Adding a check if the FlowFile is null to UpdateAttribute
...
This closes #1325
2016-12-13 11:30:24 -05:00
Scott Aslan
868795cdaa
[NIFI-3159] Add ellipsis to long PG name in access policies shell. This closes #1310
2016-12-13 09:41:31 -05:00
Scott Aslan
45e4514a40
[NIFI-3160] reload canvas when updating PG name of current PG. This closes #1315
2016-12-12 11:45:10 -05:00
Andrew Lim
32e1603bd6
NIFI-3090 Added new flow election cluster properties to Admin Guide property tables
...
This closes #1313 .
Signed-off-by: Bryan Bende <bbende@apache.org>
2016-12-12 09:30:38 -05:00
Andrew Lim
d701cd8364
NIFI-3178 Corrected missing Operate Palette button images in User Admin Guide
...
This closes #1314 .
Signed-off-by: Bryan Bende <bbende@apache.org>
2016-12-12 09:25:15 -05:00
Scott Aslan
2c84b44f54
[NIFI-3154] display ellipsis when text is sufficiently long in connection details and connection configuration dialogs. This closes #1305
2016-12-08 12:52:01 -05:00
Koji Kawamura
d15bd0c00c
NIFI-3165: Update RPG revision when RPGPort is updated. This closes #1308
2016-12-08 08:34:07 -05:00
Bryan Rosander
9ce0af22af
NIFI-3138 - Adding urls, transport, proxy settings to rpg portion of flow config xsd
...
This closes #1304 .
Signed-off-by: Koji Kawamura <ijokarumawak@apache.org>
2016-12-08 14:37:07 +09:00
Scott Aslan
6b82e25c74
[NIFI-3106] updating hover text for remove counter icon. This closes #1299
2016-12-07 16:42:19 -05:00
jpercivall
e36b37692c
NIFI-1582 added state to UpdateAttribute as well as updated a few parts that hadn't be touched in years (referenced the 'FlowFileMetadataEnhancer' processor'. Also added a 'NUMBER_VALIDATOR' to StandardValidators
...
NIFI-1582 removing the option to use cluster state
NIFI-1582 addressing Oleg's comments
NIFI-1582 No longer forcing numbers as the init value and adding getStateValue() to EL instead of using 'ATTRIBUTE_state'
NIFI-1582 Removing init state value
NIFI-1582 Adding documentation for the changes to Init State value
This closes #319
2016-12-06 16:52:02 -05:00
Bryan Rosander
97d2d30423
NIFI-3131 - Qualifying nifi-env in nifi bat scripts, removing popd from toolkit bat scripts
...
This closes #1293
Signed-off-by: Bryan Rosander <brosander@apache.org>
2016-12-05 23:03:41 -05:00