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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:43:29+00:00 2026-05-16T16:43:29+00:00

I have a Python script that does something along the line of: def MyScript(input_filename1,

  • 0

I have a Python script that does something along the line of:

def MyScript(input_filename1, input_filename2):
   return val;

i.e. for every pair of input, I calculate some float value. Note that val is a simple double/float.

Since this computation is very intensive, I will be running them across different processes (might be on the same computer, might be on multiple computers).

What I did before was I output this value to a text file: input1_input2.txt . Then I will have 1000000 files that I need to reduce into one file. This process is not very fast since OS doesn’t like folders that have too many files.

How do I efficiently get all these data into one single computer? Perhaps having MongoDB running on a computer and all the processes send the data along?

I want something easy. I know that I can do this in MPI but I think it is overkill for such a simple task.

  • 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-16T16:43:29+00:00Added an answer on May 16, 2026 at 4:43 pm

    If the inputs have a natural order to them, and each worker can find out “which” input it’s working on, you can get away with one file per machine. Since Python floats are 8 bytes long, each worker would write the result to its own 8-byte slot in the file.

    import struct
    
    RESULT_FORMAT = 'd' # Double-precision float.
    RESULT_SIZE = struct.calcsize(RESULT_FORMAT)
    RESULT_FILE = '/tmp/results'
    
    def worker(position, input_filename1, input_filename2):
        val = MyScript(input_filename1, input_filename2)
        with open(RESULT_FILE, 'rb+') as f:
            f.seek(RESULT_SIZE * position)
            f.write(struct.pack(RESULT_FORMAT, val))
    

    Compared to writing a bunch of small files, this approach should also be a lot less I/O intensive, since many workers will be writing to the same pages in the OS cache.

    (Note that on Windows, you may need some additional setup to allow sharing the file between processes.)

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

Sidebar

Related Questions

Suppose I have a perl (or python) script that does something highly secretive; I'd
I have a python script that takes a movie file name and it does
I have a python script that runs a program, which generates few .exe files
I have a python script that I want always to run in the background.
I have a Python script that makes use of 'Print' for printing to stdout.
I have a Python script that needs to issue a number of shell commands.
I have a Python script that is using some closed-box Python functions (i.e. I
I have a python script that runs on a cron job. The script uses
I have a Python script that uses built-in modules but also imports a number
I have a python script that uses threads and makes lots of HTTP requests.

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.