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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dev.icinga.com #12597] With too many comments, Icinga reload process won't finish reconnecting to Database #4603

Closed
icinga-migration opened this issue Aug 30, 2016 · 16 comments · Fixed by #5025
Assignees
Labels
area/db-ido Database output blocker Blocks a release or needs immediate attention bug Something isn't working
Milestone

Comments

@icinga-migration
Copy link

This issue has been migrated from Redmine: https://dev.icinga.com/issues/12597

Created by itbess on 2016-08-30 20:11:59 +00:00

Assignee: mfriedrich
Status: Assigned (closed on 2016-11-22 15:00:02 +00:00)
Target Version: 2.6.2
Last Update: 2017-01-11 13:20:57 +00:00 (in Redmine)

Icinga Version: 2.5.3
Backport?: Not yet backported
Include in Changelog: 1

We recently updated from 2.4.10 to 2.5.3.
After the update the Icinga Process ran fine for a short time but then we exprienced that the IDO won't be updated.

The Logfile has the following entry:

[2016-08-30 06:40:00 -0400] critical/IdoMysqlConnection: Error "Commands out of sync; you can't run this command now" when executing query "DELETE FROM icinga_comments WHERE
...
...
>> Very Long SQL Statement <<
...
...
[2016-08-30 06:40:44 -0400] critical/IdoMysqlConnection: Error "MySQL server has gone away" when executing query "DELETE FROM icinga_comments WHERE instance_id = 1 AND session_token <> 1472520438"
[2016-08-30 06:40:44 -0400] critical/IdoMysqlConnection: Exception during database operation: Verify that your database is operational!
[2016-08-30 06:40:44 -0400] critical/IdoMysqlConnection: Exception during database operation: Verify that your database is operational!
[2016-08-30 06:40:44 -0400] information/IdoMysqlConnection: MySQL IDO instance id: 1 (schema version: '1.14.1')

This long statement deletes and reads every comment from the comments table.
When I copy the statement into a file and run it manually, it will work and the reload finishes.

We have around 18000 Comments. When I delete about the halve of them, then it works.

Changesets

2016-11-22 14:56:05 +00:00 by mfriedrich b028ff2

DB IDO: Make sure that all result sets are processed before sending another query

fixes #12597

2016-11-23 06:50:43 +00:00 by mfriedrich ad0604d

DB IDO: Make sure that all result sets are processed before sending another query

fixes #12597

2016-11-25 14:53:07 +00:00 by mfriedrich d076617

Revert "DB IDO: Make sure that all result sets are processed before sending another query"

This reverts commit b028ff2c33cc580d6cb0c063575d77a2f18ad0b1.

refs #12597
refs #13321

2016-11-28 11:13:34 +00:00 by gbeutner 79ecda5

Revert "DB IDO: Make sure that all result sets are processed before sending another query"

This reverts commit ad0604d7ea1abb78f853d13ffcde7509542f7878.

refs #12597
@icinga-migration
Copy link
Author

Updated by gbeutner on 2016-08-30 21:33:29 +00:00

  • Status changed from New to Feedback
  • Assigned to set to itbess

Can you show me the output for "SHOW FULL PROCESSLIST" from right before the MySQL client connection was closed (Error "MySQL server has gone away")?

@icinga-migration
Copy link
Author

Updated by itbess on 2016-08-31 05:57:32 +00:00

gunnarbeutner wrote:

Can you show me the output for "SHOW FULL PROCESSLIST" from right before the MySQL client connection was closed (Error "MySQL server has gone away")?

I can't seem to find anything in there.It just shows that long statement and then nothing.

@icinga-migration
Copy link
Author

Updated by itbess on 2016-09-01 01:35:28 +00:00

I deleted halve of all the comments, now the reload works.
The threshold for that Bug to hit seems to be about 10k comment files in the api folder.

@icinga-migration
Copy link
Author

Updated by gbeutner on 2016-09-01 05:43:37 +00:00

I'd still be interested in the output, in particular the time the command has been running.

@icinga-migration
Copy link
Author

Updated by itbess on 2016-09-08 20:38:26 +00:00

gunnarbeutner wrote:

I'd still be interested in the output, in particular the time the command has been running.

Problem is that as soon as that commadn runs my screen will be filled with text from that long statement so it is not easy to get anything

It also seems like it is not just comments but also downtimes that affect this.

@icinga-migration
Copy link
Author

Updated by PowellEB on 2016-09-09 04:50:25 +00:00

...
...
2953 icinga fitu08p237:8742 icinga Query 0 updating DELETE FROM icinga_runtimevariables WHERE instance_id = 1 0.000

ERROR 2020 (HY000) at line 1: Got packet bigger than max_allowed_packet bytes
2953 icinga fitu08p237:8742 icinga Query 0 updating UPDATE icinga_comments SET author_name = 'IC2NA',...
...

Was able to capture this by:
while true; do mysql -uroot -p#### -s -e 'show full processlist;'; sleep .25; done|grep -v 'show full processlist'

We have "max_allowed_packet" set to 1024M, which is the max, but this still fails.

@icinga-migration
Copy link
Author

Updated by gbeutner on 2016-11-17 10:50:49 +00:00

  • Target Version set to 2.6.0

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2016-11-22 14:57:27 +00:00

  • Status changed from Feedback to Assigned
  • Assigned to changed from itbess to mfriedrich

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2016-11-22 15:00:02 +00:00

  • Status changed from Assigned to Resolved
  • Done % changed from 0 to 100

Applied in changeset b028ff2.

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2016-11-22 15:09:16 +00:00

Steps to reproduce:

  • An amount of 25000 objects which would cause a call to FinishAsyncQueries()
const countHosts = 3;
const countServices = 3000;


for (i in range(countHosts)) {
  object Host "many-test-" + i use (i) {
    check_command = "random"
    address = "127.0.0.1"

    if (i == 2000) {
      vars.test = "abc"
    }
  }
}

object CheckCommand "sleep" {
  command = [ "/bin/sleep", 30 ]
}

for (j in range(countServices)) {
  apply Service "many-test-" + j {
    check_command = "sleep"

    check_interval = 30m
    retry_interval = 30m

    vars.http_uri = "/"

    for (k in range(5)) {
      vars["key" + k] = k
    }
    //log(host.name)
    //var f = get_host(host.name)
    assign where match("many*", host.name)
  }
}
  • A lot of comments, e.g. 9000 or more, runtime created.
$ curl -k -s -u root:icinga -H 'Accept: application/json' -X POST https://localhost:5665/v1/actions/add-comment -d '{ "type": "Service", "filter": true, "author": "michi", "comment": "ido test2" }'
  • Queries which cause an UPSERT (comments, downtimes at startup)
  • Queries which are not located at the end of the query queue task and have a callback (i.e. upsert, where affected rows = 0, and re-inserting an insert query)

The code parts inside IdoMysqlConnection::FinishAsyncQueries() create a small portion of a query string based on max_allowed_packet setting. In order to trigger this error soon enough it is reasonable to modify the mysqld setting inside the mysql/mariadb server.

# cat /usr/local/etc/my.cnf
[mysqld]
user=michi
max_allowed_packet=128K

64K is the lowest, 128K works fine. That small query buffer with many delete/insert comments queries is then fired against the mysql server.

After firing the query, all result sets must be fetched before firing another query. Inside the loop for fetching the result sets, there also is evaluation of a callback.
This callback is immediately fired - therefore the described bug behaviour is correct about "Commands out of sync". The callback stops reading the received result sets and fires another query (FinishExecuteQuery() is the one which gets called which again results in FinishAsyncQueries()). MysqL server says "no".

The fix for this issue is to store the result sets for later processing, but fetching them all at first glance. Once done, further result set processing for callbacks is initiated.

Please test the git master in your environments. We've properly tested this working.

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2016-11-25 14:56:36 +00:00

  • Status changed from Resolved to Assigned

Unfortunately this does not entirely fix the problem, causing #13321. Reverted the patch in git master.

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2016-12-05 11:40:42 +00:00

  • Priority changed from Normal to High
  • Target Version deleted 2.6.0
  • Done % changed from 100 to 0

This bug requires more investigation. I'm removing the release target in favour of QA and testing for 2.6 already going on. Once we find the root cause we'll release a version including this bugfix and tests.

@icinga-migration
Copy link
Author

Updated by mfriedrich on 2017-01-11 13:20:57 +00:00

  • Target Version set to 2.6.2

@icinga-migration icinga-migration added blocker Blocks a release or needs immediate attention bug Something isn't working area/db-ido Database output labels Jan 17, 2017
@icinga-migration icinga-migration added this to the 2.6.2 milestone Jan 17, 2017
@dnsmichi dnsmichi modified the milestones: 2.6.2, 2.7.0 Feb 8, 2017
@dnsmichi
Copy link
Contributor

While replying here https://monitoring-portal.org/index.php?thread/39916-commands-out-of-sync-you-can-t-run-this-command-now/&postID=244475#post244475 I was thinking about removing the entire "replace into" thing with delete/update-insert logic. This attempt tried to solve empty web interfaces on a config reload, which where caused by simple delete/insert queries. It might be worthwhile to reconsider and remove the "improvement" sticking with the old behaviour of using the session_token.

@dnsmichi
Copy link
Contributor

dnsmichi commented Feb 22, 2017

Ignore my comment above.

To summarize the underlaying issue - CLIENT_MULTI_STATEMENTS requires us to fetch the entire result set. During this period of time (a loop iterating over all queries) we cannot execute a query in the same scope.

I've added further query debug log (only for debug builds) and was looking for those query callbacks. The attempt in #4807 somehow causes the result sets being processed after retrieving them, but unveils another bug with contactnotifications queries - they're endlessly rescheduled. I have no idea why exactly, but this bug hides that behaviour.

Another idea - which callbacks are actually registered for these queries? The main cause for comments and downtimes running into "out of sync command errors" is the "upsert" query logic. Once an UPDATE is executed, and does not affect any rows, FinishExecuteQuery() will fire another query which adds DELETE/INSERT and fires the query again.

Actually it immediately attempts to execute the query, and does not enqueue it into the QueryQueue. This is mainly where the command out of sync error comes from. There are no other callbacks registered for such upsert queries, but it probably could happen in the future - keep this in mind.

Changing the code parts to enqueue the query fixes the "out of sync" issue.

I'll keep testing the patch in a branch for a little longer before actually merging it to master.

https://github.com/Icinga/icinga2/tree/fix/ido-resultset-4603

Tests

Requires to lower the packet size again.

# vim /usr/local/etc/my.cnf

[mysqld]
user=michi
max_allowed_packet=128K

# brew services restart mariadb

# mysql

MariaDB [(none)]> select @@global.max_allowed_packet;
+-----------------------------+
| @@global.max_allowed_packet |
+-----------------------------+
|                      131072 |
+-----------------------------+
1 row in set (0.00 sec)

Bug

[2017-02-22 17:23:37 +0100] information/IdoMysqlConnection: MySQL IDO instance id: 1 (schema version: '1.14.2')
[2017-02-22 17:23:38 +0100] information/RedisWriter: Trying to reconnect to redis server
[2017-02-22 17:23:38 +0100] information/RedisWriter: Unable to reconnect to redis server: Waiting for next attempt
[2017-02-22 17:23:39 +0100] warning/ThreadPool: Event call took 0.74339s
[2017-02-22 17:23:43 +0100] information/Checkable: Checking for configured notifications for object '11686-host'
[2017-02-22 17:23:43 +0100] information/Checkable: Checkable '11686-host' does not have any notifications.
[2017-02-22 17:23:46 +0100] critical/IdoMysqlConnection: Error "Commands out of sync; you can't run this command now" when executing query "DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '6001' AND object_id = 390;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '281950', '1', '0', 1, '6001', '1', 'many-test-0!ping4!mbmif.int.netways.de-1487778706-1', 390, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '6002' AND object_id = 390;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '10481', '1', '0', 1, '6002', '1', 'many-test-0!ping4!mbmif.int.netways.de-1487779133-1', 390, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '4' AND object_id = 404;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '51767', '1', '0', 1, '4', '1', 'many-test-0!many-test-1!mbmif.int.netways.de-1487779133-3', 404, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '3' AND object_id = 404;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '299441', '1', '0', 1, '3', '1', 'many-test-0!many-test-1!mbmif.int.netways.de-1487778706-2', 404, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '2' AND object_id = 401;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '31869', '1', '0', 1, '2', '1', 'many-test-0!many-test-0!mbmif.int.netways.de-1487779133-2', 401, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '1' AND object_id = 401;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '309953', '1', '0', 1, '1', '1', 'many-test-0!many-test-0!mbmif.int.netways.de-1487778706-3', 401, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '4448' AND object_id = 409;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '97086', '1', '0', 1, '4448', '1', 'many-test-0!many-test-3!mbmif.int.netways.de-1487779133-5', 409, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '4447' AND object_id = 409;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '331229', '1', '0', 1, '4447', '1', 'many-test-0!many-test-3!mbmif.int.netways.de-1487778706-5', 409, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '2226' AND object_id = 407;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '73021', '1', '0', 1, '2226', '1', 'many-test-0!many-test-2!mbmif.int.netways.de-1487779133-4', 407, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '2225' AND object_id = 407;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '320421', '1', '0', 1, '2225', '1', 'many-test-0!many-test-2!mbmif.int.netways.de-1487778706-4', 407, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '4669' AND object_id = 411;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '342371', '1', '0', 1, '4669', '1', 'many-test-0!many-test-4!mbmif.int.netways.de-1487778706-6', 411, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '4670' AND object_id = 411;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '137722', '1', '0', 1, '4670', '1', 'many-test-0!many-test-4!mbmif.int.netways.de-1487779133-7', 411, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '4892' AND object_id = 413;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '179749', '1', '0', 1, '4892', '1', 'many-test-0!many-test-5!mbmif.int.netways.de-1487779133-9', 413, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '4891' AND object_id = 413;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '353593', '1', '0', 1, '4891', '1', 'many-test-0!many-test-5!mbmif.int.netways.de-1487778706-7', 413, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '5114' AND object_id = 416;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '241640', '1', '0', 1, '5114', '1', 'many-test-0!many-test-6!mbmif.int.netways.de-1487779133-12', 416, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '5113' AND object_id = 416;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '363724', '1', '0', 1, '5113', '1', 'many-test-0!many-test-6!mbmif.int.netways.de-1487778706-8', 416, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '5335' AND object_id = 418;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '374669', '1', '0', 1, '5335', '1', 'many-test-0!many-test-7!mbmif.int.netways.de-1487778706-9', 418, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '5337' AND object_id = 418;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '303204', '1', '0', 1, '5337', '1', 'many-test-0!many-test-7!mbmif.int.netways.de-1487779133-15', 418, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '5557' AND object_id = 423;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '397036', '1', '0', 1, '5557', '1', 'many-test-0!many-test-8!mbmif.int.netways.de-1487778706-11', 423, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '5558' AND object_id = 423;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '344038', '1', '0', 1, '5558', '1', 'many-test-0!many-test-8!mbmif.int.netways.de-1487779133-17', 423, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '5780' AND object_id = 426;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '407995', '1', '0', 1, '5780', '1', 'many-test-0!many-test-9!mbmif.int.netways.de-1487779133-20', 426, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '5779' AND object_id = 426;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '408041', '1', '0', 1, '5779', '1', 'many-test-0!many-test-9!mbmif.int.netways.de-1487778706-12', 426, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '5' AND object_id = 430;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '418960', '1', '0', 1, '5', '1', 'many-test-0!many-test-10!mbmif.int.netways.de-1487778706-13', 430, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '6' AND object_id = 430;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '450122', '1', '0', 1, '6', '1', 'many-test-0!many-test-10!mbmif.int.netways.de-1487779133-22', 430, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '449' AND object_id = 436;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '451786', '1', '0', 1, '449', '1', 'many-test-0!many-test-12!mbmif.int.netways.de-1487778706-16', 436, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '450' AND object_id = 436;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '602154', '1', '0', 1, '450', '1', 'many-test-0!many-test-12!mbmif.int.netways.de-1487779133-29', 436, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '671' AND object_id = 439;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '463835', '1', '0', 1, '671', '1', 'many-test-0!many-test-13!mbmif.int.netways.de-1487778706-17', 439, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '672' AND object_id = 439;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '815354', '1', '0', 1, '672', '1', 'many-test-0!many-test-13!mbmif.int.netways.de-1487779133-37', 439, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '894' AND object_id = 442;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '728184', '1', '0', 1, '894', '1', 'many-test-0!many-test-14!mbmif.int.netways.de-1487779133-33', 442, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '893' AND object_id = 442;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '497361', '1', '0', 1, '893', '1', 'many-test-0!many-test-14!mbmif.int.netways.de-1487778706-20', 442, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '1116' AND object_id = 445;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '837852', '1', '0', 1, '1116', '1', 'many-test-0!many-test-15!mbmif.int.netways.de-1487779133-38', 445, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '1115' AND object_id = 445;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '519931', '1', '0', 1, '1115', '1', 'many-test-0!many-test-15!mbmif.int.netways.de-1487778706-22', 445, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '228' AND object_id = 433;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '537410', '1', '0', 1, '228', '1', 'many-test-0!many-test-11!mbmif.int.netways.de-1487779133-26', 433, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '227' AND object_id = 433;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '430279', '1', '0', 1, '227', '1', 'many-test-0!many-test-11!mbmif.int.netways.de-1487778706-14', 433, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '1337' AND object_id = 448;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '541584', '1', '0', 1, '1337', '1', 'many-test-0!many-test-16!mbmif.int.netways.de-1487778706-24', 448, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '1338' AND object_id = 448;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '943284', '1', '0', 1, '1338', '1', 'many-test-0!many-test-16!mbmif.int.netways.de-1487779133-43', 448, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '1560' AND object_id = 451;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '923115', '1', '0', 1, '1560', '1', 'many-test-0!many-test-17!mbmif.int.netways.de-1487779133-42', 451, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '1559' AND object_id = 451;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '564129', '1', '0', 1, '1559', '1', 'many-test-0!many-test-17!mbmif.int.netways.de-1487778706-26', 451, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779133) AND instance_id = 1 AND internal_comment_id = '1782' AND object_id = 454;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779133), '1', 215, FROM_UNIXTIME(1487779133), '964274', '1', '0', 1, '1782', '1', 'many-test-0!many-test-18!mbmif.int.netways.de-1487779133-44', 454, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '1781' AND object_id = 454;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '587769', '1', '0', 1, '1781', '1', 'many-test-0!many-test-18!mbmif.int.netways.de-1487778706-28', 454, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779134) AND instance_id = 1 AND internal_comment_id = '2228' AND object_id = 461;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779134), '1', 215, FROM_UNIXTIME(1487779134), '93533', '1', '0', 1, '2228', '1', 'many-test-0!many-test-20!mbmif.int.netways.de-1487779134-50', 461, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '2227' AND object_id = 461;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '632586', '1', '0', 1, '2227', '1', 'many-test-0!many-test-20!mbmif.int.netways.de-1487778706-32', 461, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '2449' AND object_id = 462;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '654786', '1', '0', 1, '2449', '1', 'many-test-0!many-test-21!mbmif.int.netways.de-1487778706-34', 462, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '2450' AND object_id = 462;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '352083', '1', '0', 1, '2450', '1', 'many-test-0!many-test-21!mbmif.int.netways.de-1487779135-51', 462, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779134) AND instance_id = 1 AND internal_comment_id = '2004' AND object_id = 459;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779134), '1', 215, FROM_UNIXTIME(1487779134), '7405', '1', '0', 1, '2004', '1', 'many-test-0!many-test-19!mbmif.int.netways.de-1487779134-46', 459, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '2003' AND object_id = 459;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '609674', '1', '0', 1, '2003', '1', 'many-test-0!many-test-19!mbmif.int.netways.de-1487778706-30', 459, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '2671' AND object_id = 466;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '677592', '1', '0', 1, '2671', '1', 'many-test-0!many-test-22!mbmif.int.netways.de-1487778706-36', 466, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '2672' AND object_id = 466;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '399483', '1', '0', 1, '2672', '1', 'many-test-0!many-test-22!mbmif.int.netways.de-1487779135-53', 466, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '2893' AND object_id = 469;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '702142', '1', '0', 1, '2893', '1', 'many-test-0!many-test-23!mbmif.int.netways.de-1487778706-38', 469, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '2894' AND object_id = 469;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '425219', '1', '0', 1, '2894', '1', 'many-test-0!many-test-23!mbmif.int.netways.de-1487779135-54', 469, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '3116' AND object_id = 472;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '477109', '1', '0', 1, '3116', '1', 'many-test-0!many-test-24!mbmif.int.netways.de-1487779135-56', 472, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '3115' AND object_id = 472;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '732579', '1', '0', 1, '3115', '1', 'many-test-0!many-test-24!mbmif.int.netways.de-1487778706-40', 472, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '3560' AND object_id = 479;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '569763', '1', '0', 1, '3560', '1', 'many-test-0!many-test-26!mbmif.int.netways.de-1487779135-60', 479, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '3559' AND object_id = 479;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '782919', '1', '0', 1, '3559', '1', 'many-test-0!many-test-26!mbmif.int.netways.de-1487778706-44', 479, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '3337' AND object_id = 474;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '761074', '1', '0', 1, '3337', '1', 'many-test-0!many-test-25!mbmif.int.netways.de-1487778706-42', 474, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '3339' AND object_id = 474;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '521580', '1', '0', 1, '3339', '1', 'many-test-0!many-test-25!mbmif.int.netways.de-1487779135-58', 474, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '3782' AND object_id = 481;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '615644', '1', '0', 1, '3782', '1', 'many-test-0!many-test-27!mbmif.int.netways.de-1487779135-62', 481, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '3781' AND object_id = 481;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '795972', '1', '0', 1, '3781', '1', 'many-test-0!many-test-27!mbmif.int.netways.de-1487778706-45', 481, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '4003' AND object_id = 484;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '837727', '1', '0', 1, '4003', '1', 'many-test-0!many-test-28!mbmif.int.netways.de-1487778706-48', 484, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '4004' AND object_id = 484;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '642020', '1', '0', 1, '4004', '1', 'many-test-0!many-test-28!mbmif.int.netways.de-1487779135-63', 484, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '4226' AND object_id = 487;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '710736', '1', '0', 1, '4226', '1', 'many-test-0!many-test-29!mbmif.int.netways.de-1487779135-66', 487, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '4225' AND object_id = 487;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '864607', '1', '0', 1, '4225', '1', 'many-test-0!many-test-29!mbmif.int.netways.de-1487778706-50', 487, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '4449' AND object_id = 569;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '885720', '1', '0', 1, '4449', '1', 'many-test-0!many-test-30!mbmif.int.netways.de-1487778706-52', 569, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '4450' AND object_id = 569;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '756921', '1', '0', 1, '4450', '1', 'many-test-0!many-test-30!mbmif.int.netways.de-1487779135-68', 569, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '4471' AND object_id = 570;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '913081', '1', '0', 1, '4471', '1', 'many-test-0!many-test-31!mbmif.int.netways.de-1487778706-54', 570, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '4472' AND object_id = 570;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '829807', '1', '0', 1, '4472', '1', 'many-test-0!many-test-31!mbmif.int.netways.de-1487779135-71', 570, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '4493' AND object_id = 571;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '948498', '1', '0', 1, '4493', '1', 'many-test-0!many-test-32!mbmif.int.netways.de-1487778706-57', 571, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '4494' AND object_id = 571;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '897142', '1', '0', 1, '4494', '1', 'many-test-0!many-test-32!mbmif.int.netways.de-1487779135-74', 571, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779135) AND instance_id = 1 AND internal_comment_id = '4516' AND object_id = 572;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779135), '1', 215, FROM_UNIXTIME(1487779135), '944890', '1', '0', 1, '4516', '1', 'many-test-0!many-test-33!mbmif.int.netways.de-1487779135-76', 572, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '4515' AND object_id = 572;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '974006', '1', '0', 1, '4515', '1', 'many-test-0!many-test-33!mbmif.int.netways.de-1487778706-59', 572, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4560' AND object_id = 574;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '140779', '1', '0', 1, '4560', '1', 'many-test-0!many-test-35!mbmif.int.netways.de-1487779136-84', 574, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4559' AND object_id = 574;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '29242', '1', '0', 1, '4559', '1', 'many-test-0!many-test-35!mbmif.int.netways.de-1487778707-63', 574, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4581' AND object_id = 575;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '58216', '1', '0', 1, '4581', '1', 'many-test-0!many-test-36!mbmif.int.netways.de-1487778707-65', 575, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4582' AND object_id = 575;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '162520', '1', '0', 1, '4582', '1', 'many-test-0!many-test-36!mbmif.int.netways.de-1487779136-85', 575, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4538' AND object_id = 573;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '38634', '1', '0', 1, '4538', '1', 'many-test-0!many-test-34!mbmif.int.netways.de-1487779136-80', 573, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778706) AND instance_id = 1 AND internal_comment_id = '4537' AND object_id = 573;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778706), '1', 215, FROM_UNIXTIME(1487778706), '998601', '1', '0', 1, '4537', '1', 'many-test-0!many-test-34!mbmif.int.netways.de-1487778706-61', 573, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4604' AND object_id = 576;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '256946', '1', '0', 1, '4604', '1', 'many-test-0!many-test-37!mbmif.int.netways.de-1487779136-89', 576, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4603' AND object_id = 576;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '99104', '1', '0', 1, '4603', '1', 'many-test-0!many-test-37!mbmif.int.netways.de-1487778707-68', 576, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4626' AND object_id = 577;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '329153', '1', '0', 1, '4626', '1', 'many-test-0!many-test-38!mbmif.int.netways.de-1487779136-92', 577, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4625' AND object_id = 577;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '115931', '1', '0', 1, '4625', '1', 'many-test-0!many-test-38!mbmif.int.netways.de-1487778707-69', 577, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4648' AND object_id = 578;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '398324', '1', '0', 1, '4648', '1', 'many-test-0!many-test-39!mbmif.int.netways.de-1487779136-95', 578, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4647' AND object_id = 578;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '154817', '1', '0', 1, '4647', '1', 'many-test-0!many-test-39!mbmif.int.netways.de-1487778707-72', 578, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4672' AND object_id = 579;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '445671', '1', '0', 1, '4672', '1', 'many-test-0!many-test-40!mbmif.int.netways.de-1487779136-97', 579, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4671' AND object_id = 579;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '182626', '1', '0', 1, '4671', '1', 'many-test-0!many-test-40!mbmif.int.netways.de-1487778707-74', 579, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4738' AND object_id = 582;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '676326', '1', '0', 1, '4738', '1', 'many-test-0!many-test-43!mbmif.int.netways.de-1487779136-107', 582, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4737' AND object_id = 582;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '322518', '1', '0', 1, '4737', '1', 'many-test-0!many-test-43!mbmif.int.netways.de-1487778707-84', 582, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4715' AND object_id = 581;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '266634', '1', '0', 1, '4715', '1', 'many-test-0!many-test-42!mbmif.int.netways.de-1487778707-80', 581, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4716' AND object_id = 581;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '605855', '1', '0', 1, '4716', '1', 'many-test-0!many-test-42!mbmif.int.netways.de-1487779136-104', 581, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4759' AND object_id = 583;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '361563', '1', '0', 1, '4759', '1', 'many-test-0!many-test-44!mbmif.int.netways.de-1487778707-87', 583, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4760' AND object_id = 583;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '721358', '1', '0', 1, '4760', '1', 'many-test-0!many-test-44!mbmif.int.netways.de-1487779136-109', 583, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4781' AND object_id = 584;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '397028', '1', '0', 1, '4781', '1', 'many-test-0!many-test-45!mbmif.int.netways.de-1487778707-90', 584, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4782' AND object_id = 584;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '790644', '1', '0', 1, '4782', '1', 'many-test-0!many-test-45!mbmif.int.netways.de-1487779136-112', 584, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4803' AND object_id = 585;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '439181', '1', '0', 1, '4803', '1', 'many-test-0!many-test-46!mbmif.int.netways.de-1487778707-93', 585, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4804' AND object_id = 585;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '857847', '1', '0', 1, '4804', '1', 'many-test-0!many-test-46!mbmif.int.netways.de-1487779136-115', 585, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4693' AND object_id = 580;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '225554', '1', '0', 1, '4693', '1', 'many-test-0!many-test-41!mbmif.int.netways.de-1487778707-77', 580, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4694' AND object_id = 580;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '514699', '1', '0', 1, '4694', '1', 'many-test-0!many-test-41!mbmif.int.netways.de-1487779136-100', 580, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4847' AND object_id = 587;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '518976', '1', '0', 1, '4847', '1', 'many-test-0!many-test-48!mbmif.int.netways.de-1487778707-99', 587, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '4848' AND object_id = 587;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '17447', '1', '0', 1, '4848', '1', 'many-test-0!many-test-48!mbmif.int.netways.de-1487779137-122', 587, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4825' AND object_id = 586;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '467608', '1', '0', 1, '4825', '1', 'many-test-0!many-test-47!mbmif.int.netways.de-1487778707-95', 586, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779136) AND instance_id = 1 AND internal_comment_id = '4826' AND object_id = 586;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779136), '1', 215, FROM_UNIXTIME(1487779136), '947916', '1', '0', 1, '4826', '1', 'many-test-0!many-test-47!mbmif.int.netways.de-1487779136-119', 586, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '4916' AND object_id = 590;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '223969', '1', '0', 1, '4916', '1', 'many-test-0!many-test-51!mbmif.int.netways.de-1487779137-131', 590, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4914' AND object_id = 590;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '638936', '1', '0', 1, '4914', '1', 'many-test-0!many-test-51!mbmif.int.netways.de-1487778707-108', 590, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '4870' AND object_id = 588;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '89072', '1', '0', 1, '4870', '1', 'many-test-0!many-test-49!mbmif.int.netways.de-1487779137-125', 588, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4869' AND object_id = 588;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '557681', '1', '0', 1, '4869', '1', 'many-test-0!many-test-49!mbmif.int.netways.de-1487778707-102', 588, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4937' AND object_id = 591;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '673247', '1', '0', 1, '4937', '1', 'many-test-0!many-test-52!mbmif.int.netways.de-1487778707-111', 591, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '4938' AND object_id = 591;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '296202', '1', '0', 1, '4938', '1', 'many-test-0!many-test-52!mbmif.int.netways.de-1487779137-134', 591, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '4959' AND object_id = 592;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '367348', '1', '0', 1, '4959', '1', 'many-test-0!many-test-53!mbmif.int.netways.de-1487779137-137', 592, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4961' AND object_id = 592;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '710624', '1', '0', 1, '4961', '1', 'many-test-0!many-test-53!mbmif.int.netways.de-1487778707-114', 592, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '4982' AND object_id = 593;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '440946', '1', '0', 1, '4982', '1', 'many-test-0!many-test-54!mbmif.int.netways.de-1487779137-140', 593, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4981' AND object_id = 593;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '745799', '1', '0', 1, '4981', '1', 'many-test-0!many-test-54!mbmif.int.netways.de-1487778707-117', 593, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '5026' AND object_id = 596;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '555994', '1', '0', 1, '5026', '1', 'many-test-0!many-test-56!mbmif.int.netways.de-1487779137-145', 596, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '5025' AND object_id = 596;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '812896', '1', '0', 1, '5025', '1', 'many-test-0!many-test-56!mbmif.int.netways.de-1487778707-123', 596, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '5048' AND object_id = 594;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '603137', '1', '0', 1, '5048', '1', 'many-test-0!many-test-57!mbmif.int.netways.de-1487779137-147', 594, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '5047' AND object_id = 594;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '848678', '1', '0', 1, '5047', '1', 'many-test-0!many-test-57!mbmif.int.netways.de-1487778707-126', 594, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '5070' AND object_id = 597;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '719638', '1', '0', 1, '5070', '1', 'many-test-0!many-test-58!mbmif.int.netways.de-1487779137-152', 597, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '5069' AND object_id = 597;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '882937', '1', '0', 1, '5069', '1', 'many-test-0!many-test-58!mbmif.int.netways.de-1487778707-129', 597, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '5003' AND object_id = 595;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '778973', '1', '0', 1, '5003', '1', 'many-test-0!many-test-55!mbmif.int.netways.de-1487778707-120', 595, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '5004' AND object_id = 595;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '487036', '1', '0', 1, '5004', '1', 'many-test-0!many-test-55!mbmif.int.netways.de-1487779137-142', 595, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '5115' AND object_id = 599;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '951073', '1', '0', 1, '5115', '1', 'many-test-0!many-test-60!mbmif.int.netways.de-1487778707-135', 599, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '5116' AND object_id = 599;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '789386', '1', '0', 1, '5116', '1', 'many-test-0!many-test-60!mbmif.int.netways.de-1487779137-155', 599, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5159' AND object_id = 601;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '31471', '1', '0', 1, '5159', '1', 'many-test-0!many-test-62!mbmif.int.netways.de-1487778708-141', 601, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '5160' AND object_id = 601;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '926605', '1', '0', 1, '5160', '1', 'many-test-0!many-test-62!mbmif.int.netways.de-1487779137-161', 601, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5182' AND object_id = 602;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '134712', '1', '0', 1, '5182', '1', 'many-test-0!many-test-63!mbmif.int.netways.de-1487779138-170', 602, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5181' AND object_id = 602;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '71616', '1', '0', 1, '5181', '1', 'many-test-0!many-test-63!mbmif.int.netways.de-1487778708-144', 602, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '5092' AND object_id = 598;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '697253', '1', '0', 1, '5092', '1', 'many-test-0!many-test-59!mbmif.int.netways.de-1487779137-151', 598, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '5091' AND object_id = 598;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '917828', '1', '0', 1, '5091', '1', 'many-test-0!many-test-59!mbmif.int.netways.de-1487778707-132', 598, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '5138' AND object_id = 600;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '855969', '1', '0', 1, '5138', '1', 'many-test-0!many-test-61!mbmif.int.netways.de-1487779137-158', 600, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '5137' AND object_id = 600;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '983550', '1', '0', 1, '5137', '1', 'many-test-0!many-test-61!mbmif.int.netways.de-1487778707-138', 600, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5203' AND object_id = 603;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '17818', '1', '0', 1, '5203', '1', 'many-test-0!many-test-64!mbmif.int.netways.de-1487779138-165', 603, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5206' AND object_id = 603;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '103758', '1', '0', 1, '5206', '1', 'many-test-0!many-test-64!mbmif.int.netways.de-1487778708-147', 603, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5247' AND object_id = 605;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '169168', '1', '0', 1, '5247', '1', 'many-test-0!many-test-66!mbmif.int.netways.de-1487778708-153', 605, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5248' AND object_id = 605;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '181557', '1', '0', 1, '5248', '1', 'many-test-0!many-test-66!mbmif.int.netways.de-1487779138-172', 605, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5226' AND object_id = 604;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '108536', '1', '0', 1, '5226', '1', 'many-test-0!many-test-65!mbmif.int.netways.de-1487779138-169', 604, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5225' AND object_id = 604;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '136074', '1', '0', 1, '5225', '1', 'many-test-0!many-test-65!mbmif.int.netways.de-1487778708-150', 604, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5291' AND object_id = 607;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '236715', '1', '0', 1, '5291', '1', 'many-test-0!many-test-68!mbmif.int.netways.de-1487778708-159', 607, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5292' AND object_id = 607;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '350974', '1', '0', 1, '5292', '1', 'many-test-0!many-test-68!mbmif.int.netways.de-1487779138-179', 607, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5269' AND object_id = 606;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '203500', '1', '0', 1, '5269', '1', 'many-test-0!many-test-67!mbmif.int.netways.de-1487778708-156', 606, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5270' AND object_id = 606;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '227756', '1', '0', 1, '5270', '1', 'many-test-0!many-test-67!mbmif.int.netways.de-1487779138-174', 606, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5338' AND object_id = 609;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '429821', '1', '0', 1, '5338', '1', 'many-test-0!many-test-70!mbmif.int.netways.de-1487779138-182', 609, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5336' AND object_id = 609;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '305903', '1', '0', 1, '5336', '1', 'many-test-0!many-test-70!mbmif.int.netways.de-1487778708-165', 609, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5313' AND object_id = 608;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '402349', '1', '0', 1, '5313', '1', 'many-test-0!many-test-69!mbmif.int.netways.de-1487779138-181', 608, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5312' AND object_id = 608;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '270023', '1', '0', 1, '5312', '1', 'many-test-0!many-test-69!mbmif.int.netways.de-1487778708-162', 608, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5359' AND object_id = 610;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '340485', '1', '0', 1, '5359', '1', 'many-test-0!many-test-71!mbmif.int.netways.de-1487778708-168', 610, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5360' AND object_id = 610;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '532320', '1', '0', 1, '5360', '1', 'many-test-0!many-test-71!mbmif.int.netways.de-1487779138-186', 610, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5381' AND object_id = 611;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '361927', '1', '0', 1, '5381', '1', 'many-test-0!many-test-72!mbmif.int.netways.de-1487778708-170', 611, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5382' AND object_id = 611;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '557148', '1', '0', 1, '5382', '1', 'many-test-0!many-test-72!mbmif.int.netways.de-1487779138-187', 611, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5426' AND object_id = 613;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '746100', '1', '0', 1, '5426', '1', 'many-test-0!many-test-74!mbmif.int.netways.de-1487779138-194', 613, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5425' AND object_id = 613;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '445244', '1', '0', 1, '5425', '1', 'many-test-0!many-test-74!mbmif.int.netways.de-1487778708-177', 613, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5404' AND object_id = 612;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '635643', '1', '0', 1, '5404', '1', 'many-test-0!many-test-73!mbmif.int.netways.de-1487779138-190', 612, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5403' AND object_id = 612;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '407675', '1', '0', 1, '5403', '1', 'many-test-0!many-test-73!mbmif.int.netways.de-1487778708-174', 612, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778707) AND instance_id = 1 AND internal_comment_id = '4893' AND object_id = 589;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778707), '1', 215, FROM_UNIXTIME(1487778707), '603967', '1', '0', 1, '4893', '1', 'many-test-0!many-test-50!mbmif.int.netways.de-1487778707-105', 589, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779137) AND instance_id = 1 AND internal_comment_id = '4897' AND object_id = 589;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779137), '1', 215, FROM_UNIXTIME(1487779137), '152899', '1', '0', 1, '4897', '1', 'many-test-0!many-test-50!mbmif.int.netways.de-1487779137-128', 589, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5447' AND object_id = 614;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '468678', '1', '0', 1, '5447', '1', 'many-test-0!many-test-75!mbmif.int.netways.de-1487778708-179', 614, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779138) AND instance_id = 1 AND internal_comment_id = '5448' AND object_id = 614;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779138), '1', 215, FROM_UNIXTIME(1487779138), '876362', '1', '0', 1, '5448', '1', 'many-test-0!many-test-75!mbmif.int.netways.de-1487779138-197', 614, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5470' AND object_id = 615;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '82561', '1', '0', 1, '5470', '1', 'many-test-0!many-test-76!mbmif.int.netways.de-1487779139-205', 615, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5469' AND object_id = 615;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '524276', '1', '0', 1, '5469', '1', 'many-test-0!many-test-76!mbmif.int.netways.de-1487778708-184', 615, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5492' AND object_id = 616;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '4251', '1', '0', 1, '5492', '1', 'many-test-0!many-test-77!mbmif.int.netways.de-1487779139-202', 616, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5491' AND object_id = 616;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '546760', '1', '0', 1, '5491', '1', 'many-test-0!many-test-77!mbmif.int.netways.de-1487778708-186', 616, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5559' AND object_id = 619;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '666363', '1', '0', 1, '5559', '1', 'many-test-0!many-test-80!mbmif.int.netways.de-1487778708-195', 619, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5560' AND object_id = 619;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '205089', '1', '0', 1, '5560', '1', 'many-test-0!many-test-80!mbmif.int.netways.de-1487779139-210', 619, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5536' AND object_id = 618;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '581403', '1', '0', 1, '5536', '1', 'many-test-0!many-test-79!mbmif.int.netways.de-1487779139-223', 618, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5535' AND object_id = 618;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '631185', '1', '0', 1, '5535', '1', 'many-test-0!many-test-79!mbmif.int.netways.de-1487778708-192', 618, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5583' AND object_id = 620;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '701159', '1', '0', 1, '5583', '1', 'many-test-0!many-test-81!mbmif.int.netways.de-1487778708-198', 620, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5581' AND object_id = 620;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '256441', '1', '0', 1, '5581', '1', 'many-test-0!many-test-81!mbmif.int.netways.de-1487779139-212', 620, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5604' AND object_id = 621;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '393009', '1', '0', 1, '5604', '1', 'many-test-0!many-test-82!mbmif.int.netways.de-1487779139-216', 621, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5603' AND object_id = 621;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '734369', '1', '0', 1, '5603', '1', 'many-test-0!many-test-82!mbmif.int.netways.de-1487778708-201', 621, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5625' AND object_id = 622;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '768656', '1', '0', 1, '5625', '1', 'many-test-0!many-test-83!mbmif.int.netways.de-1487778708-204', 622, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5626' AND object_id = 622;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '473444', '1', '0', 1, '5626', '1', 'many-test-0!many-test-83!mbmif.int.netways.de-1487779139-219', 622, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5648' AND object_id = 623;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '554883', '1', '0', 1, '5648', '1', 'many-test-0!many-test-84!mbmif.int.netways.de-1487779139-222', 623, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5647' AND object_id = 623;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '801834', '1', '0', 1, '5647', '1', 'many-test-0!many-test-84!mbmif.int.netways.de-1487778708-207', 623, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5669' AND object_id = 624;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '833954', '1', '0', 1, '5669', '1', 'many-test-0!many-test-85!mbmif.int.netways.de-1487778708-210', 624, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5670' AND object_id = 624;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '623174', '1', '0', 1, '5670', '1', 'many-test-0!many-test-85!mbmif.int.netways.de-1487779139-225', 624, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5694' AND object_id = 625;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '867408', '1', '0', 1, '5694', '1', 'many-test-0!many-test-86!mbmif.int.netways.de-1487778708-213', 625, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5691' AND object_id = 625;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '714584', '1', '0', 1, '5691', '1', 'many-test-0!many-test-86!mbmif.int.netways.de-1487779139-229', 625, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5514' AND object_id = 617;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '106599', '1', '0', 1, '5514', '1', 'many-test-0!many-test-78!mbmif.int.netways.de-1487779139-206', 617, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5513' AND object_id = 617;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '584404', '1', '0', 1, '5513', '1', 'many-test-0!many-test-78!mbmif.int.netways.de-1487778708-189', 617, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5714' AND object_id = 626;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '787723', '1', '0', 1, '5714', '1', 'many-test-0!many-test-87!mbmif.int.netways.de-1487779139-232', 626, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5713' AND object_id = 626;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '900343', '1', '0', 1, '5713', '1', 'many-test-0!many-test-87!mbmif.int.netways.de-1487778708-216', 626, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5735' AND object_id = 627;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '934259', '1', '0', 1, '5735', '1', 'many-test-0!many-test-88!mbmif.int.netways.de-1487778708-219', 627, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5736' AND object_id = 627;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '875951', '1', '0', 1, '5736', '1', 'many-test-0!many-test-88!mbmif.int.netways.de-1487779139-235', 627, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779139) AND instance_id = 1 AND internal_comment_id = '5758' AND object_id = 628;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779139), '1', 215, FROM_UNIXTIME(1487779139), '970305', '1', '0', 1, '5758', '1', 'many-test-0!many-test-89!mbmif.int.netways.de-1487779139-238', 628, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778708) AND instance_id = 1 AND internal_comment_id = '5757' AND object_id = 628;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778708), '1', 215, FROM_UNIXTIME(1487778708), '967530', '1', '0', 1, '5757', '1', 'many-test-0!many-test-89!mbmif.int.netways.de-1487778708-222', 628, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '5782' AND object_id = 629;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '42891', '1', '0', 1, '5782', '1', 'many-test-0!many-test-90!mbmif.int.netways.de-1487779140-241', 629, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '5781' AND object_id = 629;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '4065', '1', '0', 1, '5781', '1', 'many-test-0!many-test-90!mbmif.int.netways.de-1487778709-225', 629, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '5804' AND object_id = 630;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '112700', '1', '0', 1, '5804', '1', 'many-test-0!many-test-91!mbmif.int.netways.de-1487779140-244', 630, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '5803' AND object_id = 630;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '52623', '1', '0', 1, '5803', '1', 'many-test-0!many-test-91!mbmif.int.netways.de-1487778709-228', 630, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '5825' AND object_id = 631;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '105901', '1', '0', 1, '5825', '1', 'many-test-0!many-test-92!mbmif.int.netways.de-1487778709-231', 631, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '5829' AND object_id = 631;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '159311', '1', '0', 1, '5829', '1', 'many-test-0!many-test-92!mbmif.int.netways.de-1487779140-246', 631, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '5869' AND object_id = 634;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '162307', '1', '0', 1, '5869', '1', 'many-test-0!many-test-94!mbmif.int.netways.de-1487778709-236', 634, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '5870' AND object_id = 634;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '302831', '1', '0', 1, '5870', '1', 'many-test-0!many-test-94!mbmif.int.netways.de-1487779140-252', 634, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '5847' AND object_id = 632;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '234590', '1', '0', 1, '5847', '1', 'many-test-0!many-test-93!mbmif.int.netways.de-1487779140-249', 632, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '5846' AND object_id = 632;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '129442', '1', '0', 1, '5846', '1', 'many-test-0!many-test-93!mbmif.int.netways.de-1487778709-233', 632, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '5891' AND object_id = 633;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '216763', '1', '0', 1, '5891', '1', 'many-test-0!many-test-95!mbmif.int.netways.de-1487778709-241', 633, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '5892' AND object_id = 633;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '395000', '1', '0', 1, '5892', '1', 'many-test-0!many-test-95!mbmif.int.netways.de-1487779140-256', 633, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '5914' AND object_id = 637;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '441867', '1', '0', 1, '5914', '1', 'many-test-0!many-test-96!mbmif.int.netways.de-1487779140-258', 637, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '5913' AND object_id = 637;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '229495', '1', '0', 1, '5913', '1', 'many-test-0!many-test-96!mbmif.int.netways.de-1487778709-242', 637, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '5958' AND object_id = 636;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '583811', '1', '0', 1, '5958', '1', 'many-test-0!many-test-98!mbmif.int.netways.de-1487779140-264', 636, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '5957' AND object_id = 636;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '308314', '1', '0', 1, '5957', '1', 'many-test-0!many-test-98!mbmif.int.netways.de-1487778709-248', 636, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '5980' AND object_id = 638;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '648330', '1', '0', 1, '5980', '1', 'many-test-0!many-test-99!mbmif.int.netways.de-1487779140-267', 638, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '5979' AND object_id = 638;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '346831', '1', '0', 1, '5979', '1', 'many-test-0!many-test-99!mbmif.int.netways.de-1487778709-251', 638, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '7' AND object_id = 639;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '383805', '1', '0', 1, '7', '1', 'many-test-0!many-test-100!mbmif.int.netways.de-1487778709-254', 639, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '8' AND object_id = 639;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '694930', '1', '0', 1, '8', '1', 'many-test-0!many-test-100!mbmif.int.netways.de-1487779140-269', 639, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '29' AND object_id = 640;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '421324', '1', '0', 1, '29', '1', 'many-test-0!many-test-101!mbmif.int.netways.de-1487778709-257', 640, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '30' AND object_id = 640;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '763727', '1', '0', 1, '30', '1', 'many-test-0!many-test-101!mbmif.int.netways.de-1487779140-272', 640, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '55' AND object_id = 641;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '834954', '1', '0', 1, '55', '1', 'many-test-0!many-test-102!mbmif.int.netways.de-1487779140-275', 641, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '51' AND object_id = 641;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '456229', '1', '0', 1, '51', '1', 'many-test-0!many-test-102!mbmif.int.netways.de-1487778709-260', 641, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '73' AND object_id = 642;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '493375', '1', '0', 1, '73', '1', 'many-test-0!many-test-103!mbmif.int.netways.de-1487778709-263', 642, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779140) AND instance_id = 1 AND internal_comment_id = '74' AND object_id = 642;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779140), '1', 215, FROM_UNIXTIME(1487779140), '902407', '1', '0', 1, '74', '1', 'many-test-0!many-test-103!mbmif.int.netways.de-1487779140-278', 642, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '95' AND object_id = 643;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '519139', '1', '0', 1, '95', '1', 'many-test-0!many-test-104!mbmif.int.netways.de-1487778709-265', 643, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779141) AND instance_id = 1 AND internal_comment_id = '96' AND object_id = 643;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779141), '1', 215, FROM_UNIXTIME(1487779141), '5297', '1', '0', 1, '96', '1', 'many-test-0!many-test-104!mbmif.int.netways.de-1487779141-282', 643, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779141) AND instance_id = 1 AND internal_comment_id = '118' AND object_id = 644;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487779141), '1', 215, FROM_UNIXTIME(1487779141), '51163', '1', '0', 1, '118', '1', 'many-test-0!many-test-105!mbmif.int.netways.de-1487779141-284', 644, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487778709) AND instance_id = 1 AND internal_comment_id = '117' AND object_id = 644;INSERT INTO icinga_comments (author_name, comment_data, comment_source, comment_time, comment_type, endpoint_object_id, entry_time, entry_time_usec, entry_type, expires, instance_id, internal_comment_id, is_persistent, name, object_id, session_token) VALUES ('michi', 'ido test3', '1', FROM_UNIXTIME(1487778709), '1', 215, FROM_UNIXTIME(1487778709), '541539', '1', '0', 1, '117', '1', 'many-test-0!many-test-105!mbmif.int.netways.de-1487778709-267', 644, 1487780569);DELETE FROM icinga_comments WHERE comment_time = FROM_UNIXTIME(1487779141) AND instance_id = 1 AND internal_comment_id = '140' AND object_id = 645"
[2017-02-22 17:23:46 +0100] critical/IdoMysqlConnection: Exception during database operation: Verify that your database is operational!
[2017-02-22 17:23:46 +0100] critical/IdoMysqlConnection: Error "MySQL server has gone away" when executing query "DELETE FROM icinga_comments WHERE instance_id = 1 AND session_token <> 1487780569"
[2017-02-22 17:23:46 +0100] critical/IdoMysqlConnection: Exception during database operation: Verify that your database is operational!

Patch

Applied fix and truncated icinga_comments table. 18000 comments loaded.

michi@apit-vpntest0n ~/coding/icinga/icinga2 (fix/ido-resultset-4603) $ git show
commit 5c88fb0ab422a0c751043fb81e292e2387022f5a
Author: Michael Friedrich <michael.friedrich@icinga.com>
Date:   Wed Feb 22 16:32:31 2017 +0100

    Don't immediately execute an upsert insert query callback

diff --git a/lib/db_ido_mysql/idomysqlconnection.cpp b/lib/db_ido_mysql/idomysqlconnection.cpp
index 178ad0228..017a82b99 100644
--- a/lib/db_ido_mysql/idomysqlconnection.cpp
+++ b/lib/db_ido_mysql/idomysqlconnection.cpp
@@ -481,6 +481,9 @@ void IdoMysqlConnection::AsyncQuery(const String& query, const boost::function<v

        IdoAsyncQuery aq;
        aq.Query = query;
+       /* XXX: Important: The callback must not immediately execute a query, but enqueue it!
+        * See https://github.com/Icinga/icinga2/issues/4603 for details.
+        */
        aq.Callback = callback;
        m_AsyncQueries.push_back(aq);

@@ -1094,7 +1097,13 @@ void IdoMysqlConnection::InternalExecuteQuery(const DbQuery& query, int typeOver
 void IdoMysqlConnection::FinishExecuteQuery(const DbQuery& query, int type, bool upsert)
 {
        if (upsert && GetAffectedRows() == 0) {
-               InternalExecuteQuery(query, DbQueryDelete | DbQueryInsert);
+
+#ifdef I2_DEBUG /* I2_DEBUG */
+               Log(LogDebug, "IdoMysqlConnection")
+                   << "Rescheduling DELETE/INSERT query: Upsert UPDATE did not affect rows, type " << type << ", table '" << query.Table << "'.";
+#endif /* I2_DEBUG */
+
+               m_QueryQueue.Enqueue(boost::bind(&IdoMysqlConnection::InternalExecuteQuery, this, query, DbQueryDelete | DbQueryInsert), query.Priority);

                return;
        }
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 1 NotificationComponent.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 9015 Services.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 3 ServiceGroups.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 3 TimePeriods.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 1 User.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 1 UserGroup.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 1 Downtime.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 10 Hosts.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 2 HostGroups.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 3 Zones.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 1 ApiListener.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 4 ApiUsers.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 204 CheckCommands.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 1 ScheduledDowntime.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 18030 Comments.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 1 IcingaApplication.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 2 NotificationCommands.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 12 Notifications.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 1 CheckerComponent.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 1 ExternalCommandListener.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 1 StatusDataWriter.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 1 IdoMysqlConnection.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 1 RedisWriter.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 2 FileLoggers.
[2017-02-22 17:20:41 +0100] information/ConfigItem: Instantiated 2 Endpoints.
[2017-02-22 17:20:41 +0100] information/ScriptGlobal: Dumping variables to file '/usr/local/icinga2/var/cache/icinga2/icinga2.vars'
[2017-02-22 17:20:41 +0100] information/ConfigObject: Restoring program state from file '/usr/local/icinga2/var/lib/icinga2/icinga2.state'
[2017-02-22 17:20:42 +0100] information/ConfigObject: Restored 27305 objects. Loaded 0 new objects without state.
[2017-02-22 17:20:42 +0100] information/ConfigItem: Triggering Start signal for config items
....
[2017-02-22 17:20:45 +0100] information/ConfigItem: Activated all objects.
[2017-02-22 17:20:45 +0100] information/DbConnection: Resuming IDO connection: ido-mysql
[2017-02-22 17:20:45 +0100] information/IdoMysqlConnection: 'ido-mysql' resumed.
[2017-02-22 17:20:45 +0100] information/IdoMysqlConnection: MySQL IDO instance id: 1 (schema version: '1.14.2')
[2017-02-22 17:20:59 +0100] information/IdoMysqlConnection: Finished reconnecting to MySQL IDO database in 14.2194 second(s).

@dnsmichi
Copy link
Contributor

Everything's working fine, will do a PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/db-ido Database output blocker Blocks a release or needs immediate attention bug Something isn't working
Projects
None yet
3 participants