-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
write to hbase from pyspark shell #34
Comments
Do we have any option to convert integer values to integer only while writing dataframe to hbase through pyspark ,by default while writing dataframe to hbase integer values are converting to byte type in hbase table? Below is the code: import json df.write.option("catalog",cat2).option("newtable","5").format("org.apache.spark.sql.execution.datasources.hbase").save() output: expected output: |
if you are using our package here, the integer values are converted to binary array while writing to hbase. |
thanks 7 i had the same problem |
while writing from pyspark to hbase ,data is storing as hexa format what should i do to store data as integer in pyspark write command
The text was updated successfully, but these errors were encountered: