MinuraPunchihewa commented on issue #9185: URL: https://github.com/apache/pinot/issues/9185#issuecomment-1209738084
@xiangfu0 I just upgraded to `pinotdb-0.4.3` and that username error does not seem to be coming up anymore. However, now I get this, ``` DatabaseError: Query {'sql': 'SELECT * FROM airlineStats'} timed out: Out of -1, only -1 responded, while needed was -1 ``` Do you know what it could be? This is my code, ``` from pinotdb import connect conn = connect(host='localhost', port=9000, path='/query/sql', scheme='http') curs = conn.cursor() curs.execute("SELECT * FROM airlineStats") for row in curs: print(row) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org