-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After starting the docker-quickstart, I can't see any Kafka topics #259
Comments
Hi @dvasdekis, Thanks for the report. I just stepped through the Docker quickstart on a fresh Ubuntu 16 image, using current docker and docker-compose. The --Alex |
Thanks Alex. I suspect the reason is because my VM isn't as powerful (an Azure A1 machine) as your test rig.
Edit: Confirmed - no issues with a large Azure VM (D4Sv3 - 4 CPUs/16GB RAM) |
@dvasdekis Thanks for your feedback. If this issue resolved would you please close it. |
I have the same issue on my Mac with up-to-date Mac OS and Docker installations. I have given Docker 8GB Memory and 2 CPUs... It never creates the topics. Even if I do docker-compose up several times... I tried several times with laptop restart, new git clone, etc. On the other side, the Clickstream Demo works fine for me. |
Hi |
I am also having the same issue. I have run
But the topics |
Hi @jeremyz23 @sigmazen @kaiwaehner @dvasdekis What I would expect to see on Not sure if it can account for the "missing" containers, but I did just spot an issue with a bad version slipping into the compose file, affecting those datagen containers. This has been corrected, please do pull the latest bits (0.1.x branch) and try again. If you're running into missing topics for the Docker quickstart using the latest code, please chime in here with the output of Thanks |
Thanks, @jeremyz23, sorry for the trouble. I don't think this is the same issue as originally reported, but the end result is the same. Just to be sure you're on the latest, can you try The culprit was an incorrect version string getting introduced to the compose file as the result of a funky merge. It should be fixed as of aba0f7c. Can you verify if this is still happening after pulling down the most recent bits? |
Thank you @aayars . I have validated that this fix resolved my issue. |
Hi @aayars |
Hi @aayars
and the
Cheers |
@sigmazen : What OS are you on? And what are the settings for your host machine's Docker installation? For example, how much RAM is available for Docker to use when running any containers? |
Hi @miguno
and both |
... quick update: |
@sigmazen - I have experienced the same (where unix kills off processes to prevent the OS from a hardcrash). The following should reduce the amount of memory confluent platform uses. In conjunction, it would be worthwhile increasing to 6GB of memory.
|
@bluemonk3y thanks for the quick reply. |
@sigmazen - depending on the linux flavor, killed processes should be logged in: /var/log/messages info: https://unix.stackexchange.com/questions/128642/debug-out-of-memory-with-var-log-messages LMK if that helps |
@bluemonk3y ... thanks again.
and then later I get a bunch of html output complaining about my proxy followed by:
which all looks a bit suspect. I had actually tried running this at home as well (ie no proxy) a couple of days back, but I'll retry again tonight. |
@sigmazen - you will need to check the filesystem within the docker container and not the mac host - I hope that makes sense? |
Hi
|
Hi again @bluemonk3y |
@aayars - hey alex any ideas on this? |
Hi @aayars @bluemonk3y ... panic over :-/ |
Thanks for the investigation and update @sigmazen! This is good to know. |
Happy to hear that it works for you now @sigmazen -- and thanks for your patience to investigate and report back (including reporting back what finally resolved the issue for you). :) |
Hi mates, |
After completing the quickstart, I run
SHOW TOPICS;
within KSQL and get the following output:The two demonstration topics -
pageviews
, andusers
don't appear. Runningdocker container ls
from bash, I get the following output:The remedy turns out to be running
docker-compose up -d
again from the/ksql/docs/quickstart
directory:I then get:
And can see the topics from ksql:
I'm running this on Ubuntu Server 16.04.
Looks like the scripts for the pageviews and users topics need to retry creation a few times?
The text was updated successfully, but these errors were encountered: