We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I tried to create a HBase dataset:
kite-dataset create dataset:hbase:10.0.1.214:2181/sensor -s sensorRecord.avsc -p partition.json -m map.json
it returns:
IO error: Cannot open schema table
Those are my config files:
schema:
{ "fields": [ { "name": "timestamp", "type": "long" }, { "name": "sensor_group", "type": "string" }, { "name": "sensor", "type": "string" }, { "name": "uuid", "type": "string"}, { "name": "value", "type": "string" }, { "name": "src", "type": "string"} ], "name": "sensorRecord", "type": "record" }
partition:
[ {"type": "identity", "source": "timestamp"}, {"type": "year", "source": "timestamp"}, {"type": "month", "source": "timestamp"}, {"type": "day", "source": "timestamp"}, {"type": "hour", "source": "timestamp"} ]
mapping:
[ { "source" : "timestamp", "type" : "key" }, { "source" : "sensor_group", "type" : "column", "family" : "v", "qualifier" : "sensor_group" }, { "source" : "sensor", "type" : "column", "family" : "v", "qualifier" : "sensor" }, { "source" : "uuid", "type" : "column", "family" : "v", "qualifier" : "uuid" }, { "source" : "value", "type" : "column", "family" : "v", "qualifier" : "value" }, { "source" : "src", "type" : "column", "family" : "v", "qualifier" : "src" } ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I tried to create a HBase dataset:
it returns:
Those are my config files:
schema:
partition:
mapping:
The text was updated successfully, but these errors were encountered: