1. In memory management, chunking refers to strategies for improving performance by aggregating related memory-allocation requests. 2. In HTTP message transmission, it refers to a facility that allows inconveniently large messages to be broken into conveniently-sized smaller "chunks." 3. In parallel computing, it refers to the amount of data to assign to each task.
Questions tagged [chunking]
369 questions
0
votes
1 answer
How to enable chuncking on Apache 2.2.3 on Redhat system
My Apache (version 2.2.3 on redhat) server doesn't accept chunked-encoding, throwing this error:
chunked Transfer-Encoding forbidden: /services/soap.
I saw some people have the same problem, they suggested disabling the mod_deflate.so, I commented…

securecurve
- 5,589
- 5
- 45
- 80
0
votes
2 answers
How to chunk array processing in R?
I am calculating the correlation between two data sets but due to the big size of the data (10 GB) while my RAM is only 6 GB I am facing a memory issue. I wonder how can to chunk my code?
dir1 <- list.files("D:sdr", "*.bin", full.names = TRUE)
dir2…

sacvf
- 2,463
- 5
- 36
- 54
0
votes
1 answer
Split VARCHAR field into 2 rows MySQL
I have a database full of emails. It contains the to, from, subject, body, etc as columns. I am trying to output essentially the same format, but for the application I will be using the output file for, the body text cannot be longer than about 300…
0
votes
1 answer
Does chunking incorporate asynchronous execution? How to stream chunks asynchronously?
In the Play Documentation Chunks are introduced as a solution to "streaming content". I am unsure whether streaming content can be produced slowly without blocking the HTTP thread or if I must separately make the convert the Chunks to an AsyncResult…

Janus Troelsen
- 20,267
- 14
- 135
- 196
0
votes
5 answers
How do I use File.ReadAllBytes In chunks
I am using this code
string location1 = textBox2.Text;
byte[] bytes = File.ReadAllBytes(location1);
string text = (Convert.ToBase64String(bytes));
richTextBox1.Text = text;
But when I use a file that is too big I…

Layne3
- 71
- 1
- 2
- 7
0
votes
2 answers
S4 class for chunked data in R- inherited numeric methods won’t work
I want to create an S4 class in R that will allow me to access large datasets (in chunks) from the cloud (similar to the goals of the ff package). Right now I'm working with a toy example called "range.vec" (I don't want to deal with internet access…

Eli Sander
- 1,228
- 1
- 13
- 29
0
votes
1 answer
How to do streaming and chunking for wsHttpBinding
I need to transfer large files (3-4 Gb) from Client to Server using WCF but binding which is already in place is wsHttpBidning. I have to use thing binding. Using custom binding is also out of option. Need some idea on how can I achieve it just by…

Kamal Kr
- 687
- 1
- 10
- 22
0
votes
1 answer
NLTK Chunking Error
I'm trying to implement a sentence chunker based on a Maxent Classifier, as described in the NLTK book (Example 7.9):
http://nltk.googlecode.com/svn/trunk/doc/book/ch07.html#code-classifier-chunker
When I try to evaluate the chunker with
chunker =…

Vasilis
- 2,721
- 7
- 33
- 54
0
votes
2 answers
ASP MVC FileStreamResult OutOfMemoryException
I have a large zip file (500MB or greater) that I am reading into a MemoryStream and return as a FileStreamResult. However, I am getting a OutOfMemory Exception for files over 200MB. Within my Action I have the following code:
MemoryStream…

user327999
- 443
- 1
- 9
- 21
-1
votes
0 answers
Trouble inserting all chunks from multiple files into database
My Python script to tokenize and chunk text files, then insert these chunks into an SQLite database seems to work for some files. Only some of the chunks are inserted for certain files. The script is using the tokenizers library for text processing…
-1
votes
1 answer
how can insert 1000000 row from textarea into database in laravel?
how can insert 1000000 row from textarea into database in laravel 8 ???????
i write this code and just can insert 30000 row and then browser give me HTTP ERROR 500
i set max_execution_time to 300 in php.ini
this is my code
please help me .…

ProSonic
- 61
- 7
-1
votes
1 answer
how do you split list into x lists without using the elements on the inside?
Working on an assignment, which in one of the parts requires me to split the list into "x" chunks of lists but I don't necessarily want to use the elements inside the list to do so as I have seen many examples that do this. For example, given the…

snk
- 91
- 1
- 8
-1
votes
1 answer
How to fix laravel collection chunk loop once?
I have a problem with laravel collection with chunk result. It run only one time in loop.
I have 204 elements in array and I want to split it as 100 each by using laravel collection helper. It must run in three times but I got only once.
private…

Sen Soeurn
- 149
- 1
- 2
- 11
-1
votes
1 answer
Standard method for chunking with multiple servers?
Context of a client sending a file to a server that has been chunked into parts.
In a single server setup, an option is to store the the chunks on the server. When new chunks arrive they get added to the existing data.
With multiple servers "micro…

oooiiiii
- 302
- 2
- 11
-1
votes
1 answer
How to extract meaningful noun phrases based on probability using OpenNlp's chunking parser
I am newbie to Natural Language processing. I need to extract meaningful noun and noun phrases based on their probability (eg. 75% and above) to make a auto-suggest dictionary.
I have been reading on-line posts, articles for a couple of days, but…

Wendy
- 1
- 1