Sorry for my tone, I didn’t mean that.
I use Phoenix4.9 on HBase1.2, and according to your err info, I looked up
HTableDescriptor definition and found this method
public HTableDescriptor setValue(String key, String value) {
if(value == null) {
this.remove(key);
} else {
this.setValue(Bytes.toBytes(key), Bytes.toBytes(value));
}
return this;
}
It looks like a little weird you get this error, if you can, check your
HTableDescriptor definition, add the above code to it and have a try, if
this can’t work either, maybe you can upgrade your HBase version.
On 16 February 2017 at 17:50:00, Nimrod Oren ([email protected])
wrote:
I didn't mean to sound rude.
I created another table using phoenix-sqlline according to the
documentation:
CREATE TABLE IF NOT EXISTS TEST_SAVE_NEW (
IMEI VARCHAR NOT NULL PRIMARY KEY,
END_LATITUDE VARCHAR);
Still getting the same issue.