Tagged Questions
0
votes
0answers
27 views
Mysql batch update structure system
I'm trying to figure out the best way to create a system for batch updating tables in mysql db.
Some data is imported from excel and some data is imported from xml and I need a way to update the ...
0
votes
0answers
67 views
Maximum execution time of ___ seconds exceeded Drupal 7 in batch
I have a problem with Drupal 7, only default language used.
Migrating one non Drupal forum db to Drupal. As forum has a lot of records in db, doing everything in batches. But here comes a problem.
...
1
vote
0answers
208 views
Upload a photo to multiple pages on facbook, using graphi API batch request
I have done a lot of searching for the answer, but I am unable to find one.
I am trying to upload a single photo to numerous facebook pages, using the graph API.
Using an answer from a similar ...
3
votes
1answer
167 views
How to throttle API requests using PHP
We plan to use the SEMrush API, which allows access to SEO data relating to domain names and search keywords. Under their Terms of Use, they limit their usage to avoid killing their servers:
You ...
0
votes
1answer
304 views
How to batch process a PHP script that takes a long time to execute?
I've built a PHP script that creates/restores a backup containing a sites content and database. It works really well on smaller sites but it runs into trouble on larger sites. What would be the best ...
3
votes
1answer
216 views
Notice: Undefined offset: in /my/Zend/ib/Search/Lucene/Index/SegmentInfo.php on line 641
I've a problem in indexing with Zend Search Lucene framework.
Our file repository has ~25000 files and I'm trying to index them. But during batch indexing, this error occurred:
Notice:
Undefined ...
0
votes
1answer
120 views
batch processing mail with phpmailer class
I need to setup a batch processing mailings with phpmailer class.
My web site is already sending mails thru phpmailer but according to my shared server I need batch processing system for my email ...
1
vote
1answer
98 views
Break a geographical area in to a series of smaller areas (of controllable size) and calculate which area a given lat/long point falls within
Unfortunately, maths was never my strong point and I'm struggling with the best approach/formula to do the following (which I will then need to turn in to PHP code):
1). Start with a single large ...
0
votes
0answers
126 views
Calling a method from a web browser that may take an hour to complete?
I hope this question does not get flagged due to the title, this is a specific question that just happens to cover a broad scope of possibilities.
I'm performing a batch operation that parses a file ...
1
vote
1answer
128 views
Tricky MySQL Batch Design
I have a scraper which visits many sites and finds upcoming events and another script which is actually supposed to put them in the database. Currently the inserting into the database is my ...
2
votes
2answers
638 views
Tricky MySQL batch query
I have a database of events which gets updated every night. A single event has information across three (or more) tables. Recently the volume of updates has caused my MySQL engine to be very slow to ...
0
votes
1answer
385 views
php script running out of memory when large amounts of data being written to file in batches
I am having continuous problems with my script running our of memory.
I need the script to loop through each customer in a database and then to get all the product data and geneate a text file. ...
0
votes
2answers
400 views
check cron job has run script properly - proper way to log errors in batch processing
I have set up a cronjob to run a script daily. This script pulls out a list of Ids from a database, loops through each to get more data from the database and geneates an XML file based on the data ...
1
vote
3answers
1k views
PHP MySQL running query in batches
I am new to working with large amounts of data. I am wondering if there are any best practices when querying a database in batches or if anyone can give any advice.
I have a query that will pull ...
0
votes
5answers
253 views
php java batch processing
I work in Linux. I have 3 file (about 2Gb each containing human genome sequence). I have java codes to process those files via web interface developed in PHP. The processing time is about 24 hours or ...
0
votes
3answers
976 views
Batching php's fgetcsv
I have a fairly large csv file (at least for the web) that I don't have control of. It has about 100k rows in it, and will only grow larger.
I'm using the Drupal Module Feeds to create nodes based on ...
1
vote
3answers
127 views
How would I perform many random operations to a set of images?
I need to manipulate an image such that a sub-rectangle of it is flipped or rotated relative to the rest of the image. Here's an example:
This manipulation needs to happen many times, each time ...
1
vote
2answers
894 views
MongoDB : ensureIndex not working on both single key and composite keys
From hours I'm trying to add bulk data in my locally setup MongoDB collection, all is set except unique index for a key or keys :(
I've used this:
ensureIndex({appid:1, userid:1}, {unique:true, ...
0
votes
5answers
516 views
How to do long time batch processes in PHP?
I have batch process when i need to update my db table, around 100000-500000 rows, from uploaded CVS file. Normally it takes 20-30 minutes, sometimes longer.
What is the best way to do ? any good ...
