0

I use Apache as Samza framework for Kafka and I need to share the same RockDBs key-value storage between 2 Tasks.

Is what I can do so without having concurrency on storage Key value?

MaximeF
  • 4,913
  • 4
  • 37
  • 51

2 Answers2

0

I deployed 2 Tasks with same Key-value storage and it's working.

So yes we can.

MaximeF
  • 4,913
  • 4
  • 37
  • 51
0

As of Samza 0.12.0 there is no supported way of sharing stores between tasks. Each store is instantiated (isolated) for each task.

For more info, see the "Local State" section here: http://samza.apache.org/learn/documentation/0.12/container/state-management.html

JMakes
  • 61
  • 1
  • 2