Questions tagged [batching]
193 questions
0
votes
1 answer
Riak inserting Lists
How do I go about inserting a list of maps in Riak? I'd also be able to query list via Solr.
Here is my target data model:
{
"id":"fa0b758cf8de4a40a54f215563bb483c",
"version":"g2wAAAABaAJtAAAADN4oTJvAfuENAAE8fWEBag==",
…

user2208562
- 65
- 1
- 6
0
votes
1 answer
Gyroscope doesn't support Sensor Batching Nexus 5x running Android 6.0?
Calling both sensor.getFifoMaxEventCount()) and sensor.getFifoReservedEventCount()) both return 0 which is suppose to mean the sensor doesn't support batching. Yet my accelerometer supports batching using the same methods. Anyone know why such an…

sanic
- 2,065
- 4
- 20
- 33
0
votes
2 answers
Fetching Kafka Offsets in Storm Bolt for individual tuple
Use Case
Persisting Kafka messages to S3 using Apache Storm
Story so far
I tried using secor(https://github.com/pinterest/secor), works fine, serves the purpose. But it may be too much of a maintenance overkill as per Manager (who as they say is…

Albatross
- 669
- 7
- 24
0
votes
1 answer
Pattern for Database Batching when records are less than batch size
I'm currently using Apache Derby to store data to a local database. Since I could be processing many thousands of records, I want to batch the commits for efficiency gains.
But if my batch size is 50, how do I commit to the database if I only have…

jdie8274j
- 155
- 1
- 10
0
votes
1 answer
Batching when using ActiveRecord::Base.connection.execute
I am busy writing an migration that will allow us to move our yamler from Syck to Psych and finally upgrade our project to ruby 2. This migration is going to be seriously resource intensive though so I am going to need to use chunking.
I wrote the…

Donovan Thomson
- 2,375
- 3
- 17
- 25
0
votes
1 answer
how do I batch multiple quads into one giant buffer
I am trying to batch multiple sprites into one large buffer but I am running into some technical difficulties. I think I am not setting up my vbo sizes correctly but let's see.
This currently renders only 1 colored quad, although I would like to…

user1610950
- 1,837
- 5
- 33
- 49
0
votes
2 answers
Why does the batches count increase when I access the renderer?
I have 81 game objects in my scene. When I play the stats are healthy with 3 batches running. But when I access the renderer in the script the batches count increases for every object. After I accessed all the objects' renderer the situation gets…

Distraction Arrestor
- 301
- 3
- 12
0
votes
0 answers
How to do a PHP Batch request with Google Analytics
I have to do 40 requests to Google Analytics at the same time. But I have problems to understand the following batching explanation of GA to PHP (Link). I understand the purpose, but how do I translate this to PHP? I have no problem to do a usual…

André GC
- 51
- 1
- 5
0
votes
1 answer
How many deletes to batch in HBase?
I am writing a job to scan an HBase table and delete certain rows. I've read that I should batch up my deletes and flush them out periodically rather than process each individual delete or process the entire batch at once. My code right now is…

Nathan Norman
- 145
- 1
- 6
0
votes
1 answer
OpenGL Primitive Ordering vs. Primitive Batching
I've been reading up on how some OpenGL-based architectures manage their objects in an effort to create my own light weight engine based on my application's specific needs (please no "why don't you just use this existing product" responses). One…

Moohasha
- 245
- 1
- 13
0
votes
1 answer
Auto batched requests not recognized on the server
I wanted to try out the Auto Batched Request feature of ServiceStack. But it does not seem to work on the server side.
I have a Service like this:
public class HelloService : Service
{
public object Any(HelloRequestDTO request)
{
…

apaulus
- 77
- 5
0
votes
1 answer
Trying to implement grouping in IEnumerable to stream from Database
Currently the application I'm working with uses strongly typed DataSets to work with data from the DB. We have a table called COM_ControlIn that represents a "file" and several other tables have a relationship with the control table. The one I need…

ldam
- 4,412
- 6
- 45
- 76
0
votes
1 answer
Grouping and batching events in Esper
I am trying to group events by User and return them in batches (per user). For example, if 3 users each sent 5 events, I would like 3 batches of 5 events to be output from esper.
Using the following EPL, I am able to validate that 3 data windows…

beterthanlife
- 1,668
- 2
- 18
- 30
0
votes
1 answer
How to reduce drawcall for object with animation in Unity3D
I have a pretty simple scene,but it has about 80 character,each of them has animation(the character can play 5 action(run,walk,stand,dance,hit),every character has only 300 vertex, and all the character share the same material,no lightmaped…

NXD
- 1
0
votes
1 answer
CometD long polling - Does it scale nicely to high traffic?
If I use CometD long polling:
Suppose there are 1000 messages in a second to be sent to subscribers, does CometD allow them to be auto-batched so that each client doesn't have to re-connect for each single message?
Do "lazy channels" (as described…

Navigateur
- 1,852
- 3
- 23
- 39