Skip to content

Instantly share code, notes, and snippets.

@vmarcinko
Last active June 3, 2019 15:25
Show Gist options
  • Save vmarcinko/97bc637d588463838f847f952094a3ae to your computer and use it in GitHub Desktop.
Save vmarcinko/97bc637d588463838f847f952094a3ae to your computer and use it in GitHub Desktop.
@Entity
@Table(name = "sms_message", indexes = @Index(name = "idx_sms_msg_queue_polling_fields", columnList = "next_attempt_time,partition"))
public class SmsMessage {
// ...
@Column(name = "partition")
private int partition;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment