Hippo cluster has a “default” database created after installation. If not specified, all the operations will be performed in “default” database. Users can create a new one using the command shown below.
curl -u shiva:shiva -XPUT 'localhost:8902/hippo/v1/_database?pretty' -H 'Content-Type:
application/json' -d'{
"database_name" : "book"
}';
Result:
{
"acknowledged" : true
}