mirror of https://github.com/milvus-io/milvus.git
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'
|