Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4240262
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T03:08:32+00:00 2026-05-21T03:08:32+00:00

I have a large CSV file that contains independent items that take a fair

  • 0

I have a large CSV file that contains independent items that take a fair bit of effort to process. I’d like to be able to process each line item in parallel. I found a sample piece of code for processing a CSV file on SO here:

Newbie transforming CSV files in Clojure

The code is:

(use '(clojure.contrib duck-streams str-utils))                 ;;'
(with-out-writer "coords.txt"
  (doseq [line (read-lines "coords.csv")]
    (let [[x y z p] (re-split #"," line)]
      (println (str-join \space [p x y z])))))

This was able to print out data from my CSV file which was great – but it only used one CPU. I’ve tried various different things, ending up with:

(pmap println (read-lines "foo"))

This works okay in interactive mode but does nothing when running from the command line. From a conversation on IRC, this is because stdout isn’t available by default to threads.

Really what I’m looking for is a way to idiomatically apply a function to each line of the CSV file and do so in parallel. I’d also like to print some results to stdout during testing if at all possible.

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T03:08:32+00:00Added an answer on May 21, 2026 at 3:08 am

    If you want the results in the output be in the same order as in the input, then printing from pmap might not be a good idea. I would recommend creating a (lazy) sequence of the input lines pmap over that and then print the result of pmap.
    Something like this should work:

    (dorun (map println (pmap expensive-computation (read-lines "coords.csv"))))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very large CSV file that I imported into a sqlite table.
I have a relatively large csv/text data file (33mb) that I need to do
I have a large CSV file and I want to execute a stored procedure
I have a large collection of data in an excel file (and csv files).
I have several large csv files with thousands of columns that I need to
I have a large database and would like to select table names that have
I have a CSV file the first row of which contains the variables names
I have two long list, one from a log file that contains lines formatted
I have a query that returns a lot of data into a CSV file.
I have a very large CSV file and I need to write an app

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.