Questions tagged [blackhole]

The BLACKHOLE storage engine acts as a “black hole” that accepts data but throws it away and does not store it. Retrievals always return an empty result.

The BLACKHOLE storage engine acts as a “black hole” that accepts data but throws it away and does not store it. Retrievals always return an empty result. When you create a BLACKHOLE table, the server creates a table format file in the database directory. The file begins with the table name and has an .frm extension. There are no other files associated with the table.

The BLACKHOLE storage engine supports all kinds of indexes. That is, you can include index declarations in the table definition.

You can check whether the BLACKHOLE storage engine is available with this statement:

mysql> SHOW VARIABLES LIKE 'have_blackhole_engine';

Uses:

  • Verification of dump file syntax.
  • Measurement of the overhead from binary logging, by comparing performance using BLACKHOLE with and without binary logging enabled.
  • BLACKHOLE is essentially a “no-op” storage engine, so it could be used for finding performance bottlenecks not related to the storage engine itself.
20 questions
0
votes
1 answer

CakePHP: form on iframes are blackholed on internet explorer

I got a weird problem.. all the forms of my cakephp project, are not working properly on an iframe with internet explorer. I got the security component enabled, so when I submit the form on internet explorer, the blackhole is called. But this only…
Davixe
  • 13
  • 4
0
votes
1 answer

showing blackhole error when i am using array type name in input field

admin_add_newsletter.ctp foreach($menu_page_1 as $menu_pages) { echo $this->Form->checkbox('top_links.',array( 'type'=>'checkbox','id'=>'checked_box', 'value'=>$menu_pages['MenuPage']['id'], …
pankaj
  • 21
  • 1
  • 4
-2
votes
1 answer

Remove blackhole from Exim4 user

I am waiting for a very important mail. I have noticed in the logs it is not arriving because of something called blackhole in Exim4. He you can see the log: exim[22056]: 2017-06-01 11:42:35 1dGMch-0005jk-KY <= no_reply_support@trust-provider.com…
Arany Péter
  • 125
  • 2
  • 9
-2
votes
1 answer

Cakephp 2.x get message { "name": "The request has been black-holed", "url": "\/rest_sms_boxs.json" } in Restfull api

I write a controller and it contain multi POST action but whene i post data to these actions my response is : { "name": "The request has been black-holed", "url": "/rest_sms_boxs.json" } Now how can i resolve this problem.
-4
votes
1 answer

The BlackHole Bot Trap

I’m trying to use BlackHole trap outlined here on my website, but I always get an error message saying “Error Opening file.” $fp = fopen($filename, 'r') or die('

Error opening file.

'); while ($line = fgets($fp)) { if…
URaff Joseph
  • 25
  • 2
  • 6
1
2