Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Gist Page : example-python-read-and-write-from-hive-with-security

Common part

Libraries dependency and some configuration

Code Block
languagepy
import ibis
import pandas as pd
import os

# ====== Ibis conf (to avoid a bug) ======
with ibis.config.config_prefix('impala'):
    ibis.config.set_option('temp_db', '`__ibis_tmp`')

WEBHDFS URI

WEBHDFS URI are like that : http://namenodedns:port/user/hdfs/folder/file.csv

...