Coder Social home page Coder Social logo

Comments (3)

sidmitra avatar sidmitra commented on July 28, 2024

@daniel-albuixech

Have you looked at connection keep-alive config? After some profiling i figured out some of the latency issues on our end were trying to get a fresh connection each time.

Here's the config we use. See client_session_keep_alive, CONN_MAX_AGE.

SNOWFLAKE_DB_CONFIG = {
    "ENGINE": "django_snowflake",
    "NAME": "foobar",
    "SCHEMA": "foobar",
    "USER": os.environ["SNOWFLAKE_USERNAME"],
    "PASSWORD": os.environ["SNOWFLAKE_PASSWORD"],
    "ACCOUNT": os.environ["SNOWFLAKE_ACCOUNT"],
    "OPTIONS": {
        "client_session_keep_alive": True,
    },
    "WAREHOUSE": os.environ["SNOWFLAKE_WAREHOUSE"],
    "CONN_MAX_AGE": os.environ["SNOWFLAKE_CONN_MAX_AGE],
}

It looked like the library doesn't support pooling yet.

You should run a python profiler to confirm where it's spending its time on(end to end eg. an API endpoint). This is assuming the query itself on snowflake directly is fast. In our case, we had a couple of seconds of added latency due to a new connection. We're still looking deeper into implementing pooling and submitting a PR upstream

from django-snowflake.

daniel-albuixech avatar daniel-albuixech commented on July 28, 2024

Hi @sidmitra, thank you very much for your answer.

Implementing the client_session_keep_alive and CONN_MAX_AGE parameters, the waiting time was reduced to around 3 or 4 seconds after the second click in the Admin-site. I mean, the first click is still around 10s and an update, for example, is around 10 seconds as well.

I will run the python profiler and I'll be back with more precise info ;)

Thank you very much because overall it was an improvement.

from django-snowflake.

timgraham avatar timgraham commented on July 28, 2024

Hi Daniel, please let me know if you have any further profiling data or suggestions. Thanks.

from django-snowflake.

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.