Created
July 12, 2015 04:21
-
-
Save donigian/3e9ad9a55fb41c6b2499 to your computer and use it in GitHub Desktop.
ShardIndexRecord
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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