Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Panic on 1.0-rc1 (runtime: goroutine stack exceeds 1000000000-byte limit) #7225

Closed
liv3d opened this issue Aug 27, 2016 · 2 comments
Closed

Comments

@liv3d
Copy link

liv3d commented Aug 27, 2016

System info:
InfluxDB 1.0-rc1
CentOS 7

Similar to #7180 (but I don't have a 23 million series database this time, it's currently at 610k), we tried upgrading to rc1 but I got another/different panic on start up 馃槥

log output is here: https://gist.github.com/liv3d/1adddd6452be7a5de462f7ac3b2a611e

@jwilder / @benbjohnson I can grab a backup of any data or any more stats if you want more information. Otherwise is there a nightly with #7196 in and we can try that?

@liv3d liv3d changed the title Panic on 1.0-rc1 Panic on 1.0-rc1 (runtime: goroutine stack exceeds 1000000000-byte limit) Aug 27, 2016
@kostasb
Copy link

kostasb commented Aug 29, 2016

I was able to consistently reproduce this error with the following steps on 1.0-rc1:

> create database md
> use md
Using database md
> alter retention policy autogen on md duration 1h replication 1 shard duration 1m
> insert tester,taga=ena fielda=1
> insert tester,taga=beta fielda=2
> CREATE CONTINUOUS QUERY mycq1 ON md BEGIN SELECT count(distinct(fielda)) AS countfielda INTO md.autogen.cq1 FROM md.autogen.tester GROUP BY time(1m), taga END

> CREATE CONTINUOUS QUERY mycq2 ON md BEGIN SELECT sum(countfielda) AS sumcount INTO md.autogen.cq2 FROM md.autogen.cq1 GROUP BY time(5m), taga END
> insert tester,taga=ena fielda=1
> insert tester,taga=ena fielda=2
> insert tester,taga=ena fielda=3
> insert tester,taga=ena fielda=4
> insert tester,taga=beta fielda=1

...wait a couple mins

> show shards
name: md
--------
id  database    retention_policy    shard_group start_time      end_time        expiry_time     owners
4   md      autogen         4       2016-08-29T14:25:00Z    2016-08-29T14:26:00Z    2016-08-29T15:26:00Z    
2   md      autogen         2       2016-08-29T14:28:00Z    2016-08-29T14:29:00Z    2016-08-29T15:29:00Z    
3   md      autogen         3       2016-08-29T14:29:00Z    2016-08-29T14:30:00Z    2016-08-29T15:30:00Z    

> select * from cq2
name: cq2
---------
time            sumcount    taga
1472480700000000000 2       beta
1472480700000000000 4       ena


...wait a couple minutes

> insert cq1,taga=ena countfielda=1
...(write is accepted while it should be dropped with "field type conflict" error)

> select * from cq1
ERR: unexpected EOF
> 

Configuration standard except for:

  cache-snapshot-write-cold-duration = "5s"
  compact-full-write-cold-duration = "5s"

Logfile with stack trace attached:

overflow.log.gz

@jwilder
Copy link
Contributor

jwilder commented Aug 29, 2016

Fixed via #7232

@jwilder jwilder closed this as completed Aug 29, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants