0

Trying to create a new parameter in StreamSets and I am getting this error >

enter image description here

I am following exactly the official tutorial, but it seems this validation is new!

essamSALAH
  • 641
  • 2
  • 8
  • 15

1 Answers1

1

The behavior for handling pipeline parameters has not changed recently.

Looking at the image you provided, the parameter is not specified correctly. You have $(p_batch_size); the correct format for the parameter is ${p_batch_size}. Try replacing the parentheses with braces.

rcprcp
  • 301
  • 2
  • 5