Skip to content

Instantly share code, notes, and snippets.

@donigian
Created July 12, 2015 04:21
Show Gist options
  • Save donigian/3e9ad9a55fb41c6b2499 to your computer and use it in GitHub Desktop.
Save donigian/3e9ad9a55fb41c6b2499 to your computer and use it in GitHub Desktop.
ShardIndexRecord
/* Purpose of ShardIndexRecord is to store/correlate connectionString for a particular shardId.
This allows one to find database server connection specific to a given shard */
case class ShardIndexRecord(shardId: String, connectionString: String, status: Boolean, createdDate: Long)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment