I have data in hadoop cluster. I pulled it in python jupyter by establishing ODBC connection and using pyodbc library. I done analysis and results, I have to upload to hadoop cluster creating new table. Please help me.
tried with from sqlalchemy import create_engine
and create_engine.
It is throwing error message
'Can't load plugin: sqlalchemy.dialects:hive'.
Tried after importing dialects but got the same error. Thanks in advance
host = 'raghavs@PRD.SUTH.COM' #eu2azedno04.prd.suth.com
port = 21050
schema = 'analyticsworkbench'
table = 'test'
engine = create_engine('hive://raghavs@eu2azedno04.prd.suth.com/analyticsworkbench/test')