Coder Social home page Coder Social logo

Comments (3)

Windyo avatar Windyo commented on August 23, 2024

Same issue here. Not really sure where the col size comes from.
Deosn't match sourc eamuotn of records (990) or the amount of records in the org (2.3k).

Collection size 1.835 exceeds maximum size of 1.000.

from custommetadataloader.

acorellaefx93 avatar acorellaefx93 commented on August 23, 2024

@Windyo / @kkorynta

I experienced the same issue with more than 2200k records. After researching on the Apex Classes contained within the package, I got a workaround that will help you to upload more records without having this issue.

If you go the the CustomMetadataUploadController, at the line number 83, you will see this:

selectQuery = selectQuery + ' FROM ' + selectedType

This will query and pull all the records from the Custom Metadata Type that you are trying to insert records to. I added LIMIT 1000 to the query; blocking the visualforge page to pull more than 1000 records per load.

This workaround will help you to upload records, but It will not be able to match if there are duplicates or not (since it won't be able to check with the entire dataset).

The line should look like this selectQuery = selectQuery + ' FROM ' + selectedType + ' LIMIT 1000';

from custommetadataloader.

AndiMcLaughlin avatar AndiMcLaughlin commented on August 23, 2024

@acorellaefx93 I made this update and am now getting

Maximum view state size limit (170KB) exceeded. Actual view state size for this page was 175.267KB

any ideas on this one? My feeling is that we need an update and a load button in this tool so that you can have a limit query for updates but I am an admin and only a declarative developer.

from custommetadataloader.

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.