simon824 opened a new issue, #1885:
URL: https://github.com/apache/incubator-hugegraph/issues/1885
### Feature Description (功能描述)
Creating table failed caused by HBASE client operation timeout, we can add
HbaseOptions `HBASE_OPERATION_TIMEOUT` to fix this problem, the default value
of `hbase.client.operation.timeout` is `12000000(30s)` which is not enough for
create/drop graph instance.
``` shell
curl -X POST -H "Content-Type: application/json" http://${url}/graphs/test
-d \
'gremlin.graph=com.baidu.hugegraph.HugeFactory
backend=hbase
serializer=hbase
hbase.hosts=hadoop001,hadoop002,hadoop003
hbase.port=2181
store=test'
```
Exception info
```
{
"exception":"class com.baidu.hugegraph.backend.BackendException",
"message":"Failed to create table 's_ui' for 's' store",
"cause":"java.io.InterruptedIOException: Interrupt while waiting on
Operation: CREATE, Table Name: talent_test:s_ui, procId: 1649"
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]