php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #70326 Incorrect and incomplete list of log callbacks
Submitted: 2015-08-22 14:05 UTC Modified: 2021-08-03 11:41 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:1 (100.0%)
From: fgm at osinet dot fr Assigned:
Status: Open Package: mongodb (PECL)
PHP Version: 5.6.12 OS: Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: fgm at osinet dot fr
New email:
PHP Version: OS:

 

 [2015-08-22 14:05 UTC] fgm at osinet dot fr
Description:
------------
The MongoDB Context Options doc page at http://php.net/manual/en/context.mongodb.php omits two such working callbacks:

- log_query, needed to log commands including $query
- log_batchinsert, fto log batch inserts.

And it mentions log_write_batch, which does not seem to exist, maybe an old name for log_batchinsert.

By the docs, the sample script should call log_write_batch and not the other 2 loggers, but it calls them and not log_write_batch.

See PHP test file tests/mongos/stream-logger-001.phpt

Test script:
---------------
<?php
function log_batchinsert (array $server, array $docs, array $info, array $options) { 
  echo "Batch Insert " . count($docs) . " documents.\n"; 
}
function log_write_batch () { 
  echo __METHOD__ . "\n"; 
}
function log_query(array $server, array $criteria, array $queryOptions) { 
  echo "Query: " . json_encode($criteria) . "\n"; 
}

$context = stream_context_create([
  'mongodb' => ['log_batchinsert' => 'log_batchinsert', 'log_write_batch' => 'log_write_batch', 'log_query' => 'log_query'],
]);
$server = 'mongodb://localhost:27017';
$client = new \MongoClient($server, [], ['context' => $context]);
$collection = $client->selectDB('bug')->selectCollection('bug_collection');
$collection->drop();
$docs = [['foo' => 'bar'], ['baz' => 'quux']];
$result = $collection->batchInsert($docs);

Expected result:
----------------
log_write_batch

Actual result:
--------------
Query: {"drop":"bug_collection"}
Batch Insert 2 documents.
Query: {"getlasterror":1}

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2015-08-22 17:24 UTC] fgm at osinet dot fr
Just to be sure the issue is clear, I think the result from the code is just as it should, what needs to be fixed is the manpage.
 [2021-08-03 11:41 UTC] cmb@php.net
-Package: mongo +Package: mongodb
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Mon Nov 25 02:01:31 2024 UTC