I have a software product with a Ruby API that generates a table-like output when queried, and I would like to dynamically connect the output to Google Cloud bigQuery.
Having read the documentation, there is a dynamic connector for Google Sheets, and static ETL connectors to PostgreSQL and other (https://cloud.google.com/blog/big-data/2016/05/bigquery-integrates-with-google-drive).
If I have a ruby query that looks like the one below:
ruby productX-api/ruby/query_table.rb param1 param2
and this produces a table from the query:
field1,field2,field3
foo,bar,bar
xyz,abc,def
What options do I have to connect this to bigQuery?