Giter VIP home page Giter VIP logo

Comments (4)

GrandmasterGrogu avatar GrandmasterGrogu commented on July 17, 2024

Edit: Actually, not sure if the workaround is working right, will update when verified... This is what it is:
The workaround I am doing is using a for loop with upsert() for each individual item.

from loopback-connector-mysql.

raymondfeng avatar raymondfeng commented on July 17, 2024

I assume both model has the same PK. Can you print out the old/new instance to see what's offending? You can also run the app with DEBUG=loopback:connector:mysql node . to see the SQL statements.

from loopback-connector-mysql.

GrandmasterGrogu avatar GrandmasterGrogu commented on July 17, 2024

Yes, the same PKs. It is a temporary setup, because we're transitioning from an old PHP framework to the new Loopback framework app I built. The PHP old system is already designed to get some necessary data regularly, so we're pulling it from there until I duplicate the feature.

I'll try out the debug and post it back here. For now, it looks like the workaround is working.
I am using the async library to cycle through the array returned by find() and execute upsert for each.

var server = require('./server');
var async = require('async');

// Allboard data transfer from old to new
var updateAllBoard = function () {
    server.models.Oldallboards.find({}, function (err, oldServerData) {
        if (err) {
             console.log('%j', err)
            process.exit(1);
        };
        //console.log(oldServerData);

        async.eachSeries(oldServerData, server.models.Allboards.upsert.bind(server.models.Allboards), function (err, result) {
            // With the help of bind we can attach a context to the iterator before
            // passing it to async. Now the function will be executed in its 
            // 'home' server.models.Allboards context.
            if (err)
                console.log(err);
            else
            console.log('Success!');
            process.exit(0);
        });

    });
};

updateAllBoard();

from loopback-connector-mysql.

ssh24 avatar ssh24 commented on July 17, 2024

You could also use async.each to iterate through each of the oldServerData and perform an upsert.

Here is an example:

var server = require('./server');
var async = require('async');

// Allboard data transfer from old to new
var updateAllBoard = function () {
    server.models.Oldallboards.find({}, function (err, oldServerData) {
        if (err) {
             console.log('%j', err)
            process.exit(1);
        };
        //console.log(oldServerData);

        async.each(oldServerData, function(data) {
            server.models.Allboards.upsert(data, cb);
        }, function(err) {
            if (err)
                console.log(err);
            else
                console.log('Success!');
            process.exit(0);
        });
    });
};

updateAllBoard();

Closing this story as resolved. Feel free to reopen if needed.

from loopback-connector-mysql.

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.