You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use case : "Identifying a data base which supports 1.08 million events per hour"
Steps I am following :
I am populating data in InfluxDB by using Java API. ( Not using bulk_data_gen and bulk_data_load tools ) .
In my Data model, I have one measurement with 1 million rows. All tags and keys are String field.
now I am using "bulk_query_gen " tool to generate queries and write it into a file.
I have modified the tool to create queries like "select from measurement where time < X and Time < y"
Use case : "Identifying a data base which supports 1.08 million events per hour"
Steps I am following :
bulk_data_gen
and bulk_data_load tools ) .I have modified the tool to create queries like "select from measurement where time < X and Time < y"
Bulk_gen_query tool
./bulk_query_gen --debug=0 --seed=321 --format=influx-http --timestamp-end="2016-01-18T14:44:00Z" -queries=1000000 --query-type="1-host-1-hr" --db="benchmark" --debug 1 | gzip > EventQueries1M.gz
** Query_Benchmarker_tool**
bash-3.2$
cat EventQueries1M.gz | gunzip | ./query_benchmarker_influxdb --url=http://localhost:8086 --print-interval=0 –limit=1000 --workers=2 --print-responses=true -- db="benchmark" --debug 1
**2017/01/27 21:45:51 Error during request: dialing to the given TCP address timed out**
( If the query size is > 10k, I am running into this issue )
Please note, I could reproduce this issue without making any changes to the benchmarking tool.
The text was updated successfully, but these errors were encountered: