Skip to content

Commit 1bf61cc

Browse files
Fix local ingestion by passing a dummy default namespace (#316)
1 parent a82cb94 commit 1bf61cc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

apis/python/src/tiledb/vector_search/ingestion.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2101,6 +2101,10 @@ def create_ingestion_dag(
21012101
if acn:
21022102
kwargs["access_credentials_name"] = acn
21032103
else:
2104+
if mode == Mode.LOCAL:
2105+
# TODO: `default` is not an actual namespace. This is a temp fix to
2106+
# be able to run DAGs locally.
2107+
namespace = "default"
21042108
d = dag.DAG(
21052109
name="vector-ingestion",
21062110
mode=Mode.REALTIME,

0 commit comments

Comments
 (0)