Closed ghost closed 8 years ago
did you create the OpenTSDB bucket manually?
@Licenser yes, I did, with the following command:
/data/dalmatinerdb/bin/ddb-admin buckets create OpenTSDB 1s 1w inf
I notice that you are poinitng the indexer postgres backend to the dalmatinerdb port, that definitely will cause you some problems. can you try correcting that and see if that does the trick for you?
idx.pg.backend = 127.0.0.1:5555
should probably be:
idx.pg.backend = 127.0.0.1:5432
Oh shoot! I've read that PostrgeSQL is optional and there's a default indexer in dalmatinerdb. So, I've thought that pg backend in that case should point to dalmatinerdb. I've commented this option and got my listener:
netstat -tulpn | grep 4242
tcp 0 0 0.0.0.0:4242 0.0.0.0:* LISTEN 2530/beam.smp
Such a dumb error. Thanks for your time on helping me with this!
No worries, you will not have fun with opentsdb and the default indexer so, it doesn't support dimensions and OpenTSDB kind of depends on them, you'll get only flattened path this way.
I'll mark this as closed as we solved your issue :)
Thanks for your advice! I was going to use PostgreSQL but later, first I wanted to be able to work with dalmatiner components.
Hi folks, I'm very interested in trying DalmatinerDB and went to test the setup on Centos7. I've configured ZFS and installed dalmatiner components like the following:
DalmatinerDB itself works great, but I can't get listeners in ddb_proxy to work. My config file is as follows:
And when I run the
/data/ddb_proxy/bin/ddb_proxy start
I get the following logs in debug.log:But when I check netstat, for example, there's nothing here (I don't expect InfluxDB to show up, but I expect OpenTSDB listener to be at 4242 port):
List of buckets in my database:
All dalmatiner components were built from source, using Erlang 18.3.
If listeners were added and launched, why isn't there anything listening on corresponding port? Please help me solve the issue so I can check out what is the database you've built :) Thanks!