Advertisement
Guest User

Untitled

a guest
Mar 9th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. # Configuration of the source store that we are migrating from
  2. source.type=STRING
  3. source.marshaller.type=CURRENT
  4. source.cache_name=source_cache
  5. source.dialect=POSTGRES
  6. source.connection_pool.connection_url=jdbc:postgresql:postgres
  7. source.connection_pool.driver_class=org.postgresql.Driver
  8. source.connection_pool.username=postgres
  9. source.connection_pool.password=redhat
  10. source.table.string.table_name_prefix=string_table
  11. source.table.string.id.name=id_column
  12. source.table.string.id.type=VARCHAR
  13. source.table.string.data.name=datum_column
  14. source.table.string.data.type=bytea
  15. source.table.string.timestamp.name=timestamp_column
  16. source.table.string.timestamp.type=BIGINT
  17. source.key_to_string_mapper=org.infinispan.persistence.keymappers.DefaultTwoWayKey2StringMapper
  18.  
  19. # Configuration of the target store that we are migrating to
  20. target.type=STRING
  21. target.cache_name=target_cache
  22. target.dialect=POSTGRES
  23. target.connection_pool.connection_url=jdbc:postgresql:postgres
  24. target.connection_pool.driver_class=org.postgresql.Driver
  25. target.connection_pool.username=postgres
  26. target.connection_pool.password=redhat
  27. target.table.string.table_name_prefix=another_string_table
  28. target.table.string.id.name=id_column
  29. target.table.string.id.type=VARCHAR
  30. target.table.string.data.name=datum_column
  31. target.table.string.data.type=bytea
  32. target.table.string.timestamp.name=timestamp_column
  33. target.table.string.timestamp.type=BIGINT
  34. target.key_to_string_mapper=org.example.keymapper.CustomerKeyMapper # Different mapper class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement