Accessing job arguments from a Glue script

0

I've defined a Glue job that accepts parameters but couldn't find an example of how to access these parameters?

posta 7 anni fa5362 visualizzazioni
1 Risposta
0
Risposta accettata

You can use read parameters like regular Python sys.argv arguments.

import sys
print "This is the name of the script: ", sys.argv[0]
print "Number of arguments: ", len(sys.argv)
print "The arguments are: " , str(sys.argv)

Alternatively, you can use Glue's getResolvedOptions to read the arguments by name. In this case, you will need to prepend the argument name with '--' e.g. --Arg1 Value1

from awsglue.utils import getResolvedOptions
args = getResolvedOptions(sys.argv, ['TempDir','JOB_NAME', 'Arg1'])
print "The args are: " , str(args)
print "The value is: " , args['Arg1']
AWS
con risposta 7 anni fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande