Re: Kafka Topics

2022-01-27 Thread Edward Capriolo
contact the sender and > > delete this email and its contents from any computer. Any views expressed > > in this email are those of the individual sender and may not necessarily > > reflect the views of the company. > > > >Please consider the environmet b

Re: Kafka Topics

2021-12-30 Thread Suresh Chidambaram
sed > in this email are those of the individual sender and may not necessarily > reflect the views of the company. > >Please consider the environmet before printing this email. > > > -Original Message- > From: Wes Peng > Sent: Thursday, December

RE: Kafka Topics

2021-12-30 Thread Ola Bissani
flect the views of the company. Please consider the environmet before printing this email. -Original Message- From: Wes Peng Sent: Thursday, December 23, 2021 10:11 PM To: users@kafka.apache.org Subject: Re: Kafka Topics That depends on your resources

Re: Kafka Topics

2021-12-23 Thread Wes Peng
That depends on your resources such as ram, disk etc. General speaking there is no problem. Regards > Dears, > > I'm new to using Kafka, and I was wondering up to how many topics can > Kafka Handle. I'm trying to use Kafka but using it I will be obliged to > create thousands of topics to keep up

Re: Kafka Topics

2019-04-25 Thread Mich Talebzadeh
Hi Ashock, Check this article of mine Real Time Processing of Trade Data with Kafka, Flume, Spark, Hbase and MongoDB https://www.linkedin.com/pulse/real-time-processing-trade-data-kafka-flume-spark-talebzadeh-ph-d-/ under *Kafka setup* HTH Dr Mich Talebzadeh LinkedIn * https://www.linked

Re: kafka-topics[.sh]: fail to support connecting via broker / v0.10 style

2017-03-17 Thread Hans Jespersen
I can be updated once the Kafka AdminAPI is available and does everything over the Kafka wire protocol that the current kafka-topics command does by talking directly with zookeeper. For example create a topic or delete a topic. Unfortunately is has to remain this way for just a little while longer.

Re: Kafka topics with infinite retention?

2016-03-19 Thread Daniel Schierbeck
Since Kafka itself has replication, I'm not sure what HDFS backups would bring – how would you recover from e.g. all Kafka nodes blowing up if you only have an HDFS backup? Why not use MirrorMaker to replicate the cluster to a remote DC, with a process of reversing the direction in case you need to

Re: Kafka topics with infinite retention?

2016-03-19 Thread Giidox
> I'm not sure what HDFS backups would bring I’m not sure how realistic the threat is, but I was thinking a case in which bug in Kafka corrupts the log files. I would personally sleep better knowing there is a Kafka-independent backup of all data. > how would you recover from e.g. all Kafka n

Re: Kafka topics with infinite retention?

2016-03-19 Thread Ben Davison
If you use camus to backup you could use something like this? https://groups.google.com/forum/#!searchin/camus_etl/sumac/camus_etl/hIi1cbOCFvU/grqd7UHLoFUJ Please note I haven't used this, but remember seeing it ages ago. On Wed, Mar 16, 2016 at 2:24 PM, Giidox wrote: > > I'm not sure what HDF

Re: Kafka topics with infinite retention?

2016-03-15 Thread Giidox
Good points. I would backup all partitions to HDFS (etc.), as fast as the data arrives. In case the Kafka becomes corrupted, the topics can be repopulated from the backup. In my case, all clients track their own offsets, so they should in theory be able to continue as if nothing had happened.

Re: Kafka topics with infinite retention?

2016-03-14 Thread Ben Stopford
A couple of things: - Compacted topics provide a useful way to retain meaningful datasets inside the broker, which don’t grow indefinitely. If you have an update-in-place use case, where the event sourced approach doesn’t buy you much, these will keep the reload time down when you regenerate ma

Re: Kafka topics with infinite retention?

2016-03-14 Thread Jens Rantil
This is definitely an interesting use case. However, you need to be aware that changing the broker topology won't rebalance the preexisting data from the previous brokers. That is, you risk loosing data. Cheers, Jens On Wed, Mar 9, 2016 at 2:10 PM Daniel Schierbeck wrote: > I'm considering an a

Re: Kafka topics with infinite retention?

2016-03-14 Thread Gerard Klijs
You might find what you want when looking how Kafka is used for samza, http://samza.apache.org/ On Mon, Mar 14, 2016 at 10:34 AM Daniel Schierbeck wrote: > Partitions being limited by disk size is no different from e.g. a SQL > store. This would not be used for extremely high throughput. If, > e

Re: Kafka topics with infinite retention?

2016-03-14 Thread Daniel Schierbeck
Partitions being limited by disk size is no different from e.g. a SQL store. This would not be used for extremely high throughput. If, eventually, there was a good case for not requiring that an entire partition must be stored on a single machine, it would be possible to use the log segments for di

Re: Kafka topics with infinite retention?

2016-03-14 Thread Giidox
I would like to read an answer to this question as well. This is a similar architecture as I am planning. Dealing with secondary data store for old messages would indeed make things complicated. Clark Haskins wrote that the partition size is limited by machines capacity (I assume disk space):

Re: Kafka topics behaviour

2014-09-05 Thread Manikumar Reddy
Hi, > 4. but when i close my Ubuntu virtual machine and i start Kafka and > Zookeeper again. I can see the topics present in the kafka cluster. However > all are default to 0 offset and data seems to have been lost. By default kafka stores the data in /tmp/kafka-logs directory. When you restar