Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Memory Error When Installing Modules with Computed Stored Fields

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
performancemodulememoryodoocomputed-fieldsstore=True
1 Rispondi
2376 Visualizzazioni
Avatar
Lenin Acosta

Hello everyone,


I have several custom modules that I need to install, which extend models like sale.order.line and account.move.line. These models contain a large number of records.


In my custom modules, I have fields with compute and store=True, and I suspect this might be causing a memory error during installation. I would like to understand the best approach to successfully install these modules without running into performance or memory issues.


Here’s an example of one of the modules:


class SaleOrderLine(models.Model):

    _inherit = 'sale.order.line'


    currency_id2 = fields.Many2one(related='order_id.currency_id2', depends=['order_id.currency_id2'], store=True,

                                   string='Secondary Currency')

    price_subtotal_rate = fields.Monetary(string='Subtotal', currency_field='currency_id2',

                                          compute='_compute_amount_rate_line', store=True)

    price_unit_rate = fields.Monetary(string='Unit Price', currency_field='currency_id2',

                                      compute='_compute_amount_rate_line', store=True)


    @api.depends('order_id.rate', 'currency_id2', 'price_unit', 'price_subtotal')

    def _compute_amount_rate_line(self):

        _logger.info("Entering the method")

        for line in self:

            if line.order_id.company_id.currency_id2 == line.order_id.currency_id:

                line.update({

                    'price_unit_rate': line.price_unit * line.order_id.rate,

                    'price_subtotal_rate': line.price_subtotal * line.order_id.rate,

                })

            if line.order_id.company_id.currency_id == line.order_id.currency_id:

                if line.order_id.rate:

                    line.update({

                        'price_unit_rate': line.price_unit / line.order_id.rate,

                        'price_subtotal_rate': line.price_subtotal / line.order_id.rate

                    })

        _logger.info("Exiting the method")

I would appreciate any advice on optimizing the installation process, especially regarding computed stored fields that may cause performance issues.


Thank you!


Here is an example of the error:

RPC_ERROR


Odoo Server Error


Traceback (most recent call last):


  File , line 899, in get


    return field_cache[record._ids[0]]


KeyError: 533602




During handling of the above exception, another exception occurred:




Traceback (most recent call last):


  File , line 1083, in _get_


    value = env.cache.get(record, self)


  File , line 902, in get


    raise CacheMiss(record, field)


odoo.exceptions.CacheMiss: 'sale.order.line(533602,).order_id'




The above exception was the direct cause of the following exception:




Traceback (most recent call last):


  File , line 242, in _dispatch


    result = request.dispatch()


  File , line 702, in dispatch


    result = self._call_function(**self.params)


  File , line 368, in _call_function


    return checked_call(self.db, *args, **kwargs)


  File , line 94, in wrapper


    return f(dbname, *args, **kwargs)


  File , line 357, in checked_call


    result = self.endpoint(*a, **kw)


  File , line 925, in _call_


    return self.method(*args, **kw)


  File , line 546, in response_wrap


    response = f(*args, **kw)


  File , line 1328, in call_button


    action = self._call_kw(model, method, args, kwargs)


  File , line 1316, in _call_kw


    return call_kw(request.env[model], method, args, kwargs)


  File , line 471, in call_kw


    result = _call_kw_multi(method, model, args, kwargs)


  File , line 456, in _call_kw_multi


    result = method(recs, *args, **kwargs)


  File , line 2, in button_immediate_install


  File , line 72, in check_and_log


    return method(self, *args, **kwargs)


  File , line 470, in button_immediate_install


    return self._button_immediate_function(self.env.registry[self._name].button_install)


  File , line 587, in _button_immediate_function


    registry = modules.registry.Registry.new(self._cr.dbname, update_module=True)


  File , line 87, in new


    odoo.modules.load_modules(registry, force_demo, status, update_module)


  File , line 474, in load_modules


    processed_modules += load_marked_modules(cr, graph,


  File , line 363, in load_marked_modules


    loaded, processed = load_module_graph(


  File , line 199, in load_module_graph


    registry.init_models(cr, model_names, {'module': package.name}, new_install)


  File , line 445, in init_models


    env['base'].flush()


  File , line 5692, in flush


    self.recompute()


  File , line 6165, in recompute


    process(field)


  File , line 6149, in process


    field.recompute(recs)


  File , line 1273, in recompute


    self.compute_value(recs)


  File , line 1295, in compute_value


    records._compute_field_value(self)


  File , line 4277, in _compute_field_value


    fields.determine(field.compute, self)


  File , line 88, in determine


    return needle(*args)


  File , line 79, in _compute_amount_rate_line


    if line.order_id.company_id.currency_id2 == line.order_id.currency_id:


  File , line 2620, in _get_


    return super()._get_(records, owner)


  File , line 1109, in _get_


    recs._fetch_field(self)


  File , line 3277, in _fetch_field


    fnames = [


  File , line 3285, in <listcomp>


    if not (f.compute and self.env.records_to_compute(f))


  File , line 756, in records_to_compute


    return self[field.model_name].browse(ids)


  File , line 5211, in browse


    ids = tuple(ids)


Exception




The above exception was the direct cause of the following exception:




Traceback (most recent call last):


  File , line 658, in _handle_exception


    return super(JsonRequest, self)._handle_exception(exception)


  File , line 301, in _handle_exception


    raise exception.with_traceback(None) from new_cause


MemoryError


0
Avatar
Abbandona
Avatar
Niyas Raphy (Walnut Software Solutions)
Risposta migliore

Hi,
You can speed up the installation by adding the new fields forcefully into the database and later using some scripts you can compute the values into the field.

Sample;
    def _auto_init(self):

        """

        Create related field here, too slow

        when computing it afterwards through _compute_related.


        Since group_id.sale_id is created in this module,

        no need for an UPDATE statement.

        """

        if not column_exists(self.env.cr, 'stock_picking', 'sale_id'):

            create_column(self.env.cr, 'stock_picking', 'sale_id', 'int4')

        return super()._auto_init()

Thanks

0
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
[13.0] Module installation failed due to stored compute field on large database
performance installation memory computed-fields 13.0
Avatar
Avatar
1
set 21
6663
How can we Uninstall odoo module from terminal? Risolto
module odoo
Avatar
Avatar
Avatar
Avatar
3
set 25
21937
Odoo - Find module to show group by parent/child value in tree view
module python3 odoo
Avatar
0
apr 23
3796
Model Name in Fleet module? Risolto
fleet module computed-fields
Avatar
Avatar
2
feb 22
5298
cache in odoo ?
performance cache odoo
Avatar
0
giu 21
5843
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now