You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a possibility to call a read and write operation to tileDB with mutliple cells at once (that are not a multi-index).
e.g. i have a 100x200 array in tileDB and would like to read all values for these indices (completely unconnected/not neighbored indices)
dim_1=[1,5,8,99,55,30]
dim_2=[0,15,155,103,105,6]
afterwards i want to alter these values and write them back to the tileDB
I dont want to iterate over each coordinate pair and would like to read and write them as batch. Is this possible?
As far as I understand correctly, only the write operation can be called with a list of coordinates, but reading can be only done by slicing the tileDB array?
The text was updated successfully, but these errors were encountered:
weidinger-c
changed the title
Reading and writing multiple cells at once to avoid loops in Python
Reading and writing multiple cells with one function call to avoid loops in Python
Mar 5, 2024
As far as I understand correctly, only the write operation can be called with a list of coordinates, but reading can be only done by slicing the tileDB array?
Correct, currently we only support cross-product queries. (cross-linking TileDB-Inc/TileDB#3076 as a +1 on that issue)
Is there a possibility to call a read and write operation to tileDB with mutliple cells at once (that are not a multi-index).
e.g. i have a 100x200 array in tileDB and would like to read all values for these indices (completely unconnected/not neighbored indices)
dim_1=[1,5,8,99,55,30]
dim_2=[0,15,155,103,105,6]
afterwards i want to alter these values and write them back to the tileDB
I dont want to iterate over each coordinate pair and would like to read and write them as batch. Is this possible?
As far as I understand correctly, only the write operation can be called with a list of coordinates, but reading can be only done by slicing the tileDB array?
The text was updated successfully, but these errors were encountered: