Giter VIP home page Giter VIP logo

pipeline's Introduction

Data Pipelines: Clojure vs Python

Grammarly wrote this excellent blog post on building ETL pipelines in Clojure. I've primarily written ETL pipelines in Python and wanted to see how a similar pipeline would compare in Python.

As of writing this I'm Clojure curious, but a noob so largely lifted the Clojure code from the Grammarly post. There are many aspects of Clojure that appeal to me, and I was optimistic that I would finish this exercise convinced Clojure would have definite advantages to writing ETL jobs over Python. However, the results are more mixed than expected.

Clojure results

$ lein run

--- Time how we do for a single file ---

Lazy:
"Elapsed time: 946.714266 msecs"

Parallel:
"Elapsed time: 840.418467 msecs"

--- What if we run on 10 files ---

Lazy:
"Elapsed time: 8832.775676 msecs"

Parallel:
"Elapsed time: 2281.054373 msecs"

Python results

$ python3 python/pipeline.py

--- Time how we do for a single file ---

Lazy:
Elapsed time: 900.0811576843262 msecs

Parallel:
Elapsed time: 995.0668811798096 msecs

--- What if we run on 10 files ---

Lazy:
Elapsed time: 9346.51803970337 msecs

Parallel:
Elapsed time: 2756.990909576416 msecs

Thoughts

I expected Clojure to be order of magnitudes faster than Python and was surprised that is only marginally faster in most cases. Why is this? Is there something in the Clojure that is making it much less efficient than it could be?

The Clojure program was slightly smaller which is a plus and the general composbility in a more functional paradigm is nice. However, in my current context this is not compelling enough to consider switching writing pipelines in Clojure vs Python. Is there something I'm missing? Are there compelling reasons I'm missing?

pipeline's People

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

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.