Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • The change log is transactional.  If a rollback or failure occurs in Grouper, the change log will be in sync.
  • If the destination is unreachable, it will retry next time with the same record
  • You can query the change log directly with the API through the DAO
  • Change log entries are ordered so that they notify in an order that will work (i.e. create a group before adding members)
  • There is a unique id (sequential sequence) for each row in change log
  • The timestamp is in micros, and will never be the same on the same jvm as another record
  • No database triggers are user, it's an all Java solution
  • There are 12 columns to stash data in the change log entry
  • Grouper keeps track of progress of consumers run in the loader

See also

Change Log Consumer in GSH