[
https://issues.apache.org/jira/browse/FALCON-2228?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15778092#comment-15778092
]
ASF GitHub Bot commented on FALCON-2228:
----------------------------------------
GitHub user sandeepSamudrala opened a pull request:
https://github.com/apache/falcon/pull/329
FALCON-2228 Set output names into workflow builder and also maintain the
order of the input and ouputs
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/sandeepSamudrala/falcon FALCON-2228
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/falcon/pull/329.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #329
----
commit 9e68a578328e284dcdf845ce32a0c48ac8dba36c
Author: sandeep <[email protected]>
Date: 2016-07-25T06:36:59Z
FALCON-298. Feed update with replication delay creates holes
commit a94d4fe07f0da2606fc1c9009ba9a2d62643b728
Author: sandeep <[email protected]>
Date: 2016-08-05T10:57:34Z
rebasing from master
commit 271318b9cadde6f4341d3c02e9e71838db490023
Author: sandeep <[email protected]>
Date: 2016-08-05T10:58:13Z
FALCON-2097. Adding UT to the new method for getting next instance time
with Delay.
commit 1a4dcd234e8fe849ad415e8c9681a7d00395a107
Author: sandeep <[email protected]>
Date: 2016-08-05T11:03:55Z
rebased and resolved the conflicts from master
commit c06556623e87cbc52f6b01d44cc420bbb92c72e9
Author: sandeep <[email protected]>
Date: 2016-08-05T11:05:08Z
reverting last line changes made
commit 1bb8d3c72a97835b88320ce482c5f472e00fb7cd
Author: sandeep <[email protected]>
Date: 2016-08-09T06:05:15Z
Merge branch 'master' of https://github.com/apache/falcon
commit d6dc8bfaa6811fe3a97f1223fd962ab8fa083b47
Author: sandeep <[email protected]>
Date: 2016-08-14T08:16:50Z
Merge branch 'master' of https://github.com/apache/falcon
commit a178805264d314ea2f58f525b56b9e071f0d2dd1
Author: sandeep <[email protected]>
Date: 2016-09-27T10:00:00Z
Merge branch 'master' of https://github.com/apache/falcon
commit d0393e98d7133f0b32df4bff287fb543f862d066
Author: sandeep <[email protected]>
Date: 2016-10-19T15:23:55Z
Merge branch 'master' of https://github.com/apache/falcon
commit 250cc4609c39868e8ff07c74e509f4db15a9f928
Author: sandeep <[email protected]>
Date: 2016-11-14T07:18:24Z
Merge branch 'master' of https://github.com/apache/falcon
commit 48f6afaca0794ebbe821439b3b9c0b085e29c691
Author: sandeep <[email protected]>
Date: 2016-11-18T13:30:55Z
Merge branch 'master' of https://github.com/apache/falcon
commit bbca081ff4f03ec2d6d229178166361c3adaeb9d
Author: sandeep <[email protected]>
Date: 2016-11-21T12:07:19Z
Merge branch 'master' of https://github.com/apache/falcon
commit 9cf36e93f8d0139594b70533cbae2d918e17ab67
Author: sandeep <[email protected]>
Date: 2016-11-25T08:16:25Z
Merge branch 'master' of https://github.com/apache/falcon
commit f96a084f628b3f6ef6a5552b58142da1856872e0
Author: sandeep <[email protected]>
Date: 2016-12-01T08:27:31Z
Merge branch 'master' of https://github.com/apache/falcon
commit e0ad35884c27037de99e88ce20b0a813974af45d
Author: sandeep <[email protected]>
Date: 2016-12-07T14:16:17Z
Merge branch 'master' of https://github.com/apache/falcon
commit 194f36ac32b0a580f5c54e994152f85f704f75f6
Author: sandeep <[email protected]>
Date: 2016-12-15T05:42:40Z
Merge branch 'master' of https://github.com/apache/falcon
commit 0a433fb0271874e6eba8dba457a2b6f613b10dce
Author: sandeep <[email protected]>
Date: 2016-12-15T12:38:01Z
Merge branch 'master' of https://github.com/apache/falcon
commit b1546ed018da483bc61dd0a80b224f112abf52be
Author: sandeep <[email protected]>
Date: 2016-12-22T04:30:55Z
Merge branch 'master' of https://github.com/apache/falcon
commit 4a2e23e26145ce6204d8433d7d5dde8d0522c793
Author: sandeep <[email protected]>
Date: 2016-12-26T09:17:23Z
Merge branch 'master' of https://github.com/apache/falcon
commit 4d00d7fb1ac897693a98019d352087a2c0106eba
Author: sandeep <[email protected]>
Date: 2016-12-26T10:31:45Z
FALCON-2228 Set output names into workflow builder and also maintain the
order of the input and ouputs
----
> Falcon should also set the feed output names as a coord property
> ----------------------------------------------------------------
>
> Key: FALCON-2228
> URL: https://issues.apache.org/jira/browse/FALCON-2228
> Project: Falcon
> Issue Type: Improvement
> Reporter: Pallavi Rao
> Assignee: sandeep samudrala
>
> Falcon sets the following props, in the coordinator.
> // what inputs
> INPUT_FEED_NAMES("falconInputFeeds", "name of the feeds which are used as
> inputs", false),
> INPUT_FEED_PATHS("falconInPaths", "comma separated input feed instance
> paths", false),
> INPUT_NAMES("falconInputNames", "name of the inputs", false),
> // what outputs
> OUTPUT_FEED_NAMES("feedNames", "name of the feeds which are
> generated/replicated/deleted"),
> OUTPUT_FEED_PATHS("feedInstancePaths", "comma separated feed instance
> paths"),
>
> What is missing is the list of output names, example:
> OUTPUT_NAMES("feedInstanceNames", "comma separated list of names of
> outputs", false)
> Also, Falcon must ensure that the order of the input and output names
> correspond with the paths.
> This will enable a user workflow that consumes some inputs and produces some
> outputs based on certain parameters, to consume these variables and use them.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)