-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dynamic parameters in XML extractor #119
Comments
You should elaborate more on this. We definitely can't parameterize |
I wonder why you need to have a parameterized |
|
@atomashpolskiy I believe multi-file connectors (or 'multi-connector') look a good idea. But on the other hand, job speed will be reducing because of many XML documents are being processed. |
Well the params are not obliged to originate in Java code. They might come from an external source, like it happens with the job manager app, or from the configuration like in the newer BQ apps.
Sure, but the total running time obviously will not change, so I don't think it's a big problem. Jobs by definition are background and potentially long-running processes. |
@vitalz , I've added support for multiple connectors per #120
Params and their values are going to be the same throughout the execution, regardless of the connector from which the data is being extracted, so I think you're still going to need several configs; but this should help reduce the sheer number of them by "grouping" connectors that have the same parameter values |
Need ability to use dynamic parameters in LinkMove XML (also CSV?) extractors. For instance, it is like that:
Parameter 'league' is passed from Java code:
<connectorId>${league}-game</connectorId>
Parameter 'season' is defined in XML extractor itself:
The text was updated successfully, but these errors were encountered: