Andy
Andy

Reputation: 1618

What are hashes printed by cassandra-cli?

What is the use of hashes which are printed when statements are executed by cassandra-cli?

    default@testkeyspace] create column family testcolumnfamily;
    5ec1d928-3ee5-11e0-b34a-e700f669bcfc
    Waiting for schema agreement...
    ... schemas agree across the cluster

Thanks

Upvotes: 1

Views: 47

Answers (1)

jbellis
jbellis

Reputation: 19377

That's the UUID of the schema version that was created. In old Cassandra versions, it helps disentangle things if multiple versions get established concurrently.

Upvotes: 1

Related Questions