Skip to content

Persistence#19

Open
iloveitaly wants to merge 28 commits into
nebulab:masterfrom
iloveitaly:persistence
Open

Persistence#19
iloveitaly wants to merge 28 commits into
nebulab:masterfrom
iloveitaly:persistence

Conversation

@iloveitaly
Copy link
Copy Markdown
Contributor

@iloveitaly iloveitaly commented Apr 6, 2016

Initial audit log / persistence implementation.

Dependent PRs:

TODO

  • specs for attempts
  • response includes the root keys right now. Consider if this is the best approach
  • think on polljob logging
  • think on logging transformation + request params in attempt

@mtylty
Copy link
Copy Markdown
Member

mtylty commented Jun 24, 2016

@iloveitaly could you please rebase this on the master branch?

@iloveitaly
Copy link
Copy Markdown
Contributor Author

@mtylty slammed with other work at the moment, I'll get to this within 1-2 weeks.

@bricesanchez
Copy link
Copy Markdown
Contributor

@iloveitaly Is the goal of this PR to provide a Translation table to keep source and destination ids of record ?

Like my warehouse product ID is 1 and the shopify ID is 60001 and this PR will add the feature to keep id 1 and 60001 ?

@bricesanchez
Copy link
Copy Markdown
Contributor

It is probably more a feature to persist an unfinished job !? Like if one integration is down, it will retry to send the response until it works?

@iloveitaly
Copy link
Copy Markdown
Contributor Author

It is probably more a feature to persist an unfinished job !? Like if one integration is down, it will retry to send the response until it works?

Not exactly. Here's some more information about the goals here

  • Persist an unfinished or finished job
  • If job is unfinished or failed, response == nil
  • If job is finished, response payload is persisted
  • Each attempt to push job to service is logged as an Attempt
  • Persisting a job with the primary key on the object enables you to determine if a payload is new or updated[0]

[0]

def perform?
  type == 'shipment' && self.payload_state == :new
end

cc @AlessioRocco

Comment thread spec/support/rails_app.rb

database_path = File.expand_path('../../../tmp/cangaroo_test.sqlite3', __FILE__)
ENV['DATABASE_URL'] = "sqlite3://#{database_path}"
ENV['DATABASE_URL'] = "postgres:///cangaroo_test"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

@iloveitaly
Copy link
Copy Markdown
Contributor Author

@mtylty Rebased this PR on master, but it's dependent on the other smaller PRs I have open. Those will need to be merged before this passes.

Looking forward to hearing your thoughts!

@iloveitaly
Copy link
Copy Markdown
Contributor Author

An example of what the Translation class allows for:

def perform?
  self.unique_state?
end

def unique_state?
  !self.
    translation.
    related_translations.
    map { |t| t.request['status'] }.
    uniq.
    include? self.payload['status']
end

@iloveitaly
Copy link
Copy Markdown
Contributor Author

@AlessioRocco Any thoughts on this? I can rebase this PR if you have time to dig in.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants