1
vote
3answers
49 views

Linux, cancel blocking read()

In a multi-threaded Linux program used for serial communication, is it possible (and what would be the best approach) to terminate a blocking read() call from another thread? I would like to keep ...
1
vote
2answers
70 views

Optimizing number of threads dynamically

I have two IO intensive processes that don't do much computing: one is getting and parsing a webpage and the other is storing some data obtained with the parsing in a database. This is going to repeat ...
0
votes
2answers
28 views

Merging several ByteArrayOutputStreams into one FileOutputStream

I am splitting up a computation among eight threads and writing the results to a file, as follows: 1a. Each of seven threads processes its input and writes its output to its own ...
0
votes
1answer
26 views

Reading only one “message” from a pipe each time?

I have two processes connected with a pipe. One process has several threads writing messages on the pipe. The other process reads the pipe and process the messages. The problem is that, when the ...
0
votes
1answer
61 views

Multithreading/IO Stream Issues in a Java TCP Chat Client

I have a (you guessed it) homework assignment in Java that has been driving me up the wall. I am making a chat client based on TCP that will eventually use Swing as a GUI, but right now I'm just ...
0
votes
1answer
27 views

What is the limit of I/O operations on a single file in S3

I have a situation, where I'm planning to update a single file on S3 a lot of times. To be more specific imagine if I need to add about 50 lines of data (roughly 200 bytes each) in 1 second by using ...
0
votes
2answers
38 views

Python logger prints the same output several times in multithreaded environment [duplicate]

In my code, somehow the logger prints out events twice, but conventional print shows correct number of events. select 1,2 select 1,2 2013-04-19 18:37:30,618:4561354752 - SQLLogger - DEBUG - select ...
0
votes
1answer
46 views

Python's threads block on IO operation

I have the following problem. Whenever a child thread wants to perform some IO operation (writing to file, downloading a file) the program hangs. In the following example the program hangs on ...
1
vote
3answers
273 views

Scanner(System.in) - how to cancel/skip input waiting

I am just wondering how to control console inputs in separate threads? I have thread A and thread B and thread C; B and C they both control user input... the thing is I am not pretty sure how to ...
0
votes
2answers
57 views

PipeInputStream and PipeOutputStream synchronous or asynchronous?

I'm reading a Java book I found a sentence that seems incorrect: When reading, if there's no data available, the thread will be blocked until it new data will be available. Notice that this is a ...
2
votes
1answer
66 views

Why fprintf doesn't work in thread?

I'm creating a thread with pthread_create. Inside the thread function i use fprintf(stdout, "text\n"); But this doesn't output anything to the console. The same problem is with printf. I've also ...
0
votes
1answer
48 views

Sockets Winsock async blocking Read Write simultaneously

I have a client server arch and I am using blocking win sockets. I have a read and a write thread both on the server and on the client side. Say Client is waiting (blocked) on a read() call for ...
-5
votes
2answers
90 views

How can I create separate output lines, depending on the Thread the output is coming from? [closed]

I have a program that implements two different sort algorithms. I am testing both algorithms in parallel by launching them in separate threads. I would like to be able to view the results of the sort ...
0
votes
1answer
74 views

Thread-per-connection model

Talking about the thread-per-connection model, each connection is supposed to have one single thread. This thread is used to read data from the stream. However, since I'm using a blocking I/O, I can't ...
0
votes
1answer
44 views

Capture IO of spawned program in Java

I'm writing a program in Java which relies on a pre-compiled third party JAR residing in the same directory as mine. At runtime, my program checks if this file exists, then downloads it if it ...
1
vote
1answer
42 views

How is waiting for I/O or waiting for a lock to be released implemented?

I'm curious. I've been programming in Python for years. When I run a command that blocks on I/O (whether it's a hard-disk read or a network request), or blocks while waiting on a lock to be released, ...
1
vote
2answers
85 views

IOCP loop termination may cause memory leaks? How to close IOCP loop gracefully

I have the classic IOCP callback that dequeues i/o pending requests, process them, and deallocate them, in this way: struct MyIoRequest { OVERLAPPED o; /* ... other params ... */ }; bool ...
2
votes
1answer
82 views

Multiple thread copy IO Operation with Apache IO Java

I am developing something like a zipping utility which is required in a major project. What utility does is take the request from the user and start copying all the files asked for to make a zip file ...
3
votes
1answer
107 views

How to debug “Sharing Violation” when trying to delete a file

I have a multi threaded C# application which creates files, opens them for processing, then deletes them once finished. This application can expect anywhere from 1 - 100 files to be processed. ...
0
votes
1answer
56 views

iOS iPhone looking for a fast logging of timestamped integers to data file implementation

I'm looking for suggestions/implementations of how to create a comma separated log file on an iPhone when my data comes at a relatively fast rate (200 times per second). I expect to capture the ...
1
vote
1answer
77 views

Processing large amounts of files, slowed down by I/O, how to make more efficent?

I've been maintaining an application for a few years ever since creator stopped working on it. This application does batch operations on a large amount of pictures such as resizing, applying text, ...
1
vote
1answer
81 views

Replaying stored data at a fixed rate

I am working on a problem where I want to replayed data stored in a file at a specified rate. For Eg: 25,000 records/second. The file is in ascii format. Currently, I read each line of the file and ...
1
vote
2answers
85 views

single file reader/multiple consumer model: good idea for multithreaded program?

I have a simple task that is easily parallelizable. Basically, the same operation must be performed repeatedly on each line of a (large, several Gb) input file. While I've made a multithreaded ...
1
vote
2answers
161 views

C# image crop resize delete

When I try to delete image by using System.IO.File.Delete(....) then I get error exception. IOException was unhandled by user code The process cannot access the file ...
4
votes
2answers
178 views

how come ruby's single os thread doesn't block while copying a file?

My assumptions: MRI ruby 1.8.X doesn't have native threads but green threads. The OS is not aware of these green threads. issuing an IO-heavy operation should suspend the whole process until the ...
0
votes
1answer
73 views

Multithreading / Asynchronous I/O

I have a conceptual question. I currently have a programme that performs within a never ending loop. Def (mycode): Perform login to server and retrieve cookies etc While 1: Perform an ...
0
votes
0answers
45 views

xulrunner 17.0.01 or newer: how to run file access from within JavaScript and avoid blocking the main thread?

Folks, I am porting a xulrunner 1.9.2 based application to 17.0.1 or newer (not yet decided if 18.0 will be used). In the old xulrunner, JavaScript threads could acces XPCOMs and manipulate e.g. the ...
1
vote
1answer
66 views

How can I pass data to thread System.in and how can I get data from thread System.out?

I have one main thread and one child thread e.g. Thread childThread. How can I pass data to childThread System.in and how can I get data from childThread System.out?
1
vote
2answers
99 views

Java: How to make a thread wait on IO from user and then proceed

In a DbInterface class a function openDB() opens connection to a Oracle DB on a server. For security reasons the user has to enter their password in a JFrame textarea before the program can proceed ...
5
votes
1answer
167 views

java.io.RandomAccessFile scalability (or other options)

I'm working on some Java code that will eventually be used within an app server to access some really big files (over 1GB, under 20GB), possibly hosted on an NFS share. Servicing an individual request ...
1
vote
2answers
545 views

Python error “I/O operation on closed file” when using a file handle with thread lock

I am trying to write to one file using Python threading module and I am already using the lock to access the file. the class like below: class WriteToFile(threading.Thread): def ...
0
votes
0answers
118 views

Processing Multithread socket connection in java

I have a server and a client. Server is capable of handling multiple request. Client opens a socket and sends a stream of bytes. While the server is processing, it is not behaving correctly. From the ...
5
votes
5answers
187 views

multithread read from disk?

Suppose I need to read many distinct, independent chunks of data from the same file saved on disk. Is it possible to multi-thread this upload? Related: Do all threads on the same processor use the ...
3
votes
1answer
309 views

Can multiple threads reading the same property file in Java cause performance issues?

I am creating multiple threads and all the threads read the same property file (there is no write operation done to property file). Will this cause performance overhead since the same property file is ...
10
votes
3answers
2k views

Asynchronous IO in Scala with futures

Let's say I'm getting a (potentially big) list of images to download from some URLs. I'm using Scala, so what I would do is : import scala.actors.Futures._ // Retrieve URLs from somewhere val urls: ...
2
votes
1answer
399 views

UDP listener with task-based asynchronous pattern

I am messing around with a UDP listener and the TAP. I have a class that is responsible for listening for incoming UDP and that can be started and stopped. The Start() method simply calls the ...
1
vote
1answer
515 views

Exception in thread “Thread-1” java.lang.NullPointerException that happens when I try to update my graph

I edited a JFreeChart real time graph and now I get this error when I try to run it. When I run it, the GUI will pop up its just the graph doesn't have the random data stream in. Any ideas would be a ...
6
votes
2answers
209 views

java vs scala - reading in file on a separate thread

I would like to know what the best in terms of industry practice way is to read in a file using multithreaded approach. In Java I would do something of the following sort: class Reader { Result ...
4
votes
2answers
190 views

Clojure message handling / async, multithreaded

I have a small Clojure consumer/publisher receiving messages, processing them and sending them off to other consumers, all via RabbitMQ. I've defined a message-handler that handles messages in a ...
1
vote
1answer
80 views

My program wants to keep taking input from the command line

I'm trying to create a server for my Chat program but for some reason it just takes input and will keep doing it even when you press enter over and over. I am trying to run the server only in the ...
0
votes
1answer
210 views

Java nio server client asynchonous

I made a server myself using java nio and a selector. I can receive the data and answer directly from the client if needed. But now I want a thread that will process data, and anytime it will send ...
1
vote
2answers
144 views

Buffering Input files and parallel processing in java

I have a collection of 1000 files in gz format. I want to process them in chunks in parallel, say 8 in each round. When I let every thread opens a file and read from disk that resulted in a ...
-1
votes
1answer
739 views

file search high performance program [closed]

I was having one requirement that is I have to write a high performance file search program, the program is supposed to list down all the files and folder that matches the name pattern provided ...
0
votes
4answers
182 views

Java - Process bytes as they are being read from a file

Is there a way to have one thread in java make a read call to some FileInputStream or similar and have a second thread processing the bytes being loaded at the same time? I've tried a number of things ...
3
votes
1answer
173 views

How to interrupt an I/O call in a perl thread?

Looks like times of old good alarm() call are over, so how to interrupt blocking read()'s and write()'s made from perl thread (using that brand new 'threads' module) assuming the code making those ...
1
vote
1answer
335 views

How to use async IO (for IRC client) in PHP?

I'm trying to build a little command-line IRC client in PHP because I'm getting sick of all those clients having you click through twenty GUI popups/windows to connect to a new server. Everything is ...
1
vote
1answer
69 views

Write file need to optimised for heavy traffic part 4

this is a continuation of part 3 Write file need to optimised for heavy traffic part 3 as my code changed somewhat i think it is better to open a new thread. public class memoryStreamClass ...
1
vote
1answer
92 views

Write file need to optimised for heavy traffic part 3

this question is a continuation of the first 2 part, anyone who is interested to see where I come from you can refer to part 1 and part 2, but it is not necessary. write file need to optimised for ...
1
vote
2answers
362 views

Real-life examples of async non-blocking loop vs. multithreading?

I have been developing in Node.js recently and have a good idea of what is going on as far as the event loop. Given that I had experience with javascript, Node made sense for me to use, but I wonder, ...
0
votes
1answer
64 views

python: urlopen&threading unnecessarily slow? is there a faster way?

I'm writing a client that loads & parses many pages at once & sends data from them to a server. If I just run one page-processor at once, things go reasonably well: ********** Round-trip ...

1 2 3