mirror of https://github.com/apache/druid.git
formatted realtime spec files for examples
This commit is contained in:
parent
5e8bd15df0
commit
1618c9b8dc
|
@ -1,22 +1,32 @@
|
|||
[{
|
||||
"schema" : { "dataSource":"randseq",
|
||||
"aggregators":[ {"type":"count", "name":"events"},
|
||||
{"type":"doubleSum","name":"outColumn","fieldName":"inColumn"} ],
|
||||
"indexGranularity":"minute",
|
||||
"shardSpec" : { "type": "none" } },
|
||||
"config" : { "maxRowsInMemory" : 50000,
|
||||
"intermediatePersistPeriod" : "PT10m" },
|
||||
"schema": {
|
||||
"dataSource": "randseq",
|
||||
"aggregators": [
|
||||
{"type": "count", "name": "events"},
|
||||
{"type": "doubleSum", "name": "outColumn", "fieldName": "inColumn"}
|
||||
],
|
||||
"indexGranularity": "minute",
|
||||
"shardSpec": {"type": "none"}
|
||||
},
|
||||
|
||||
"firehose" : { "type" : "rand",
|
||||
"sleepUsec": 100000,
|
||||
"maxGeneratedRows" : 5000000,
|
||||
"seed" : 0,
|
||||
"nTokens" : 19,
|
||||
"nPerSleep" : 3
|
||||
},
|
||||
"config": {
|
||||
"maxRowsInMemory": 50000,
|
||||
"intermediatePersistPeriod": "PT10m"
|
||||
},
|
||||
|
||||
"plumber" : { "type" : "realtime",
|
||||
"windowPeriod" : "PT5m",
|
||||
"segmentGranularity":"hour",
|
||||
"basePersistDirectory" : "/tmp/realtime/basePersist" }
|
||||
"firehose": {
|
||||
"type": "rand",
|
||||
"sleepUsec": 100000,
|
||||
"maxGeneratedRows": 5000000,
|
||||
"seed": 0,
|
||||
"nTokens": 19,
|
||||
"nPerSleep": 3
|
||||
},
|
||||
|
||||
"plumber": {
|
||||
"type": "realtime",
|
||||
"windowPeriod": "PT5m",
|
||||
"segmentGranularity": "hour",
|
||||
"basePersistDirectory": "/tmp/realtime/basePersist"
|
||||
}
|
||||
}]
|
||||
|
|
|
@ -1,36 +1,44 @@
|
|||
[{
|
||||
"schema" : { "dataSource":"twitterstream",
|
||||
"aggregators":[
|
||||
{"type":"count", "name":"tweets"},
|
||||
{"type":"doubleSum","fieldName":"follower_count","name":"total_follower_count"},
|
||||
{"type":"doubleSum","fieldName":"retweet_count","name":"total_retweet_count"},
|
||||
{"type":"doubleSum","fieldName":"friends_count","name":"total_friends_count"},
|
||||
{"type":"doubleSum","fieldName":"statuses_count","name":"total_statuses_count"},
|
||||
"schema": {
|
||||
"dataSource": "twitterstream",
|
||||
"aggregators": [
|
||||
{"type": "count", "name": "tweets"},
|
||||
{"type": "doubleSum", "fieldName": "follower_count", "name": "total_follower_count"},
|
||||
{"type": "doubleSum", "fieldName": "retweet_count", "name": "total_retweet_count" },
|
||||
{"type": "doubleSum", "fieldName": "friends_count", "name": "total_friends_count" },
|
||||
{"type": "doubleSum", "fieldName": "statuses_count", "name": "total_statuses_count"},
|
||||
|
||||
{"type":"min","fieldName":"follower_count","name":"min_follower_count"},
|
||||
{"type":"max","fieldName":"follower_count","name":"max_follower_count"},
|
||||
{"type": "min", "fieldName": "follower_count", "name": "min_follower_count"},
|
||||
{"type": "max", "fieldName": "follower_count", "name": "max_follower_count"},
|
||||
|
||||
{"type":"min","fieldName":"friends_count","name":"min_friends_count"},
|
||||
{"type":"max","fieldName":"friends_count","name":"max_friends_count"},
|
||||
{"type": "min", "fieldName": "friends_count", "name": "min_friends_count"},
|
||||
{"type": "max", "fieldName": "friends_count", "name": "max_friends_count"},
|
||||
|
||||
{"type":"min","fieldName":"statuses_count","name":"min_statuses_count"},
|
||||
{"type":"max","fieldName":"statuses_count","name":"max_statuses_count"},
|
||||
{"type": "min", "fieldName": "statuses_count", "name": "min_statuses_count"},
|
||||
{"type": "max", "fieldName": "statuses_count", "name": "max_statuses_count"},
|
||||
|
||||
{"type":"min","fieldName":"retweet_count","name":"min_retweet_count"},
|
||||
{"type":"max","fieldName":"retweet_count","name":"max_retweet_count"}
|
||||
],
|
||||
"indexGranularity":"minute",
|
||||
"shardSpec" : { "type": "none" } },
|
||||
"config" : { "maxRowsInMemory" : 50000,
|
||||
"intermediatePersistPeriod" : "PT2m" },
|
||||
{"type": "min", "fieldName": "retweet_count", "name": "min_retweet_count"},
|
||||
{"type": "max", "fieldName": "retweet_count", "name": "max_retweet_count"}
|
||||
],
|
||||
"indexGranularity": "minute",
|
||||
"shardSpec": {"type": "none"}
|
||||
},
|
||||
|
||||
"firehose" : { "type" : "twitzer",
|
||||
"maxEventCount": 50000,
|
||||
"maxRunMinutes" : 10
|
||||
},
|
||||
"config": {
|
||||
"maxRowsInMemory": 50000,
|
||||
"intermediatePersistPeriod": "PT2m"
|
||||
},
|
||||
|
||||
"plumber" : { "type" : "realtime",
|
||||
"windowPeriod" : "PT3m",
|
||||
"segmentGranularity":"hour",
|
||||
"basePersistDirectory" : "/tmp/twitter_realtime/basePersist" }
|
||||
"firehose": {
|
||||
"type": "twitzer",
|
||||
"maxEventCount": 50000,
|
||||
"maxRunMinutes": 10
|
||||
},
|
||||
|
||||
"plumber": {
|
||||
"type": "realtime",
|
||||
"windowPeriod": "PT3m",
|
||||
"segmentGranularity": "hour",
|
||||
"basePersistDirectory": "/tmp/twitter_realtime/basePersist"
|
||||
}
|
||||
}]
|
||||
|
|
Loading…
Reference in New Issue