Skip to content

Commit 6f43304

Browse files
authored
Make bigtable storage location consistent (#138)
Signed-off-by: Khor Shu Heng <khor.heng@gojek.com> Co-authored-by: Khor Shu Heng <khor.heng@gojek.com>
1 parent ed4322d commit 6f43304

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spark/ingestion/src/main/scala/feast/ingestion/stores/bigtable/BigTableSinkRelation.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class BigTableSinkRelation(
154154
}
155155

156156
private def tableName: String = {
157-
val entities = config.entityColumns.mkString("__")
157+
val entities = config.entityColumns.sorted.mkString("__")
158158
StringUtils.trimAndHash(s"${config.projectName}__${entities}", maxTableNameLength)
159159
}
160160

0 commit comments

Comments
 (0)