Questions tagged [batching]

193 questions
1
vote
1 answer

NodeJS batching async.parallel

I have async.parallel(tasksGetContentFromGitHub, function(err, res) { // all request over, do something } the problem is that I might have a large number of tasks, and each of them is sending a request to GitHub. Since I am a nice citizen, I…
HLP
  • 2,142
  • 5
  • 19
  • 20
1
vote
2 answers

Batch insert to SQL Server table from DataTable using ODBC Connection

I have been asked to look at finding the most efficient way to take a DataTable input and write it to a SQL Server table using C#. The snag is that the solution must use ODBC Connections throughout, this rules out sqlBulkCopy. The solution must also…
Chris D King
  • 63
  • 1
  • 5
1
vote
0 answers

Elasticsearch : actions to take when bulk.rejected count is high

If you see that the bulk.rejected count is high since bulk.queue size is much higher than bulk.active, what general actions do you take ? (assuming that you can scale your cluster easily) e.g. using…
dparkar
  • 1,934
  • 2
  • 22
  • 52
1
vote
1 answer

Which one is more important in batching in OpenGL?

I have read Batch,Batch,Batch. In the Batching process, there are two main things: 1 Submit n number of triangles 2 SetState So which one is more cpu time consuming? Or the SetState itself actually does not matter at all. It matters only because…
AlexWei
  • 1,093
  • 2
  • 8
  • 32
1
vote
1 answer

How to get an Azure Webjob to process multiple queue messages?

In Azure worker roles, you can create a batch job that processes a list of messages. I'm wondering if there is something similar to that for Azure WebJobs? Currently you can trigger a webjob from a queue as follows: public static void…
koverda
  • 99
  • 1
  • 8
1
vote
1 answer

Advice on OpenERP and Odoo HTTP requests batching

Can anybody please give advice or feedback about past successfully/tentative attempts to apply batching of HTTP requests towards OpenERP/Odoo? What is wanted to do is... kind of simulating user input towards an OpenERP 7 portal, based on the…
1737973
  • 159
  • 18
  • 42
1
vote
1 answer

What's the term 'batch' exactly means in 3D computer science (3D engine)?

I'm developping a 3D application using OpenGL. I have a misconception about a part of the following post: OpenGL VAO best practices I'm not sure about the meaning of the term 'batch' in this post. Does it means for each object of the scene ? So does…
user1364743
  • 5,283
  • 6
  • 51
  • 90
1
vote
1 answer

How I receive sensors data in batching mode?

I didn't program sensors apps yet, but I read about batching (in KitKat) and I wonder how should I get the data. I found in sensors header file (line 1083): All events since the previous batch are recorded and returned all at once but according…
AsfK
  • 3,328
  • 4
  • 36
  • 73
1
vote
1 answer

Sprite Batching in Non-OpenGL/XNA Environment

I've been working on a game in Visual C# (Not the best platform, I know), and, as would perhaps be expected, it has started to run rather slowly. Running some tests has shown that the main hold up is in drawing images. I've been told that Sprite…
1
vote
3 answers

Pattern for batching and bulk processing

I've data queried from the db that looks a lot like the following Job Site File List ------------------------------- 1 SiteA file2.txt 2 2 SiteB file2.txt 2 3 SiteA file23.txt 23 4 SiteC file2.txt 2 5 SiteB …
deostroll
  • 11,661
  • 21
  • 90
  • 161
1
vote
1 answer

How to Batch Update XML files

I have a bunch of XML that all conform to the same schema. A particular element I want to batch edit only occurs exactly once each of the XML files and has an identical xPath in each of these files. e.g. /Valid/HeaderInfo/SoftwareID I want to…
smk081
  • 783
  • 1
  • 10
  • 36
1
vote
1 answer

Facebook C# SDK batch request feed with object_id for photo data

I am using the C# Facebook SDK to query Facebook for the /home feed and the feed contains photos. The "picture" link in the feed is low resolution, so I have to look up the "object_id" for the photo from the feed to get the high resolution…
1
vote
2 answers

Sync Framework - Batching

I synchronize two remote databases (Sql Express and Sql Compact) using sync framework 2.1 over WCF (N-Tier), using batching. Recently I receive this log file, this is an error that appears quite rarely, but when it does it creates a lot of problem…
Angela_SB
  • 249
  • 4
  • 12
1
vote
1 answer

SYNC FRAMEWORK-Batching

I am able to synchronize two remote databases using sync framework 2.1 over WCF(N-Tier) . To improve performance while transferring large data, I implemented Batching. But I am facing below error message: An unexpected error occurred when applying…
1
vote
1 answer

Batching Stored Procedure Commands in EF 4.2

I've got a call to a stored procedure, that is basically an INSERT stored procedure. It inserts into Table A, then into Table B with the identity from Table A. Now, i need to call this stored procedure N amount of times from my application code. Is…
RPM1984
  • 72,246
  • 58
  • 225
  • 350