-
Hi team, I'm working on integrate the spline agent to AWS glue jobs and send the lineage data to API gateway. For security I've configured the API gateway as IAM authentication. And I'm using the IAM assume role to generate the token string. But I'm not sure how to configure the tokenurl ( Eg.
Btw, I tried to set the tokenUrl as a parameter in glue as below code. But the glue job failed with message
Thanks for any suggestion! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
the Regarding the error you get, it's unrelated problem. The error message |
Beta Was this translation helpful? Give feedback.
the
authentication.tokenUrl
property is used to fetch the token from a specified URL. It's not a combination of the API endpoint and the token. Instead, it should be a URL from which the Spline Agent can retrieve an OAuth authentication token. There is currently no way to pass an auth token directly to the Spline agent dispatcher. You can extend HTTP Dispatcher of write your own dispatcher that implements this kind of scenario.Regarding the error you get, it's unrelated problem. The error message
java.lang.IllegalArgumentException: Invalid input to --conf
suggests that there might be an issue with the format of the command line argument you're passing to Spark. In Spark, configuration pr…