Boost Help
Moderators: Developers, Moderators
-
- Cacti User
- Posts: 77
- Joined: Thu Nov 13, 2008 2:30 pm
Boost Help
I'm having issues with the latest boost, PIA and cacti.
I keep getting errors about overrun's and CMDPHP: Poller[0] ERROR: A DB Exec Failed!, Error:'1114', SQL:"INSERT INTO poller_output_boost
My settings are:
1hr
500000
2000 Data Sources
64000
9999999999
2gb
40 minutes
I have rrdupdate and cache as well.
I keep getting errors about overrun's and CMDPHP: Poller[0] ERROR: A DB Exec Failed!, Error:'1114', SQL:"INSERT INTO poller_output_boost
My settings are:
1hr
500000
2000 Data Sources
64000
9999999999
2gb
40 minutes
I have rrdupdate and cache as well.
-
- Cacti User
- Posts: 77
- Joined: Thu Nov 13, 2008 2:30 pm
Here is my boost ouput.
Boost On Demand Updating: Running
Total Data Sources: 137685
Total Boost Records: 1809404
Boost Storage Statistics
Database Engine: MEMORY
Current Boost Table Size: 975 MBytes
Avg Bytes/Record: 545 Bytes
Max Record Length: 30 Bytes
Max Allowed Boost Table Size: 956 MBytes
Estimated Maximum Records: 1838599 Records
Previous Runtime
Last Start Time: 2009-02-27 7:16:44
Last Run Duration: 1117.3391 Seconds
RRD Updates: 1852204
Peak Poller Memory: 46.05 MBytes
Max Poller Memory Allowed: 2048 MBytes
Run Time Configuration
Update Frequency: 1 Hour
Next Start Time: 2009-02-27 8:16:27
Maximum Records: 500000 Records
Maximum Allowed Runtime: 40 Minutes
Boost Server Details
Server Config Status: Enabled
Multiprocess Server: Multiple Process
Update Timeout: 2 Seconds
Server/Port: localhost@9050
Authorized Update Web Servers: 127.0.0.1
RRDtool Binary Used: /usr/bin/rrdupdate
Image Caching
Image Cacing Status: Enabled
Cache Directory: /var/www/html/cache
Cached Files: 0 Files
Cached Files Size: 0 Bytes
Boost On Demand Updating: Running
Total Data Sources: 137685
Total Boost Records: 1809404
Boost Storage Statistics
Database Engine: MEMORY
Current Boost Table Size: 975 MBytes
Avg Bytes/Record: 545 Bytes
Max Record Length: 30 Bytes
Max Allowed Boost Table Size: 956 MBytes
Estimated Maximum Records: 1838599 Records
Previous Runtime
Last Start Time: 2009-02-27 7:16:44
Last Run Duration: 1117.3391 Seconds
RRD Updates: 1852204
Peak Poller Memory: 46.05 MBytes
Max Poller Memory Allowed: 2048 MBytes
Run Time Configuration
Update Frequency: 1 Hour
Next Start Time: 2009-02-27 8:16:27
Maximum Records: 500000 Records
Maximum Allowed Runtime: 40 Minutes
Boost Server Details
Server Config Status: Enabled
Multiprocess Server: Multiple Process
Update Timeout: 2 Seconds
Server/Port: localhost@9050
Authorized Update Web Servers: 127.0.0.1
RRDtool Binary Used: /usr/bin/rrdupdate
Image Caching
Image Cacing Status: Enabled
Cache Directory: /var/www/html/cache
Cached Files: 0 Files
Cached Files Size: 0 Bytes
- TheWitness
- Developer
- Posts: 17007
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
- Contact:
You are running out of space on the boost table:
1) Read the documentation!!
2) flush table "php -q poller_boost.php -f"
3) edit my.cnf and increase "max_heap_table_size="to something bigger""
4) restart mysql
5) resize the output column in mysql "alter table poller_output_boost modify column output varchar(100) not null default ''"
TheWitness
You need to do a few things:Total Boost Records: 1809404
Database Engine: MEMORY
Current Boost Table Size: 975 MBytes
Avg Bytes/Record: 545 Bytes
Max Record Length: 30 Bytes
Max Allowed Boost Table Size: 956 MBytes
Estimated Maximum Records: 1838599 Records
1) Read the documentation!!
2) flush table "php -q poller_boost.php -f"
3) edit my.cnf and increase "max_heap_table_size="to something bigger""
4) restart mysql
5) resize the output column in mysql "alter table poller_output_boost modify column output varchar(100) not null default ''"
TheWitness
True understanding begins only when we realize how little we truly understand...
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
-
- Cacti User
- Posts: 77
- Joined: Thu Nov 13, 2008 2:30 pm
1) Read the documentation!!
Where do I find this?
2) flush table "php -q poller_boost.php -f"
done
3) edit my.cnf and increase "max_heap_table_size="to something bigger""
max_heap_table_size = 4G
4) restart mysql
done
5) resize the output column in mysql "alter table poller_output_boost modify column output varchar(100) not null default ''"
I tried this and it doesn't like it.....
ALTER TABLE `poller_output_boost` COLUMN `output` varchar(100) NOT NULL default;
Any ideas?
thanks in advance?
Where do I find this?
2) flush table "php -q poller_boost.php -f"
done
3) edit my.cnf and increase "max_heap_table_size="to something bigger""
max_heap_table_size = 4G
4) restart mysql
done
5) resize the output column in mysql "alter table poller_output_boost modify column output varchar(100) not null default ''"
I tried this and it doesn't like it.....
ALTER TABLE `poller_output_boost` COLUMN `output` varchar(100) NOT NULL default;
Any ideas?
thanks in advance?
- TheWitness
- Developer
- Posts: 17007
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
- Contact:
you missed the word "MODIFY".
TheWitness
TheWitness
True understanding begins only when we realize how little we truly understand...
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
- TheWitness
- Developer
- Posts: 17007
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
- Contact:
Also "DEFAULT '' ";
True understanding begins only when we realize how little we truly understand...
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
- TheWitness
- Developer
- Posts: 17007
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
- Contact:
You should have simply copied and pasted my note. I will change to tag.
Code: Select all
ALTER TABLE poller_output_boost MODIFY COLUMN output VARCHAR(100) NOT NULL DEFAULT ''
True understanding begins only when we realize how little we truly understand...
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
-
- Cacti User
- Posts: 77
- Joined: Thu Nov 13, 2008 2:30 pm
-
- Cacti User
- Posts: 77
- Joined: Thu Nov 13, 2008 2:30 pm
Hmmm....
Any other ideas?
Any other ideas?
Code: Select all
02/27/2009 06:14:49 PM - SYSTEM STATS: Time:47.3944 Method:spine Processes:14 Threads:50 Hosts:743 HostsPerProcess:54 DataSources:134869 RRDsProcessed:0
02/27/2009 06:14:49 PM - BOOST SVR: Poller[0] WARNING: Detected Poller Boost Overrun, Possible Boost Poller Crash
- TheWitness
- Developer
- Posts: 17007
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
- Contact:
What's your maximum run time set to? Its a harmless warning, but there to warn you of something possibly wrong.
TheWitness
TheWitness
True understanding begins only when we realize how little we truly understand...
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
-
- Cacti User
- Posts: 77
- Joined: Thu Nov 13, 2008 2:30 pm
- TheWitness
- Developer
- Posts: 17007
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
- Contact:
I always let it run no more frequently than once an hour or two. Also, no cron is required.
TheWitness
TheWitness
True understanding begins only when we realize how little we truly understand...
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
-
- Cacti User
- Posts: 77
- Joined: Thu Nov 13, 2008 2:30 pm
[SOLVED]
I ended up blowing everything away and starting over. This time I did not import the sql file and the errors went away.
Now I am getting poller output being emtpy which I will start a new thread for.
Thanks for the help!!
Now I am getting poller output being emtpy which I will start a new thread for.
Thanks for the help!!
- TheWitness
- Developer
- Posts: 17007
- Joined: Tue May 14, 2002 5:08 pm
- Location: MI, USA
- Contact:
Wow pretty drastic, but if it worked ...
TheWitness
TheWitness
True understanding begins only when we realize how little we truly understand...
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
Life is an adventure, let yours begin with Cacti!
Author of dozens of Cacti plugins and customization's. Advocate of LAMP, MariaDB, IBM Spectrum LSF and the world of batch. Creator of IBM Spectrum RTM, author of quite a bit of unpublished work and most of Cacti's bugs.
_________________
Official Cacti Documentation
GitHub Repository with Supported Plugins
Percona Device Packages (no support)
Interesting Device Packages
For those wondering, I'm still here, but lost in the shadows. Yearning for less bugs. Who want's a Cacti 1.3/2.0? Streams anyone?
Who is online
Users browsing this forum: No registered users and 0 guests