Created
October 24, 2017 12:32
-
-
Save b-slim/4b6157d82c96fec864966d91533a6bcc to your computer and use it in GitHub Desktop.
support tutorial
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Node status | |
via Curl | |
```sh | |
curl localhost:8082/status | |
{"version":"0.10.1.2.6.3.0-220","modules":[{"name":"io.druid.query.aggregation.datasketches.theta.SketchModule","artifact":"druid-datasketches","version":"0.10.1.2.6.3.0-220"},{"name":"io.druid.query.aggregation.datasketches.theta.oldapi.OldApiSketchModule","artifact":"druid-datasketches","version":"0.10.1.2.6.3.0-220"},{"name":"io.druid.storage.hdfs.HdfsStorageDruidModule","artifact":"druid-hdfs-storage","version":"0.10.1.2.6.3.0-220"},{"name":"io.druid.indexing.kafka.KafkaIndexTaskModule","artifact":"druid-kafka-indexing-service","version":"0.10.1.2.6.3.0-220"},{"name":"io.druid.metadata.storage.mysql.MySQLMetadataStorageModule","artifact":"mysql-metadata-storage","version":"0.10.1.2.6.3.0-220"},{"name":"io.druid.emitter.ambari.metrics.AmbariMetricsEmitterModule","artifact":"ambari-metrics-emitter","version":"0.10.1.2.6.3.0-220"}],"memory":{"maxMemory":2058354688,"totalMemory":2058354688,"freeMemory":1727201736,"usedMemory":331152952}} | |
``` | |
# Setup data | |
run this from your teminal | |
sudo su druid | |
wget https://transfer.sh/sWgBK/wikiticker-2015-09-12-sampled.json.gz | |
gunzip wikiticker-2015-09-12-sampled.json.gz | |
hdfs dfs -ls /apps/druid | |
hdfs dfs -put wikiticker-2015-09-12-sampled.json /apps/druid/warehouse | |
# Index data via curl | |
wget https://transfer.sh/5W3Nh/index_task_hdfs.json | |
Explain the task spec: | |
- type of task | |
- data source name | |
- path to the data | |
- specs of partition | |
curl -X 'POST' -H 'Content-Type:application/json' [email protected] ctr-e134-1499953498516-247377-01-000004.hwx.site:8090/druid/indexer/v1/task | |
Look at the orveloard UI look at the indexing log | |
Look at the coordinator UI look at the load status | |
# Query the data | |
## Time Boundary | |
wget https://transfer.sh/wzxR2/timeBoundary.json | |
curl -X POST "ctr-e134-1499953498516-247377-01-000002.hwx.site:8888/druid/v2/?pretty" -H 'content-type: application/json' [email protected] | |
https://transfer.sh/Ta26s/topN.json | |
curl -X POST "ctr-e134-1499953498516-247377-01-000002.hwx.site:8888/druid/v2/?pretty" -H 'content-type: application/json' [email protected] | |
## Practice | |
write/run your own query using druid select query help page | |
# SuperSet UI | |
Via Ambari UI Go to Superset and create some simple slice | |
# Hive QL | |
```sql | |
CREATE EXTERNAL TABLE wikipedia | |
STORED BY 'org.apache.hadoop.hive.druid.DruidStorageHandler' | |
TBLPROPERTIES ("druid.datasource" = "wikipedia"); | |
``` | |
##Query the existing data | |
```sql | |
DESCRIBE FORMATTED wikipedia; | |
SELECT * FROM wikipedia LIMIT 10; | |
SELECT COUNT(*) FROM wikipedia; | |
SELECT COUNT(*), floor_hour(`__time`) FROM wikipedia GROUP BY floor_hour(`__time`); | |
``` | |
## Index more data | |
## Query the data | |
# Delete the data source | |
# Msc commands | |
to kill yarn app | |
yarn application -kill application_1508802793765_0005 | |
# Personal notes setup from my local laptop | |
cd /Users/sbouguerra/Ydev/druid/examples/quickstart | |
transfer wikiticker-2015-09-12-sampled.json.gz | |
cd /Users/sbouguerra/Ydev/druid/qtl_tests | |
transfer index_task_hdfs.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment