Skip to main content
Solved

Field:Value pairs in Groovy Evaluator processor

  • August 25, 2021
  • 1 reply
  • 427 views

Drew Kreiger
Rock star
Forum|alt.badge.img
  • Senior Community Builder at StreamSets
  • 95 replies

I am using Groovy Evaluator processor in my Data Collector pipeline and I would like programmatic access to each record field and its values in a loop. How can I achieve that?

Best answer by Dash

You can use the following Groovy code to iterate through each record’s field,value pairs:

for (record in records) {
  try {     
    // Access each record field and its value
    for ( record_dict in record.value ) {
      record_key = record_dict.key
      record_value = record.value[record_key]
      sdc.log.info(">>> field: {} | value: {}",record_key,record_value)

      // do something meaningful...
    }
    output.write(record)
  } catch (e) {
    error.write(record, e.toString())
  }
}

Cheers,

Dash

View original
Did this topic help you find an answer to your question?

1 reply

Dash
Headliner
Forum|alt.badge.img+3
  • Senior Technical Evangelist and Developer Advocate at Snowflake
  • 67 replies
  • Answer
  • August 25, 2021

You can use the following Groovy code to iterate through each record’s field,value pairs:

for (record in records) {
  try {     
    // Access each record field and its value
    for ( record_dict in record.value ) {
      record_key = record_dict.key
      record_value = record.value[record_key]
      sdc.log.info(">>> field: {} | value: {}",record_key,record_value)

      // do something meaningful...
    }
    output.write(record)
  } catch (e) {
    error.write(record, e.toString())
  }
}

Cheers,

Dash


Reply