Fermín Galán Márquez

Results 142 issues of Fermín Galán Márquez

It seems the way have implemented `sigHandler()` is not correct. Maybe also impact the way we use `atexit()` and its registered functions. Read https://stackoverflow.com/questions/67934725/are-atexit-registered-handlers-called-just-one-time carefully and fix according it.

techdebt
nicetohave

The basic cases are: 1. regR = `.*`, query = `.*`, attrs = [ A, ... ] 2. regR = `.*`, query = 'E', attrs = {null} 3. regR =...

techdebt

Some uses cases could require a multi-value type in entities as this one (keyValues format): ``` { "id": "POI1234", "type": [ "ShoppingCenter", "Hotel", "Restaurant", "MovieTheater" "TouristAttraction" ], "name": "The Mirage",...

backlog

In the re-work done in issue https://github.com/telefonicaid/fiware-orion/issues/3694 the following parameters were introduced in the CLI: * `-logLineMaxSize` * `-logInfoPayloadMaxSize` It could be a good idea to include them in the...

help wanted
good first issue

**CURRENT SITUATION** We have three notification modes, which work as described: _Transient_ Notification sending is done by `Notifier::sendNotifyContextRequest()` which basically creates a new thread each time a notification is going...

backlog

The idea is to define somehow (an special operation on the entity?) virtual attributes that are the result of doing an operation over other attributes in the same entity. Some...

During the driver migration done on issue #3132 (PR #3622), we just "translate" the pool management approach existing in Orion. I mean, there are individual connections managed by Orion itself...

mongodriver

We are currently using the following functions in Mongo C to run commands: * mongoc_collection_command_with_opts(), in orion::runCollectionCommand() * mongoc_database_command_with_opts(), in orion::runDatabaseCommand() Functional and leaks regression works with them. However, I'm...

mongodriver

According to http://mongoc.org/libbson/current/bson_t.html#performance-notes > The `bson_t` structure attempts to use an inline allocation within the structure to speed up performance of small documents. When this internal buffer has been exhausted,...

mongodriver

Consider the usage of usage of [bson_append_document_begin()](https://mongoc.org/libbson/current/bson_append_document_begin.html) / [bson_append_document_end()](https://mongoc.org/libbson/current/bson_append_document_end.html) and [bson_append_array_begin()](https://mongoc.org/libbson/current/bson_append_array_begin.html) / [bson_append_array_end()](https://mongoc.org/libbson/current/bson_append_array_end.html). Looking to: https://mongoc.org/libbson/current/bson_append_array_begin.html#description > The `bson_append_array_begin()` function shall begin appending an array field to `bson`. This allows...

mongodriver