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
Tutte le presentazioni
  • Odoo Experience 2018
  • Presentazioni
  • Programma
  • Tutti gli eventi
  • Odoo Experience 2018
  • Tutte le presentazioni
 
  • Odoo Experience 2018
  • Presentazioni
  • Programma


  • Presentazioni
  • Odoo.sh for Developers
    Denis Ledoux, Developer - Odoo
    Completata
  • Looking for Culprits in Performance Issues
    Moisés Augusto López Calderón
    Completata
  • Code Optimization: How to Profile Your Code
    Nicolas Seinlet, Software Developer - Odoo
    Completata
  • Building Beautiful REST APIs for Odoo with Swagger
    Laurent Mignon - Senior Software Engineer, Acsone
    Completata
  • Studio as a Prototyping Tool
    Antoine Mathot - Business Analyst, Odoo
    Completata
  • Navigate in Odoo Code for Dummies
    Thibault François, Technical Consultant Team Leader - Odoo
    Completata
  • Successful Import of Big Data with an Efficient Tool
    Jean Adam, Client Solution Developer - Odoo
    Completata
  • Interact with Odoo Using the JSON-RPC API
    Laurent Contzen - Odoo Developer
    Completata
  • Tutorial - Develop an App with the Odoo Framework
    Yannick Tivisse, Developer - Odoo
    Completata
  • Process Development from Business to Delivery with Tools Such as Odoo.sh
    Michael Vannerom, Developer - Odoo
    Completata
Load Testing: How to Stress Your Odoo with Locust
Developer
Luogo: Aula Magna / Lauzelle - 04/10/18, 12:30 - 04/10/18, 12:50 (Europe/Brussels) (20 minuti)
Load Testing: How to Stress Your Odoo with Locust
Michael Vannerom, Developer - Odoo
Michael Vannerom, Developer - Odoo

Deploying an Odoo instance on production can be an adventure without its challenges. If you want to get the maximum resources from your server, you have to adapt different options. It is not always easy to know the number of workers and the different limits depending on them. But after you set up your server, how do you know if your theoretic value seems to be correct and when can you see the first error appear. To be sure that your system stays usable it's important to find a way to stress your Odoo instance with a different number of users.

To answer all these question we will show you what we develop internally with Locust. Locust is an open source load testing tool that allows you to send XMLRPC requests with a specific number of users. Just imagine the different scenarios you want to test, then with this library you can write a test in Python with the lib XMLRPC. After that you have the Locust interface just to say, "I want to test with 1,20,50, 100,... users". It will prevent wrong configurations and check how many users the system is able to handle while still answering requests in the correct time. You also have interesting stats per request like the number of failing requests median time, average time, min and max time for a request, and how many request per sec Odoo is able to answer. With all the aforementioned statistics you will have an accurate view of the limits of your system.

During this talk we will see how to set up your Locust on your system, case by case. To understand how to use it in a practical case we will also show you a real life case and how we use it internally. After this talk, attendees should feel more efficient and you will know the limit of your system.

Biglietti
Da US$ 0,00 a US$ 1.094,40
Listino prezzi: US: North America Listino prezzi
US: North America
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