You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There may be situations that call for some kind of ad-hoc analysis, where it makes a lot of sense to produce events into a TANK topic, so that you can then later process them, and when you are done, delete the topic and release whatever resources were associated with it.
You can always create new topics, and because of TANK2's lazy initialisation of partitions and RO segments(and because TANK will auto-close a partition that hasn't been accessed for sometime), this won't have any real overhead.
However, a better way is to support transient/temporary topics. Topics that are created and designated as temporary, and such topics can be easily created and deleted. The reason for having that designation is that transient topics will be delete-able, whereas regular topics won't be, and that is because it's very unsafe to allow for deletion of regular topics.
This requires further discussion.
The text was updated successfully, but these errors were encountered:
There may be situations that call for some kind of ad-hoc analysis, where it makes a lot of sense to produce events into a TANK topic, so that you can then later process them, and when you are done, delete the topic and release whatever resources were associated with it.
You can always create new topics, and because of TANK2's lazy initialisation of partitions and RO segments(and because TANK will auto-close a partition that hasn't been accessed for sometime), this won't have any real overhead.
However, a better way is to support transient/temporary topics. Topics that are created and designated as temporary, and such topics can be easily created and deleted. The reason for having that designation is that transient topics will be delete-able, whereas regular topics won't be, and that is because it's very unsafe to allow for deletion of regular topics.
This requires further discussion.
The text was updated successfully, but these errors were encountered: