Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Read Config By Type and Job or Submission 

 

Code Block
// Supported type values ( from, to, link, driver )



 // NOTE: all the job config inputs values are for the last job run only since we do not store the config values for each submission yet
1. show config foo --type JOB --subType from --id 1 
//2*. show config "foo" --type JOB --subType "from" --sid 1 -( SINCE we are not doing SQOOP-2025, this will not be in the current patch.)
2. show config foo  --type JOB --subType to --id 1
3. show config foo --type JOB --subType driver --id 1
4. show config foo --type LINK --subType link --id 1
 
// planned, we need to add a name for the config paramSQOOP-2046
5. show input "foo" --config "toJobConfig"bar --type LINK --id 1 // id here refers to the link id
 
 

...

Edit Config By Type and Job ( prev submissions cannot be edited, hence we restrict editing to the last job run only)

Code Block
1. edit config foo --type JOB --subType from --id 1 // id here refers to the job id
// planned, we need to add a name for the config paramSQOOP-2046

2. edit input foo --config "toJobConfig"bar --type LINK --id 1 // id here refers to the link id

...