Alex Woolford

Results 3 comments of Alex Woolford

I experienced a similar issue. I tried downgrading as @captnswing suggested. That didn't work in my case. I added a little logging snippet: ``` import logging logging.basicConfig( level=logging.INFO, # format="%(asctime)s...

I used `write_pandas` as a workaround: ``` from snowflake.connector.pandas_tools import write_pandas import snowflake.connector import pandas as pd import os con = snowflake.connector.connect( account=os.getenv("SNOWFLAKE_ACCOUNT"), user=os.getenv("SNOWFLAKE_USER"), password=os.getenv("SNOWFLAKE_PASSWORD"), database=os.getenv("SNOWFLAKE_DATABASE"), warehouse=os.getenv("SNOWFLAKE_WAREHOUSE"), role=os.getenv("SNOWFLAKE_ROLE"), schema=os.getenv("SNOWFLAKE_SCHEMA") )...

I just saw this 257-day old post. Sorry I missed it. To build the BusPosition Avro object, you need to run `mvn generate-sources`, and then you should be able to...