s3
This commit is contained in:
@ -25,13 +25,13 @@ if SW_SERVER and SW_SERVICE_NAME:
|
|||||||
config.init() #采集服务的地址,给自己的服务起个名称
|
config.init() #采集服务的地址,给自己的服务起个名称
|
||||||
#config.init(collector="123.60.56.51:11800", service='ieemoo-ai-search') #采集服务的地址,给自己的服务起个名称
|
#config.init(collector="123.60.56.51:11800", service='ieemoo-ai-search') #采集服务的地址,给自己的服务起个名称
|
||||||
agent.start()
|
agent.start()
|
||||||
os.environ["CUDA_VISIBLE_DEVICES"] = '1'
|
os.environ["CUDA_VISIBLE_DEVICES"] = '0'
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
|
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
#parser.add_argument('--model', default='../module/ieemoo-ai-search/model/now/raft-things.pth',help="restore checkpoint")
|
#parser.add_argument('--model', default='../module/ieemoo-ai-search/model/now/raft-things.pth',help="restore checkpoint")
|
||||||
parser.add_argument('--model', default='../module/ieemoo-ai-search/model/now/raft-small.pth',help="restore checkpoint")
|
parser.add_argument('--model', default='../module/ieemoo-ai-searchv2/model/now/raft-small.pth',help="restore checkpoint")
|
||||||
#parser.add_argument('--small', action='store_true', help='use small model')
|
#parser.add_argument('--small', action='store_true', help='use small model')
|
||||||
parser.add_argument('--small', type=bool, default=True, help='use small model')
|
parser.add_argument('--small', type=bool, default=True, help='use small model')
|
||||||
parser.add_argument('--mixed_precision', action='store_true', help='use mixed precision')
|
parser.add_argument('--mixed_precision', action='store_true', help='use mixed precision')
|
||||||
|
@ -1,22 +1,21 @@
|
|||||||
esdk_obs_python==3.21.8
|
apscheduler==3.10.4
|
||||||
Flask==2.0.0
|
cos_python_sdk_v5==1.9.26
|
||||||
gevent==21.1.2
|
esdk_obs_python==3.23.9.1
|
||||||
matplotlib==3.4.1
|
Flask==3.0.0
|
||||||
numpy==1.20.2
|
gevent==23.9.1
|
||||||
esdk-obs-python --trusted-host pypi.org
|
h5py==3.7.0
|
||||||
opencv_python==4.5.5.64
|
matplotlib==3.6.2
|
||||||
opencv-contrib-python==4.5.5.64
|
numpy==1.19.2
|
||||||
Pillow==9.1.0
|
numpy==1.24.4
|
||||||
scipy==1.6.2
|
opencv_python==4.8.1.78
|
||||||
setuptools==49.6.0
|
opencv_python_headless==4.7.0.68
|
||||||
coremltools==5.2.0
|
pandas==1.4.4
|
||||||
onnx==1.7.0
|
Pillow==9.4.0
|
||||||
pandas==1.2.4
|
|
||||||
pycocotools==2.0.2
|
|
||||||
PyYAML==6.0
|
PyYAML==6.0
|
||||||
requests==2.25.1
|
Requests==2.31.0
|
||||||
seaborn==0.11.1
|
scipy==1.3.1
|
||||||
thop==0.0.31.post2005241907
|
setuptools==68.0.0
|
||||||
tqdm==4.60.0
|
torch==1.8.1+cu111
|
||||||
ml-collections==0.1.1
|
torchvision==0.9.1+cu111
|
||||||
apache-skywalking
|
Werkzeug==3.0.1
|
||||||
|
yacs==0.1.8
|
||||||
|
@ -74,6 +74,14 @@ _C.cos_secret_key = 'oYGrJG2d3LTUPBoFTZVEmC1kQ1ObdTkr'
|
|||||||
_C.cos_region = 'ap-shanghai'
|
_C.cos_region = 'ap-shanghai'
|
||||||
_C.cos_Bucket = 'ieemoo-ai-1321281601'
|
_C.cos_Bucket = 'ieemoo-ai-1321281601'
|
||||||
|
|
||||||
|
#s3
|
||||||
|
_C.s3_secret_id = 'v1wAfxqZqJYbA7kuB9dc'
|
||||||
|
_C.s3_secret_key = 'ZICGRJetjNIXhnqH1yfraoigydWoF2WTggtO9AhR'
|
||||||
|
_C.s3_region = '172.16.0.186:9000'
|
||||||
|
_C.s3_Bucket = 'ieemoo-ai'
|
||||||
|
|
||||||
#cos or obs
|
#cos or obs
|
||||||
_C.cos = True
|
|
||||||
_C.obs = True
|
_C.obs = True
|
||||||
|
_C.cos = False
|
||||||
|
_C.s3 = True
|
||||||
|
|
||||||
|
@ -3,6 +3,8 @@ import obs
|
|||||||
from utils.config import cfg
|
from utils.config import cfg
|
||||||
from qcloud_cos import CosConfig,CosS3Client
|
from qcloud_cos import CosConfig,CosS3Client
|
||||||
from qcloud_cos.cos_exception import CosClientError, CosServiceError
|
from qcloud_cos.cos_exception import CosClientError, CosServiceError
|
||||||
|
from minio import Minio
|
||||||
|
from minio.error import S3Error
|
||||||
|
|
||||||
def obsInit():
|
def obsInit():
|
||||||
print('start init obs <<')
|
print('start init obs <<')
|
||||||
@ -24,13 +26,27 @@ def cosInit():
|
|||||||
client = CosS3Client(config)
|
client = CosS3Client(config)
|
||||||
return client
|
return client
|
||||||
|
|
||||||
|
def s3Init():
|
||||||
|
print('start init s3 <<')
|
||||||
|
secret_id = cfg.s3_secret_id
|
||||||
|
secret_key = cfg.s3_secret_key
|
||||||
|
region = cfg.s3_region
|
||||||
|
client = Minio(region, secure=False, access_key=secret_id, secret_key=secret_key)
|
||||||
|
return client
|
||||||
|
|
||||||
|
|
||||||
class up_load:
|
class up_load:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.cosclient = cosInit()
|
if cfg.cos:
|
||||||
self.obsclient, self.headers = obsInit()
|
self.cosclient = cosInit()
|
||||||
|
if cfg.obs:
|
||||||
|
self.obsclient, self.headers = obsInit()
|
||||||
|
if cfg.s3:
|
||||||
|
self.s3client = s3Init()
|
||||||
|
|
||||||
def upLoad(self, key=None, datapath=None):
|
def upLoad(self, key=None, datapath=None):
|
||||||
# 使用高级接口断点续传,失败重试时不会上传已成功的分块(这里重试10次)
|
# 使用高级接口断点续传,失败重试时不会上传已成功的分块(这里重试10次)
|
||||||
|
response = 'get re'
|
||||||
if cfg.cos:
|
if cfg.cos:
|
||||||
for i in range(0, 10):
|
for i in range(0, 10):
|
||||||
try:
|
try:
|
||||||
@ -43,4 +59,10 @@ class up_load:
|
|||||||
print(e)
|
print(e)
|
||||||
if cfg.obs:
|
if cfg.obs:
|
||||||
response = self.obsclient.putFile(cfg.obs_bucketName, key, datapath)
|
response = self.obsclient.putFile(cfg.obs_bucketName, key, datapath)
|
||||||
|
if cfg.s3:
|
||||||
|
found = self.s3client.bucket_exists(cfg.s3_Bucket)
|
||||||
|
if not found:
|
||||||
|
self.s3client.make_bucket(cfg.s3_Bucket)
|
||||||
|
self.s3client.fput_object(cfg.obs_bucketName, key, datapath)
|
||||||
return response
|
return response
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user