Pular para o conteúdo
Odoo Menu
  • Entrar
  • Experimente grátis
  • Aplicativos
    Finanças
    • Financeiro
    • Faturamento
    • Despesas
    • Planilhas (BI)
    • Documentos
    • Assinar Documentos
    Vendas
    • CRM
    • Vendas
    • PDV Loja
    • PDV Restaurantes
    • Assinaturas
    • Locação
    Websites
    • Criador de Sites
    • e-Commerce
    • Blog
    • Fórum
    • Chat ao Vivo
    • e-Learning
    Cadeia de mantimentos
    • Inventário
    • Fabricação
    • PLM - Ciclo de Vida do Produto
    • Compras
    • Manutenção
    • Qualidade
    Recursos Humanos
    • Funcionários
    • Recrutamento
    • Folgas
    • Avaliações
    • Indicações
    • Frota
    Marketing
    • Redes Sociais
    • Marketing por E-mail
    • Marketing por SMS
    • Eventos
    • Automação de Marketing
    • Pesquisas
    Serviços
    • Projeto
    • Planilhas de Horas
    • Serviço de Campo
    • Central de Ajuda
    • Planejamento
    • Compromissos
    Produtividade
    • Mensagens
    • Aprovações
    • Internet das Coisas
    • VoIP
    • Conhecimento
    • WhatsApp
    Aplicativos de terceiros Odoo Studio Plataforma Odoo Cloud
  • Setores
    Varejo
    • Loja de livros
    • Loja de roupas
    • Loja de móveis
    • Mercearia
    • Loja de ferramentas
    • Loja de brinquedos
    Comida e hospitalidade
    • Bar e Pub
    • Restaurante
    • Fast Food
    • Hospedagem
    • Distribuidor de bebidas
    • Hotel
    Imóveis
    • Imobiliária
    • Escritório de arquitetura
    • Construção
    • Administração de propriedades
    • Jardinagem
    • Associação de proprietários de imóveis
    Consultoria
    • Escritório de Contabilidade
    • Parceiro Odoo
    • Agência de marketing
    • Escritório de advocacia
    • Aquisição de talentos
    • Auditoria e Certificação
    Fabricação
    • Têxtil
    • Metal
    • Móveis
    • Alimentação
    • Cervejaria
    • Presentes corporativos
    Saúde e Boa forma
    • Clube esportivo
    • Loja de óculos
    • Academia
    • Profissionais de bem-estar
    • Farmácia
    • Salão de cabeleireiro
    Comércio
    • Handyman
    • Hardware e Suporte de TI
    • Sistemas de energia solar
    • Sapataria
    • Serviços de limpeza
    • Serviços de climatização
    Outros
    • Organização sem fins lucrativos
    • Agência Ambiental
    • Aluguel de outdoors
    • Fotografia
    • Aluguel de bicicletas
    • Revendedor de software
    Navegar por todos os setores
  • Comunidade
    Aprenda
    • Tutoriais
    • Documentação
    • Certificações
    • Treinamento
    • Blog
    • Podcast
    Empodere a Educação
    • Programa de educação
    • Scale Up! Jogo de Negócios
    • Visite a Odoo
    Obtenha o Software
    • Baixar
    • Comparar edições
    • Releases
    Colaborar
    • Github
    • Fórum
    • Eventos
    • Traduções
    • Torne-se um parceiro
    • Serviços para parceiros
    • Cadastre seu escritório contábil
    Obtenha os serviços
    • Encontre um parceiro
    • Encontre um Contador
    • Conheça um consultor
    • Serviços de Implementação
    • Referências de Clientes
    • Suporte
    • Upgrades
    Github YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Faça uma demonstração
  • Preços
  • Ajuda

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

  • CRM
  • e-Commerce
  • Financeiro
  • Inventário
  • PoS
  • Projeto
  • MRP
All apps
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
Ajuda

Memory Error When Installing Modules with Computed Stored Fields

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
performancemodulememoryodoocomputed-fieldsstore=True
1 Responder
2374 Visualizações
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
Cancelar
Avatar
Niyas Raphy (Walnut Software Solutions)
Melhor resposta

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
Cancelar
Está gostando da discussão? Não fique apenas lendo, participe!

Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!

Inscreva-se
Publicações relacionadas Respostas Visualizações Atividade
[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? Resolvido
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
abr. 23
3796
Model Name in Fleet module? Resolvido
fleet module computed-fields
Avatar
Avatar
2
fev. 22
5298
cache in odoo ?
performance cache odoo
Avatar
0
jun. 21
5843
Comunidade
  • Tutoriais
  • Documentação
  • Fórum
Open Source
  • Baixar
  • Github
  • Runbot
  • Traduções
Serviços
  • Odoo.sh Hosting
  • Suporte
  • Upgrade
  • Desenvolvimentos personalizados
  • Educação
  • Encontre um Contador
  • Encontre um parceiro
  • Torne-se um parceiro
Sobre nós
  • Nossa empresa
  • Ativos da marca
  • Contato
  • Empregos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidade
  • Segurança
الْعَرَبيّة 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 é um conjunto de aplicativos de negócios em código aberto que cobre todas as necessidades de sua empresa: CRM, comércio eletrônico, contabilidade, estoque, ponto de venda, gerenciamento de projetos, etc.

A proposta de valor exclusiva Odoo é ser, ao mesmo tempo, muito fácil de usar e totalmente integrado.

Site feito com

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