Tagged Questions
0
votes
1answer
17 views
Destroy dependent objects in Rails using one transaction
Please, help to optimize object destroing in Rails application: I have relatively big database, and when I want to delete user from it all dependent objects removing takes > 1 minute. It's very long. ...
0
votes
1answer
18 views
add to has_many association and use activerecord callback
I have 2 models, Foo and Bar. Foo has_many bars. I'm trying to do something like the following in my Foo model
add_bar?(blah)
bar = Bar.new
bar.foo = self
bars << bar
save
end
...
2
votes
2answers
71 views
Activerecord transaction concurrency race condition issues
I'm currently doing live testing of a game I'm making for Android. The services are written in rails 3.1 and I'm using Postgresql. Some of my more technically savvy testers have been able to ...
1
vote
2answers
61 views
Inserting Multiple Records at a time into Model [duplicate]
I am looking for some best practices when it comes to inserting data into a model, especially when there are a lot of records to be created, so far I am retrieving some XML and saving it into a model
...
0
votes
1answer
34 views
.save returns false when I try to save in the database
I have this transaction:
begin
ActiveRecord::Base.transaction do
route_array.each do |r|
Rails.logger.info r.save
end
end
end
As you can see I have the route_array and I'm ...
0
votes
2answers
40 views
What is the correct way to transfer values between Models in Rails 3?
I have the following setup in my app.
class Account < ActiveRecord::Base
attr_accessible :balance, :user_id
belongs_to :user
end
class User < ActiveRecord::Base
attr_accessible :name, ...
1
vote
1answer
52 views
How do I track Em.Store dirtiness in ember.js
I'm trying to track the presence of dirty records in my Ember store.
I want to have a 'save' button with a linked property in order to disable the button whenever there are no records pending update.
...
2
votes
2answers
122 views
ActiveRecord transactions, saving 1000+ entries
I have EventsController create action that looks like this:
class EventsController < ApplicationController
def create
@event = Event.new(params[:event].slice(*Event.accessible_attributes))
...
1
vote
1answer
57 views
Using transactions within Rails around_create callbacks
I've got a situation where I need to 'do_this' after 'foo' has been created successfully and 'do_that' when 'do_this' has been executed without errors, like so:
class Foo < ActiveRecord::Base
...
0
votes
1answer
66 views
Is it possible to manually rollback the database in the Rails console when NOT starting in sandbox mode?
Say you're working in the console, and you delete a record where you have a
belongs_to :model :dependent => :destroy
where you didn't mean to, for example, and you end up deleting other records ...
0
votes
1answer
119 views
Commit a single update, inside a transaction
I need some help...
this is a sort of Rails 3.0.15 pseudo code to explain my problem:
progress_bar = ProgressBar.create
record = Record.new
10000.times.do
record.bodies.build
progress_bar.inc
...
1
vote
2answers
142 views
Rails not rolling back transaction after failed save()
I have this domain model: A user has group of items, and the state of the items can fail a validation.
Validation works fine, and I even see exceptions get called when I use save!.
In my controller, ...
0
votes
0answers
130 views
Rails - Transactions and Rollbacks
I am trying to get transactions to work because I need to save the @event so I can assign the given @event.id to its dependents.
I have raise ActiveRecord::Rollback, but it doesn't do anything. I ...
0
votes
1answer
70 views
How to create record in database only if it doesn't exists?
I have Ruby on Rails app in which user can upload multiple files to folders. Before uploading user can select folder or leave folder field empty. In the later case such folder need to be created ...
0
votes
1answer
68 views
Render failing to render correct template in rescue_from ActiveRecord::Rollback method
I'm building the checkout page for an e-commerce site, and I have a fairly long transaction that creates a new User model and a new Order model. I wrapped the creation of these models in a transaction ...
0
votes
1answer
32 views
Are execute statements not rolled back on exception?
I have a migration where I'm changing the character set for a MySQL table, from latin1 to utf-8. After that, I'm trying to alter the objects in some way. I'd like that if an object fails to save to ...
2
votes
1answer
180 views
rails activerecord transaction blocks don't seem to not commit
I've a rails app that I'm crashing on purpose.. it's local and I'm just hitting ctrl + c and killing it mid way through processing records..
To my mind the records in the block shouldn't have been ...
1
vote
0answers
108 views
Performance of Rails transaction rollback vs. manual cleanup in Production DB
I am aware that a rollback is not the same thing as a manual cleanup and is, in most cases, the preferred approach. That said, what is the performance difference between a large database rollback ...
3
votes
1answer
99 views
Rails: implement auditing of table insertions/updates
I am fairly new to ROR and am working on a cargo tracking project.
The idea is to log all changes to shipment location so that when users track their shipment with a tracking number they would see the ...
1
vote
0answers
119 views
Howto handle nested transaction with ActiveRecord 3.0.4 and db_cleaner
We are using db_cleaner with clean method :transaction on a Rails 3.0.4 app (that we can't upgrade at the moment) with a MySQL 5.x DB. We can not use :truncation, cause we'd loose seed data.
Now we ...
3
votes
1answer
151 views
ActiveRecord: Concurrent access between validation and writing to the database
Let's say I have on online book store whose data model lookes like that:
Prior to creating a new order, I want to make sure that enough items are in stock, so I have a method like this
def ...
3
votes
1answer
97 views
ActiveSupport::Notifications transaction_id
I have been browsing the Rails repository at Github to find the definition of transaction_id, but is unsuccessful.
What kind of transaction is it? It looks like the same transaction_id is used for a ...
3
votes
2answers
407 views
Rails 3.2 ActiveRecord Transaction
I have been reading that ActiveRecord Transactions are automatically wrapped around save and destroy actions. My question relates to the following scenario.
I have an inventory system that tracks ...
4
votes
1answer
159 views
Why does this transaction not work in ActiveRecord?
I am currently playing around with transactions and can not wrap my mind around the following scenario:
Given there is user with username "johnny" and full name "John Smith".
I start two rails ...
3
votes
2answers
788 views
Warning while testing specs on postgres: there is no transaction in progress
For each step of test occurs 2 lines:
WARNING: there is already a transaction in progress
NOTICE: there is no transaction in progress
With Spork lines following triples:
NOTICE: there is no ...
1
vote
0answers
62 views
Ruby on Rails — Is a counter-cache transaction safe?
Will it handle the two people updating problem ok?
I googled and looked in the api but found nothing
Rails 3+, ruby 1.9.3
1
vote
1answer
286 views
save on model with nested attributes does not rollback, when autosave associations fails executing DDL
Following are the class definition between the parent & child :-
class System
has_many :members, :dependent => :destroy
accepts_nested_attributes_for :members
attr_accessible :name, ...
0
votes
1answer
149 views
Rails 3 ActiveRecord Nested Transactions With Multiple Databases
According to the rails documentation nested transactions involving multiple databases should work:
User.transaction do
User.create(:username => 'Kotori')
User.transaction(:requires_new => ...
8
votes
1answer
283 views
How to get PayPal's user data and transaction details using paypal_permissions gem?
I need to get Transaction data(date, valued) and user adata.Can I use this gem with some modifications as in this question?
Also, from documentation:
For example, if you plan to query PayPal using ...
2
votes
1answer
146 views
How to receive payment data or user data from PayPal using paypal_permissions gem or other?
I'm using Rails and need to make reports about payments. I need to receive information about payments. I can't get how to do it.
I found paypal_permissions gem to get permissions to obtaion personal ...
3
votes
3answers
430 views
Database lock not working as expected with Rails & Postgres
I have the following code in a rails model:
foo = Food.find(...)
foo.with_lock do
if foo.bars.find_by_stuff(stuff)
# do something with the Bar
else
foo.bars.create!
# do something ...
0
votes
0answers
95 views
Confirming if (methods bypassing save/callback) would (bypass rollback) if (placed within a transaction block that fails)
Here is the source
168+ # The after_commit callbacks are called on every record saved or destroyed within a
169+ # transaction immediately after the transaction is committed. The ...
0
votes
1answer
83 views
How does ActiveRecord do data definition transactions with postgres?
Are data definition transactions the same as regular transactions?
I want to write a migration that
changes table A
does some custom data migrations
changes table B
Ideally this would all be ...
0
votes
1answer
124 views
activerecord: update object attribute without using transaction
Here is my code:
class UserTopicVisit < ActiveRecord::Base
belongs_to :user
belongs_to :topic
def self.log_last_user_topic_visit(user_id, topic_id)
visit = ...
11
votes
6answers
379 views
How to test that a certain function uses a transaction in Rails and rspec 2
I have a model function that I want to make sure uses a transaction. For example:
class Model
def method
Model.transaction do
# do stuff
end
end
end
My current approach is to ...
0
votes
1answer
340 views
How do I use an ActiveRecord Transaction in a Rake Task to rollback in the case of a Ctrl+C interrupt
I'm writing a rake task that creates records in my database and can run for an indefinite amount of time. one aspect of the task is creating many-to-many associations between models. If I were to quit ...
0
votes
2answers
151 views
Transaction speeding up processing
I was reading Agile Web Development With Rails, when I saw this piece of code:
Order.transaction do (1..100).each do |i|
Order.create(:name => "Customer #{i}", :address => "#{i} Main ...
1
vote
1answer
147 views
Combining save so after_update is only called once
I found that my Projelement's after_update callback was triggering twice, because I was saving a Projelement twice (previous question):
def update
@milestone = Milestone.find(params[:id])
...
0
votes
1answer
111 views
HTTP requests in transactions?
I have a model which sends a HTTP request to an external web service on creation in order to find out some information to add before it is saved.
Currently I'm doing this in a before_create callback. ...
1
vote
3answers
346 views
Make Rails controller actions atomic?
Sometime one in a long series of events within a controller action fails. For example, a credit card is processed but then an ActiveRecord query times out. Is there any way to make those calls ...
1
vote
1answer
579 views
Mongoid+Rails: Atomic callbacks?
I know that in Rails all ActiveRecord callbacks are executed inside transaction. So if something goes wrong nothing is changed/wrong. Will Mongoid gem handle this in the same way (no transactions ...
2
votes
2answers
706 views
How to set transaction isolation level using ActiveRecord connection? [recommend a gem]
I need to manage transaction isolation level on a per-transaction basis in a way portable across databases (SQLite, PostgreSQL, MySQL at least).
Could you please recommend a gem which enhances ...
0
votes
1answer
198 views
setup donation system in rails
Ok so there is this feature that I would like to implement on my site. Users can choose to donate money to a specific nonprofit (let's say Wikipedia). So they click donate and they choose the amount ...
1
vote
1answer
351 views
Preventing duplicate database inserts/updates in our Rails app from simultaneous transactions
As our Rails application deals with increasing user activity and load, we're starting to see some issues with simultaneous transactions. We've used JavaScript to disable / remove the buttons after ...
3
votes
2answers
337 views
How to make these two simultaneous transactions succeed at all times, without causing a uniqueness violation?
Let's pretend that there's a tags table with a unique field called name.
I have a transaction in which I perform a select to see if a tag with a specific name exists, and if it wasn't I create it:
...
0
votes
2answers
76 views
reserve a row for a specific time using ActiveRecord
I'd like to be able to "reserve" an element similar to how an airplane seat is locked for a short period of time before it's actually paid for. I think the best way is to do it through the database ...
0
votes
1answer
84 views
If redis timesout during a SET operation, could data in the redis db have been modified anyway?
I'm using redis for analytics in a ruby on rails application hosted on heroku and I'm thinking about how I should handle redis timeouts. Redis timeouts don't happen too frequently, but they do happen. ...
4
votes
2answers
987 views
Wrap all controller actions in transactions in Rails
Is it possible to set up a Rails application such that all controller actions are automatically wrapped with a transaction, that gets automatically rolled back in case of unrescued exceptions?
I'm ...
0
votes
0answers
180 views
How to guarantee data integrity for concurrent Rails/Active Record operations
I need to implement a feature for a rails site that will involve reading and exporting most of my database.
I know this operation is going to take a while. That's fine-- I've got delayed job for ...
3
votes
2answers
1k views
Rails postgresql how to set transaction isolation level to serializable
I have a Comment model which belongs_to a Topic model. On the Comment model, I have a before_create callback
def on_create
Topic.transaction(:require_new => true) do
...
