sebgiroux / Cassandra-Cluster-Admin

Manage your Cassandra cluster in your Web browser!
http://www.wajam.com
MIT License
206 stars 66 forks source link

Tables/ColumnSpaces Created with CQL doesn't seem to show in the admin panel #30

Open masumsoft opened 11 years ago

masumsoft commented 11 years ago

I've created some tables using the cql3 api provided by the latest cassandra. I used something like the following:

CREATE TABLE users ( user_name varchar PRIMARY KEY, password varchar, gender varchar, session_token varchar, state varchar, birth_year bigint );

But the table/columnfamily doesn't show up in the cassandra-cluster-admin.

aacanakin commented 11 years ago

I'm having the same problem currently

sebgiroux commented 11 years ago

I'm not sure why that would happen but you guys can feel free to pull request the fix :)

ef2k commented 9 years ago

Hi everyone, any ideas on what's causing this to happen? I'd love to contribute a PR.

sebgiroux commented 9 years ago

It's an issue at the phpcassa level (that is used by the admin). The PR would have to be done for phpcassa first and then the latest version of phpcassa imported here.

See https://github.com/thobbs/phpcassa/issues/139

ef2k commented 9 years ago

Thanks @sebgiroux for the information. Reading though the issue you linked and https://github.com/thobbs/phpcassa/issues/142 , it looks like fixing this issue in phpcassa is much more complicated than I expected. At the moment, there are very little efforts for supporting CQL3 and Cassandra 2+. Maybe we'll have to wait for an update to the cassandra-php driver to be released.