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 7671943
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T16:10:22+00:00 2026-05-31T16:10:22+00:00

I have a huge file and need to read it and process. with open(source_filename)

  • 0

I have a huge file and need to read it and process.

with open(source_filename) as source, open(target_filename) as target:
    for line in source:
        target.write(do_something(line))

    do_something_else()

Can this be accelerated with threads? If I spawn a thread per line, will this have a huge overhead cost?

edit: To make this question not a discussion, How should the code look like?

with open(source_filename) as source, open(target_filename) as target:
   ?

@Nicoretti: In an iteration I need to read a line of several KB of data.

update 2: the file may be a bz2, so Python may have to wait for unpacking:

$ bzip2 -d country.osm.bz2 | ./my_script.py
  • 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-31T16:10:23+00:00Added an answer on May 31, 2026 at 4:10 pm

    You could use three threads: for reading, processing and writing. The possible advantage is that the processing can take place while waiting for I/O, but you need to take some timings yourself to see if there is an actual benefit in your situation.

    import threading
    import Queue
    
    QUEUE_SIZE = 1000
    sentinel = object()
    
    def read_file(name, queue):
        with open(name) as f:
            for line in f:
                queue.put(line)
        queue.put(sentinel)
    
    def process(inqueue, outqueue):
        for line in iter(inqueue.get, sentinel):
            outqueue.put(do_something(line))
        outqueue.put(sentinel)
    
    def write_file(name, queue):
        with open(name, "w") as f:
            for line in iter(queue.get, sentinel):
                f.write(line)
    
    inq = Queue.Queue(maxsize=QUEUE_SIZE)
    outq = Queue.Queue(maxsize=QUEUE_SIZE)
    
    threading.Thread(target=read_file, args=(source_filename, inq)).start()
    threading.Thread(target=process, args=(inq, outq)).start()
    write_file(target_filename, outq)
    

    It is a good idea to set a maxsize for the queues to prevent ever-increasing memory consumption. The value of 1000 is an arbitrary choice on my part.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a huge file that has some lines that need to have a
What I have is a txt file that is huge, 60MB. I need to
I have a huge file that I must parse line by line. Speed is
I need to write a function that can read a file, and add all
I have a huge line-separated text file and I want to make some calculations
I have a Huge data file and I only need specific data from this
I have a huge XML file I need to do a Search and Replace
I have a huge text file (207 MB, 4 million lines) and I need
I have a very huge file in which I need to obtain every nth
I have a huge dump file about 40G in size, and I need to

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.