Coder Social home page Coder Social logo

Comments (14)

21stcaveman avatar 21stcaveman commented on August 16, 2024 2

has there been any traction on this? 7+ years open, PR request pending almost 3 years now...

from logstash-output-mongodb.

AndreaFranchini avatar AndreaFranchini commented on August 16, 2024 1

Up!
I'm also interested in this, it's very limiting the absence of the mongo upsert in the output plugin.

from logstash-output-mongodb.

stevecalvert avatar stevecalvert commented on August 16, 2024

Hi all, I'm using the HTTP input plugin to receive HTTP POST/PATCH requests, and would like to map the PATCH in the mongodb output plugin to an update on an existing document based on the $set operator. I'm not familiar with Ruby, but checking the latest mongodb.rb, it looks like only insert_one() is used. Are there any plans to support update_one() or other mechanisms to update an existing Mongo document?

from logstash-output-mongodb.

guyboertje avatar guyboertje commented on August 16, 2024

@stevecalvert - In general the LS outputs are append only. Consider this blog article from LinkedIn. You turn your collection into a journal showing how the document changed over time.

from logstash-output-mongodb.

jordansissel avatar jordansissel commented on August 16, 2024

@guyboertje on the other hand, we support action of delete, insert, create, update --- for the elasticsearch output. I'm open to doing so for the mongodb output; in which case we'll need to add another setting to let users set whatever the equivalent to the 'document_id' setting would be.

from logstash-output-mongodb.

guyboertje avatar guyboertje commented on August 16, 2024

@stevecalvert @jordansissel - in Mongo we could use update with the upsert option. https://docs.mongodb.org/manual/reference/method/db.collection.update/#upsert-parameter
Obviously driven by config options, to allow the user to specify which field contains the query key for the upsert. e.g.

config :upsert_query_key, :validate => :string, :default => "_id"
config :upsert, :validate => :boolean, :default => false.

from logstash-output-mongodb.

sdcharle avatar sdcharle commented on August 16, 2024

Has this been ruled out as something that will be added? I'm needing upsert functionality for a project I'm working on so I'm evaluating options. This plugin works great but I need some way to handle a record getting sent thru with an update....

from logstash-output-mongodb.

joelpermanas avatar joelpermanas commented on August 16, 2024

Hi, Is there any update on this issue ?

from logstash-output-mongodb.

jsvd avatar jsvd commented on August 16, 2024

@joelpermanas any update will be publicly visible here. PR contributions are welcome :)

from logstash-output-mongodb.

devchristianschroeder avatar devchristianschroeder commented on August 16, 2024

I would like to have this feature also, please.

Thank you for the great product.

from logstash-output-mongodb.

colinsurprenant avatar colinsurprenant commented on August 16, 2024

relates to #26 and #54

from logstash-output-mongodb.

nilskuhn avatar nilskuhn commented on August 16, 2024

Did anybody start with an implementation or plans to do so?

from logstash-output-mongodb.

nilskuhn avatar nilskuhn commented on August 16, 2024

I am implementing this and I plan to use these config flags:

config :action, :validate => :string, :required => true
config :query_key, :validate => :string, :required => false, :default => "_id"
config :query_value, :validate => :string, :required => false
config :upsert, :validate => :boolean, :required => false, :default => false

Where action may be one of insert (the default, behaves like plugin does now), update or replace. For update and replace, query to find document to update/replace is built like this:

:filter => {@query_key => @query_value}

Where _id would be the default value for @query_key config setting. By setting upsert to true one could enable upsert mode for update/replace. For insert this setting wouldn't have any effect.
I tried to align naming of config settings to elasticsearch output but I think, at least for me, upsert is much more clear than doc_as_upsert.

Any comments? Suggestions?

from logstash-output-mongodb.

nilskuhn avatar nilskuhn commented on August 16, 2024

I opened a PR for this (see above). Could anybody please take a look and let me know whether my changes make sense for you, too?
It's working for us so far.

from logstash-output-mongodb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.