I have a new install of influxdb 1.2 with no changes in
/etc/influx/influxdb.conf.
I am trying to learn about influxdb to handle some time series data. I
have an example data set with 25 million entries. (about 3 months worth of
data). I'd like to be able to store about 100 million entries.
Anyway, I am trying to load these 25 million entries and it appears that it
is stops adding new row after 10.6 million rows.
What I did what generate a file with the data in it with 4000 lines at a
time and used:
curl -i -XPOST 'http://localhost:8086/write?db=lmod'
--data-binary=@/tmp/file.dat
inside a program.
I can see the number of row grow until I get to 10.6 million even though
the program loading the data is still running. I even tried loading one
row by hand:
> select count(*) from usage;
name: usage
time count_user
---- ----------
0 10694690
> insert
usage,module="gcc/4.9.1",path="/opt/apps/modulefiles/gcc/4.9.1.lua",syshost="maverick"
user="tg456090" 1484891995000000000
> select count(*) from usage;
name: usage
time count_user
---- ----------
0 10694690
If it matters, I'm running on a ubuntu 16.10 box with 32GB memory and the
database is written on an SSD. There is plenty of room on the SSD for the
database. I don't think I'm running out of ram.
What am I missing? Is there some configuration setting I don't have. Is
there some documentation that talks about this?
Thanks for your help!
--
Remember to include the version number!
---
You received this message because you are subscribed to the Google Groups
"InfluxData" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/influxdb.
To view this discussion on the web visit
https://groups.google.com/d/msgid/influxdb/79139a92-2dc2-44d5-87c5-e298507b5b33%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.