mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +08:00
18 lines
348 B
Python
18 lines
348 B
Python
|
|
class RawFileHandler(object):
|
|
@staticmethod
|
|
def Create(filename, type):
|
|
# type means: csv, parquet
|
|
pass
|
|
|
|
@staticmethod
|
|
def Read(filename, type):
|
|
pass
|
|
|
|
@staticmethod
|
|
def Append(filename, type, record):
|
|
pass
|
|
|
|
@staticmethod
|
|
def GetRawFilename(group_id):
|
|
return group_id + '.raw' |