JDBC Streaming with list parameter

I have to pass a list in JDBC steaming query for Oracle, since the list can have more than 1000 record so i cannot use in query .i.e. select name from table where id in (..)
I tried two option

  1. use tuple : Create tuple and pass as parameter . look like logstash don't support tuple
  2. creating query in ruby filter : i created required query in ruby filter and pass that string in statement like ' statement=>"%{[query_oracle]}"'
    but it gave oracle error non supported sql 92 . most probably actual query is not going .

Is there any other approach and make above option work ?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.