I finish setting up Druid on my computer by reading quickstart guide. I do setup MySQL extension by reading MySQL Metadata Store as well.
But, when I sign to mysql to
mysql -u druid -p dirud
I got druid
table only.I don't have any data that I imported with the following command via example.
curl -X 'POST' -H 'Content-Type:application/json' -d @quickstart/wikiticker-index.json localhost:8090/druid/indexer/v1/task
I saw Success
status on Druid console http://localhost:8090/console.html
as well.
The following is my common.runtime.properties
for mysql setup
druid.metadata.storage.type=mysql
druid.metadata.storage.connector.connectURI=jdbc:mysql://127.0.0.1:3306/druid
druid.metadata.storage.connector.user=druid
druid.metadata.storage.connector.password=diurd
Is something wrong with my setup?