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
- use tuple : Create tuple and pass as parameter . look like logstash don't support tuple
- 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 ?