Coder Social home page Coder Social logo

Comments (2)

mihaitodor avatar mihaitodor commented on May 26, 2024

Hey @mwindmark, I believe this is a duplicate of #1677. If you only need a simple query, in your case I think it should be possible to use sql_insert and that one has the desired semantics. With sql_raw it's a bit difficult, because what you need is this query INSERT INTO table_x(id, a, b) VALUES('1_2', '1', '2'), ('2_2', '2', '2') and the number of tuples after VALUES depends on the batch size, which makes it extra-annoying. One can use Bloblang to craft such a query dynamically and set unsafe_dynamic_query: true to achieve the desired behaviour, but it's a bit cumbersome. Alternatively, at least some SQL drivers should support passing an array of values to each tuple element when calling db.ExecContext(...), but it requires some investigation to have it work similarly to sql_insert.

LE: I shared a bloblang-based workaround in a comment under #1677.

LLE: Here's a Postgres-specific approach which uses arrays: https://klotzandrew.com/blog/postgres-passing-65535-parameter-limit

from benthos.

mihaitodor avatar mihaitodor commented on May 26, 2024

Closing in favour of #1677.

from benthos.

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.